org.eclipse.higgins.rpps.core.tobj
Class UIResponseTO

java.lang.Object
  extended byorg.eclipse.higgins.rpps.core.tobj.BaseTransferObject
      extended byorg.eclipse.higgins.rpps.core.tobj.UIResponseTO
All Implemented Interfaces:
Serializable

public class UIResponseTO
extends BaseTransferObject
implements Serializable

The transfer object for the UserInterfaceResponse. A transfer object is a serializable class that groups related attributes, forming a composite value. This class is used as the return type of a WS business method.

Author:
Sergei Yakovlev
See Also:
Serialized Form

Constructor Summary
UIResponseTO()
          Creates a new instance of UIResponseTO
 
Method Summary
 UIResponseAndTO[] getAnd()
          Gets array of AND elements.
 String getName()
          Gets the name of transfer object.
 UIResponseRPTO getRP()
          Gets RP element.
 String getStatus()
          Gets STATUS element.
 void setAnd(UIResponseAndTO[] and)
          Sets array of AND elements.
 void setName(String name)
          Sets the name of transfer object
 void setRP(UIResponseRPTO rp)
          Sets RP element.
 void setStatus(String status)
          Sets STATUS element.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UIResponseTO

public UIResponseTO()
Creates a new instance of UIResponseTO

Method Detail

getAnd

public UIResponseAndTO[] getAnd()
Gets array of AND elements.

Returns:
the array of AND elements.

setAnd

public void setAnd(UIResponseAndTO[] and)
Sets array of AND elements.

Parameters:
and - the array of AND elements.

getRP

public UIResponseRPTO getRP()
Gets RP element.

Returns:
the RP element.

setRP

public void setRP(UIResponseRPTO rp)
Sets RP element.

Parameters:
rp - the RP element.

getStatus

public String getStatus()
Gets STATUS element.

Returns:
the STATUS element.

setStatus

public void setStatus(String status)
Sets STATUS element.

Parameters:
status - the STATUS element.

getName

public String getName()
Gets the name of transfer object.

Returns:
the name of transfer object.

setName

public void setName(String name)
Sets the name of transfer object

Parameters:
name - the name of transfer object.