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

30 lines
584 B
Java

package eu.eudat.model.referencetypedefinition;
public class ResultFieldsMappingConfiguration {
public final static String _code = "code";
private String code;
public final static String _responsePath = "responsePath";
private String responsePath;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getResponsePath() {
return responsePath;
}
public void setResponsePath(String responsePath) {
this.responsePath = responsePath;
}
}