| java.lang.Object com.icesoft.faces.webapp.xmlhttp.Response
Response | public class Response implements Comparable(Code) | | The Response class represents a (pseudo-)response ready to be
send to the client.
Please note that this Response does not represent an HTTP
Response message!
|
Constructor Summary | |
public | Response(String iceFacesId, String viewNumber, long sequenceNumber) Constructs an "empty" Response object. | public | Response(String iceFacesId, String viewNumber, long sequenceNumber, String entityBody) Constructs a Response object with the specified
entityBody . |
getEntityBody | public String getEntityBody()(Code) | | Gets the Entity-Body of this Response .
the Entity-Body. |
getICEfacesID | public String getICEfacesID()(Code) | | Gets the ICEfaces ID of this Response .
the ICEfaces ID. |
getSequenceNumber | public long getSequenceNumber()(Code) | | Gets the sequence number of this Response .
the sequence number. |
getViewNumber | public String getViewNumber()(Code) | | Gets the view number of this Response .
the view number. |
isEmpty | public boolean isEmpty()(Code) | | Checks to see if this Response is an empty response. That
is, if the Entity-Body is empty.
true if this Response is empty. |
|
|