All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ioc.commons.japtsy.shared.model.domain.JAPTSYObjectChange Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
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