argos/dmp-backend/core/src/main/java/eu/eudat/model/descriptiontemplatedefinition/fielddata/AuthAutoCompleteData.java

55 lines
972 B
Java

package eu.eudat.model.descriptiontemplatedefinition.fielddata;
public class AuthAutoCompleteData {
public final static String _url = "url";
private String url;
public final static String _method = "method";
private String method;
public final static String _body = "body";
private String body;
public final static String _path = "path";
private String path;
public final static String _type = "type";
private String type;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}