giis.tdrules.openapi.model.Ddl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tdrules-model Show documentation
Show all versions of tdrules-model Show documentation
Models of the FPC Rules, SQL Mutants and the data store schema
The newest version!
/*
* TdRules API - Test Data Coverage Evaluation
* A set of services to evaluate the coverage of test data. Coverage criteria are implemented in a set of rules, that when evaluated with respect to a given data store determine the coverage of the data store with respect to the query. Two kind of coverage rules are generated, Full Predicate Coverage (FPC) Rules and SQL Mutants.
*
* The version of the OpenAPI document: 4.0.2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package giis.tdrules.openapi.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.StringJoiner;
/**
* Represents an operation to modify the data or the schema in a data store (store type dependent).
*/
@JsonPropertyOrder({
Ddl.JSON_PROPERTY_COMMAND,
Ddl.JSON_PROPERTY_QUERY
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Ddl {
public static final String JSON_PROPERTY_COMMAND = "command";
private String command = "";
public static final String JSON_PROPERTY_QUERY = "query";
private String query = "";
public Ddl() {
}
public Ddl command(String command) {
this.command = command;
return this;
}
/**
* The kind of operation to be executed: - In RDB stores: the command is the type of statement (e.g. create, drop) to be executed. - In OpenApi data stores: the command is the http method (e.g. post, put) to be executed.
* @return command
*/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_COMMAND)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getCommand() {
return command;
}
@JsonProperty(JSON_PROPERTY_COMMAND)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCommand(String command) {
this.command = command;
}
public Ddl query(String query) {
this.query = query;
return this;
}
/**
* The statement or path where command is to be executed: - In RDB stores: the SQL or DML statement to be executed. - In OpenApi data stores: he path (endpoint) where the command is to be executed.
* @return query
*/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_QUERY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getQuery() {
return query;
}
@JsonProperty(JSON_PROPERTY_QUERY)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setQuery(String query) {
this.query = query;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Ddl ddl = (Ddl) o;
return Objects.equals(this.command, ddl.command) &&
Objects.equals(this.query, ddl.query);
}
@Override
public int hashCode() {
return Objects.hash(command, query);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Ddl {\n");
sb.append(" command: ").append(toIndentedString(command)).append("\n");
sb.append(" query: ").append(toIndentedString(query)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
/**
* Convert the instance into URL query string.
*
* @return URL query string
*/
public String toUrlQueryString() {
return toUrlQueryString(null);
}
/**
* Convert the instance into URL query string.
*
* @param prefix prefix of the query string
* @return URL query string
*/
public String toUrlQueryString(String prefix) {
String suffix = "";
String containerSuffix = "";
String containerPrefix = "";
if (prefix == null) {
// style=form, explode=true, e.g. /pet?name=cat&type=manx
prefix = "";
} else {
// deepObject style e.g. /pet?id[name]=cat&id[type]=manx
prefix = prefix + "[";
suffix = "]";
containerSuffix = "]";
containerPrefix = "[";
}
StringJoiner joiner = new StringJoiner("&");
// add `command` to the URL query string
if (getCommand() != null) {
try {
joiner.add(String.format("%scommand%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getCommand()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `query` to the URL query string
if (getQuery() != null) {
try {
joiner.add(String.format("%squery%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getQuery()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
return joiner.toString();
}
}