2023-06-24 00:29:53 +02:00
|
|
|
package stirling.software.SPDF.model;
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
public class PipelineOperation {
|
|
|
|
private String operation;
|
|
|
|
private Map<String, Object> parameters;
|
2023-12-30 20:11:27 +01:00
|
|
|
|
2023-06-24 00:29:53 +02:00
|
|
|
public String getOperation() {
|
|
|
|
return operation;
|
|
|
|
}
|
2023-12-30 20:11:27 +01:00
|
|
|
|
2023-06-24 00:29:53 +02:00
|
|
|
public void setOperation(String operation) {
|
|
|
|
this.operation = operation;
|
|
|
|
}
|
2023-12-30 20:11:27 +01:00
|
|
|
|
2023-06-24 00:29:53 +02:00
|
|
|
public Map<String, Object> getParameters() {
|
|
|
|
return parameters;
|
|
|
|
}
|
2023-12-30 20:11:27 +01:00
|
|
|
|
2023-06-24 00:29:53 +02:00
|
|
|
public void setParameters(Map<String, Object> parameters) {
|
|
|
|
this.parameters = parameters;
|
|
|
|
}
|
2023-12-30 20:11:27 +01:00
|
|
|
|
2023-07-09 01:05:33 +02:00
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
return "PipelineOperation [operation=" + operation + ", parameters=" + parameters + "]";
|
|
|
|
}
|
2023-06-24 00:29:53 +02:00
|
|
|
}
|