oracle.calendar.soap.client
Class Reply
java.lang.Object
|
+--oracle.calendar.soap.client.CalendarReply
|
+--oracle.calendar.soap.client.Reply
- public class Reply
- extends CalendarReply
The Reply class provides the encapsulation for the XML received from a Search Command. The Reply object can be obtained from a CalendarResponse.
- See Also:
CalendaringResponse
, SearchCommand
Constructor Summary |
Reply()
Default constructor. |
Method Summary |
java.util.Vector |
getEntries()
Returns a Vector of XML elements that resulted from the Search. |
java.lang.String |
getSearchHandle()
Returns the Search Handle that can be used to continue the searching on the calendar server. |
static Reply |
unmarshall(java.util.Vector in_bodyEntries)
Constructs a new Reply instance from the XML elements within the bodyEntries. |
Methods inherited from class java.lang.Object |
<clinit>, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait |
k_searchHandle
public static final java.lang.String k_searchHandle
m_searchHandle
private java.lang.String m_searchHandle
m_entries
private java.util.Vector m_entries
Reply
public Reply()
- Default constructor.
getSearchHandle
public java.lang.String getSearchHandle()
- Returns the Search Handle that can be used to continue the searching on the calendar server. The search handle will null (i.e. not returned from the host) if the search was complete.
-
- Returns:
- String
getEntries
public java.util.Vector getEntries()
- Returns a Vector of XML elements that resulted from the Search.
-
- Returns:
- Vector a vector of XML elements
unmarshall
public static Reply unmarshall(java.util.Vector in_bodyEntries)
- Constructs a new Reply instance from the XML elements within the bodyEntries. The Reply will contain the contents of the first <Reply> element found
-
- Parameters:
in_bodyEntries
-
- Returns:
- Reply a Reply object