argos/dmp-backend/core/src/main/java/eu/eudat/model/referencetypedefinition/ReferenceTypeUrlConfigurati...

174 lines
3.7 KiB
Java

package eu.eudat.model.referencetypedefinition;
import java.util.List;
public class ReferenceTypeUrlConfiguration {
public final static String _key = "key";
private String key;
public final static String _label = "label";
private String label;
public final static String _ordinal = "ordinal";
private Integer ordinal;
public final static String _url = "url";
private String url;
public final static String _data = "data";
private DataUrlConfiguration data;
public final static String _type = "type";
private String type;
public final static String _paginationPath = "paginationPath";
private String paginationPath;
public final static String _contentType = "contentType";
private String contentType;
public final static String _funderQuery = "funderQuery";
private String funderQuery;
public final static String _firstPage = "firstPage";
private String firstPage;
public final static String _requestType = "requestType";
private String requestType = "GET";
public final static String _requestBody = "requestBody";
private String requestBody = "";
public final static String _filterType = "filterType";
private String filterType = "remote";
public final static String _auth = "auth";
private AuthenticationConfiguration auth;
public final static String _queries = "queries";
private List<QueryConfig> queries;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public Integer getOrdinal() {
return ordinal;
}
public void setOrdinal(Integer ordinal) {
this.ordinal = ordinal;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public DataUrlConfiguration getData() {
return data;
}
public void setData(DataUrlConfiguration data) {
this.data = data;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getPaginationPath() {
return paginationPath;
}
public void setPaginationPath(String paginationPath) {
this.paginationPath = paginationPath;
}
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public String getFunderQuery() {
return funderQuery;
}
public void setFunderQuery(String funderQuery) {
this.funderQuery = funderQuery;
}
public String getFirstPage() {
return firstPage;
}
public void setFirstPage(String firstPage) {
this.firstPage = firstPage;
}
public String getRequestType() {
return requestType;
}
public void setRequestType(String requestType) {
this.requestType = requestType;
}
public String getRequestBody() {
return requestBody;
}
public void setRequestBody(String requestBody) {
this.requestBody = requestBody;
}
public String getFilterType() {
return filterType;
}
public void setFilterType(String filterType) {
this.filterType = filterType;
}
public AuthenticationConfiguration getAuth() {
return auth;
}
public void setAuth(AuthenticationConfiguration auth) {
this.auth = auth;
}
public List<QueryConfig> getQueries() {
return queries;
}
public void setQueries(List<QueryConfig> queries) {
this.queries = queries;
}
}