accounting-lib/src/main/java/org/gcube/accounting/datamodel/validations/validators/Replace.java

49 lines
1.0 KiB
Java
Raw Normal View History

package org.gcube.accounting.datamodel.validations.validators;
2020-01-07 11:07:06 +01:00
public class Replace {
protected String serviceClass;
protected String serviceName;
protected String calledMethod;
2020-01-07 11:07:06 +01:00
public Replace() {
}
2020-01-07 11:07:06 +01:00
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 + "]";
}
}