
org.ioc.commons.japtsy.shared.model.domain.JAPTSYObjectChange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ioc-commons-japtsy Show documentation
Show all versions of ioc-commons-japtsy Show documentation
Common classes required for Java Transfer Protocol System communication
package org.ioc.commons.japtsy.shared.model.domain;
import java.util.List;
public class JAPTSYObjectChange extends JAPTSYObjectProperty {
/**
* Serial no.
*/
private static final long serialVersionUID = -2468288848798675039L;
public static final String CHANGETYPE_FIELDNAME = "changeType";
public static final String OPERATIONS_FIELDNAME = "operations";
private JAPTSYChangeType changeType = JAPTSYChangeType.VALUE_REPLACED;
private List operations;
public JAPTSYChangeType getChangeType() {
return changeType;
}
public void setChangeType(JAPTSYChangeType changeType) {
this.changeType = changeType;
}
public List getOperations() {
return operations;
}
public void setOperations(List operations) {
this.operations = operations;
}
@Override
public String toString() {
return "ObjectChange [changeType=" + changeType + ", operations=" + operations + "]" + super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy