|
||||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||
java.lang.Objectorg.eclipse.higgins.rpps.core.tobj.BaseTransferObject
A transfer object is a serializable class that groups related attributes, forming a composite value. Please refer to section 5.3.5 of the spec. If your classes are conformant to the javabean design pattern and also follow the rules as given in this particular section, then JAXRPC runtime will take care of serializing/deserializing your own class. FYI, following are the requirements by JAXRPC: JavaBeans class must be serializable to and from the corresponding XML representation at runtime. This means that a JavaBeans class must contain properties that are of the JAX-RPC supported Java types. If one or more properties do not have the JAX-RPC supported types, then the JavaBeans class is not mapped. JavaBeans class must have a default constructor. The Java type of a property must be a JAX-RPC 1.0 supported Java type and be mappable to the corresponding XML type. The standard rules of mapping from a javabean are as well given in the spec in the same section. It should be relatively straight forward to conform your class to javabean design pattern. Created on 18 Jan 2007, 15:21
| Constructor Summary | |
|---|---|
BaseTransferObject()
Creates a new instance of UserInterfaceResponse |
|
| Method Summary | |
|---|---|
String |
getName()
Gets the name of transfer object. |
void |
setName(String name)
Sets the name of transfer object |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public BaseTransferObject()
| Method Detail |
public String getName()
public void setName(String name)
name - the name of transfer object.
|
||||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||