Class ChildCollectionType
- java.lang.Object
-
- org.oasis_open.docs.ws_calendar.ns.soap.GetPropertiesBasePropertyType
-
- org.oasis_open.docs.ws_calendar.ns.soap.ChildCollectionType
-
public class ChildCollectionType extends GetPropertiesBasePropertyType
Type returned in GetPropertiesResponse to provide references to child collections.Java class for ChildCollectionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ChildCollectionType"> <complexContent> <extension base="{http://docs.oasis-open.org/ws-calendar/ns/soap}GetPropertiesBasePropertyType"> <sequence> <element name="href" type="{http://www.w3.org/2001/XMLSchema}string"/> <choice maxOccurs="unbounded" minOccurs="0"> <element ref="{http://docs.oasis-open.org/ws-calendar/ns/soap}calendarCollection"/> <element ref="{http://docs.oasis-open.org/ws-calendar/ns/soap}collection"/> </choice> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Object>calendarCollectionOrCollectionprotected Stringhref
-
Constructor Summary
Constructors Constructor Description ChildCollectionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>getCalendarCollectionOrCollection()Gets the value of the calendarCollectionOrCollection property.StringgetHref()Gets the value of the href property.voidsetHref(String value)Sets the value of the href property.
-
-
-
Method Detail
-
getHref
public String getHref()
Gets the value of the href property.- Returns:
- possible object is
String
-
setHref
public void setHref(String value)
Sets the value of the href property.- Parameters:
value- allowed object isString
-
getCalendarCollectionOrCollection
public List<Object> getCalendarCollectionOrCollection()
Gets the value of the calendarCollectionOrCollection 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 calendarCollectionOrCollection property.For example, to add a new item, do as follows:
getCalendarCollectionOrCollection().add(newItem);Objects of the following type(s) are allowed in the list
CalendarCollectionTypeCollectionType
-
-