You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
accounting-lib/src/main/java/org/gcube/accounting/datamodel/validations/validators/Replace.java

49 lines
1.0 KiB
Java

package org.gcube.accounting.datamodel.validations.validators;
public class Replace {
protected String serviceClass;
protected String serviceName;
protected String calledMethod;
public Replace() {
}
public Replace(String serviceClass, String serviceName, String calledMethod) {
this.serviceClass = serviceClass;
this.serviceName = serviceName;
this.calledMethod = calledMethod;
}
public String getServiceClass() {
return serviceClass;
}
public void setServiceClass(String serviceClass) {
this.serviceClass = serviceClass;
}
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public String getCalledMethod() {
return calledMethod;
}
public void setCalledMethod(String calledMethod) {
this.calledMethod = calledMethod;
}
@Override
public String toString() {
return "Replacer [serviceClass=" + serviceClass + ", serviceName=" + serviceName + ", calledMethod="
+ calledMethod + "]";
}
}