IntelliJ IDEA
 
Get IntelliJ IDEA
You are viewing the documentation for an earlier version of IntelliJ IDEA.

Create transfer objectsUltimate

Last modified: 08 March 2021

Transfer Object is used as a proxy between an entity bean and its client. Entity beans use transfer objects to send data to the clients thus reducing the exchange traffic, because all required data are transferred at once, packed in a single object.

Though you can create a transfer object manually, as a class that implements the Serializable interface and provides accessor methods to certain fields of an entity bean, IntelliJ IDEA helps automatically generate stub source code.

Concepts