Class UpdateItemType
- java.lang.Object
-
- org.oasis_open.docs.ns.wscal.calws_soap.BaseRequestType
-
- org.oasis_open.docs.ns.wscal.calws_soap.UpdateItemType
-
public class UpdateItemType extends BaseRequestType
Message to update a calendar item. The supplied etoken MUST match the etoken held by the service.Java class for UpdateItemType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="UpdateItemType"> <complexContent> <extension base="{http://docs.oasis-open.org/ns/wscal/calws-soap}BaseRequestType"> <sequence> <element name="etoken" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="select" type="{http://docs.oasis-open.org/ns/wscal/calws-soap}ComponentSelectionType" maxOccurs="unbounded"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringetokenprotected List<ComponentSelectionType>select-
Fields inherited from class org.oasis_open.docs.ns.wscal.calws_soap.BaseRequestType
href, id
-
-
Constructor Summary
Constructors Constructor Description UpdateItemType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEtoken()Gets the value of the etoken property.List<ComponentSelectionType>getSelect()Gets the value of the select property.voidsetEtoken(String value)Sets the value of the etoken property.-
Methods inherited from class org.oasis_open.docs.ns.wscal.calws_soap.BaseRequestType
getHref, getId, setHref, setId
-
-
-
-
Field Detail
-
etoken
protected String etoken
-
select
protected List<ComponentSelectionType> select
-
-
Method Detail
-
getEtoken
public String getEtoken()
Gets the value of the etoken property.- Returns:
- possible object is
String
-
setEtoken
public void setEtoken(String value)
Sets the value of the etoken property.- Parameters:
value- allowed object isString
-
getSelect
public List<ComponentSelectionType> getSelect()
Gets the value of the select property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the select property.For example, to add a new item, do as follows:
getSelect().add(newItem);Objects of the following type(s) are allowed in the list
ComponentSelectionType
-
-