Class AbstractTo
- java.lang.Object
-
- com.devonfw.module.basic.common.api.to.AbstractTo
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AbstractCto,AbstractEto,StringSearchConfigTo
public abstract class AbstractTo extends Object implements Serializable
Abstract base class for any transfer-object. Such transfer-object is used to transfer data between components including services over the network. All transfer-objects should be derived from this class. In case they inherit indirectly viaETOorCTOthey should carry the according suffixesEtoorCto. Otherwise subclasses should carry the suffixTo.- Since:
- 3.0.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description AbstractTo()The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()protected voidtoString(StringBuilder buffer)Method to extendtoString()logic.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
toString
protected void toString(StringBuilder buffer)
Method to extendtoString()logic. Override to add additional information.- Parameters:
buffer- is theStringBuilderwhere toappendthe string representation.
-
-