What is Transfer Object pattern?

  • A behavioral pattern that describes how to distribute the communication between objects.
  • A creational pattern that provides a way to create objects without specifying the exact class of object that will be created.
  • A structural pattern that defines the ways of organizing and structuring the objects that are being sent from one place to another.
  • An architectural pattern that defines a middleware component that is used to transfer data between different systems or software components.
The Transfer Object pattern is a design pattern that is used in the context of remote method invocation (RMI) systems, where an object is transferred from one JVM to another JVM through serialization. The transfer object is an object that carries data between processes.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *