Class ComponentSelectionType
- java.lang.Object
-
- org.oasis_open.docs.ns.wscal.calws_soap.ComponentSelectionType
-
public class ComponentSelectionType extends Object
Used to contain a selection of a single component. There are no changes that can be applied directly to components. They are containers for properties or other components.Java class for ComponentSelectionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ComponentSelectionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}baseComponent"/> <element name="properties" type="{http://docs.oasis-open.org/ns/wscal/calws-soap}PropertiesSelectionType" minOccurs="0"/> <element name="components" type="{http://docs.oasis-open.org/ns/wscal/calws-soap}ComponentsSelectionType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BaseComponentTypebaseComponentprotected ComponentsSelectionTypecomponentsprotected PropertiesSelectionTypeproperties
-
Constructor Summary
Constructors Constructor Description ComponentSelectionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BaseComponentTypegetBaseComponent()Gets the value of the baseComponent property.ComponentsSelectionTypegetComponents()Gets the value of the components property.PropertiesSelectionTypegetProperties()Gets the value of the properties property.voidsetBaseComponent(BaseComponentType value)Sets the value of the baseComponent property.voidsetComponents(ComponentsSelectionType value)Sets the value of the components property.voidsetProperties(PropertiesSelectionType value)Sets the value of the properties property.
-
-
-
Field Detail
-
baseComponent
protected BaseComponentType baseComponent
-
properties
protected PropertiesSelectionType properties
-
components
protected ComponentsSelectionType components
-
-
Method Detail
-
getBaseComponent
public BaseComponentType getBaseComponent()
Gets the value of the baseComponent property.- Returns:
- possible object is
BaseComponentType
-
setBaseComponent
public void setBaseComponent(BaseComponentType value)
Sets the value of the baseComponent property.- Parameters:
value- allowed object isBaseComponentType
-
getProperties
public PropertiesSelectionType getProperties()
Gets the value of the properties property.- Returns:
- possible object is
PropertiesSelectionType
-
setProperties
public void setProperties(PropertiesSelectionType value)
Sets the value of the properties property.- Parameters:
value- allowed object isPropertiesSelectionType
-
getComponents
public ComponentsSelectionType getComponents()
Gets the value of the components property.- Returns:
- possible object is
ComponentsSelectionType
-
setComponents
public void setComponents(ComponentsSelectionType value)
Sets the value of the components property.- Parameters:
value- allowed object isComponentsSelectionType
-
-