Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds getters for thens in multi-prime requests. #155

Merged
merged 1 commit into from May 4, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -87,6 +87,18 @@ private Action(List<Map<String, ? extends Object>> rows, Result result, Map<Stri
this.config = config;
}

public List<Map<String, ? extends Object>> getRows() {
return rows;
}

public Result getResult() {
return result;
}

public Long getFixedDelay() {
return fixedDelay;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
Expand Down Expand Up @@ -250,6 +262,10 @@ public Criteria(List<VariableMatch> variable_matcher) {
this.variable_matcher = variable_matcher;
}

public List<VariableMatch> getVariableMatchers() {
return variable_matcher;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
Expand Down Expand Up @@ -297,6 +313,10 @@ public List<CqlType> getVariableTypes() {
return variable_types;
}

public List<Outcome> getOutcomes() {
return outcomes;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
Expand Down Expand Up @@ -355,6 +375,14 @@ public Outcome(Criteria criteria, Action action) {
this.action = action;
}

public Action getAction() {
return action;
}

public Criteria getCriteria() {
return criteria;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
Expand Down