oracle.calendar.soap.client
Class DeleteCommand

java.lang.Object
  |
  +--oracle.calendar.soap.client.CalendaringCommand
        |
        +--oracle.calendar.soap.client.DeleteCommand

public class DeleteCommand
extends CalendaringCommand

The Delete Command is used to delete an event on the calendar server. The command requires a query object to uniquely identify the event in question. The getElements() XML DOM is passed to the Calendarlet's Create() command.

See Also:
Calendarlet.Delete(org.w3c.dom.Element), vQuery

Field Summary
private  vQuery m_query
           

 

Fields inherited from class oracle.calendar.soap.client.CalendaringCommand
k_calendaringNamespace, m_cmdId

 

Constructor Summary
DeleteCommand()
          Default constructor

 

Method Summary
 org.w3c.dom.Element getElement()
          Returns a new XML DOM structure representing the Delete SOAP method to be transmitted to the Calendar Web Service.
 void setQuery(vQuery in_query)
          Assign the query to be executed on the Web Services host.

 

Methods inherited from class oracle.calendar.soap.client.CalendaringCommand
getCmdId, getNamespace, setCmdId

 

Methods inherited from class java.lang.Object
<clinit>, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait

 

Field Detail

m_query

private vQuery m_query
Constructor Detail

DeleteCommand

public DeleteCommand()
Default constructor
Method Detail

setQuery

public void setQuery(vQuery in_query)
Assign the query to be executed on the Web Services host.
Parameters:
in_query - a query object
See Also:
vQuery

getElement

public org.w3c.dom.Element getElement()
Returns a new XML DOM structure representing the Delete SOAP method to be transmitted to the Calendar Web Service. This XML DOM can be passed directly to the Calendarlet's Delete command.
Overrides:
getElement in class CalendaringCommand
Returns:
Element an XML DOM element tree
See Also:
Calendarlet.Delete(org.w3c.dom.Element)