
io.oasp.module.basic.common.api.to.AbstractCto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oasp4j-basic Show documentation
Show all versions of oasp4j-basic Show documentation
Basic code for common usage (such as base classes for transfer objects) of the Open Application Standard Platform for Java (OASP4J).
The newest version!
package io.oasp.module.basic.common.api.to;
import net.sf.mmm.util.transferobject.api.AbstractTransferObject;
import net.sf.mmm.util.transferobject.api.TransferObject;
/**
* This is the abstract base class for a composite {@link AbstractTo transfer-object}. Such object should contain
* (aggregate) other {@link AbstractTransferObject}s but no atomic data. This means it has properties that contain a
* {@link TransferObject} or a {@link java.util.Collection} of those but no {@link net.sf.mmm.util.lang.api.Datatype
* values}.
* Classes extending this class should carry the suffix Cto
.
*
*/
public abstract class AbstractCto extends AbstractTo {
private static final long serialVersionUID = 1L;
/**
* The constructor.
*/
public AbstractCto() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy