Class AbstractTo
- java.lang.Object
-
- com.devonfw.module.basic.common.api.to.AbstractTo
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AbstractCto
,AbstractGenericEto
,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 viaETO
orCTO
they should carry the according suffixesEto
orCto
. Otherwise subclasses should carry the suffixTo
.- Since:
- 3.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractTo()
The constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
protected void
toString(StringBuilder buffer)
Method to extendtoString()
logic.
-
-
-
Method Detail
-
toString
protected void toString(StringBuilder buffer)
Method to extendtoString()
logic. Override to add additional information.- Parameters:
buffer
- is theStringBuilder
where toappend
the string representation.
-
-