org.mobicents.slee.sippresence.pojo.rpid
Class Activities

java.lang.Object
  extended by org.mobicents.slee.sippresence.pojo.rpid.Activities

public class Activities
extends java.lang.Object

Java class for anonymous complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType>
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="note" type="{urn:ietf:params:xml:ns:pidf:rpid}Note_t" minOccurs="0"/>
         <choice>
           <element name="unknown" type="{urn:ietf:params:xml:ns:pidf:rpid}empty" minOccurs="0"/>
           <sequence maxOccurs="unbounded">
             <choice>
               <element name="appointment" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="away" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="breakfast" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="busy" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="dinner" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="holiday" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="in-transit" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="looking-for-work" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="meal" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="meeting" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="on-the-phone" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="performance" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="permanent-absence" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="playing" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="presentation" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="shopping" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="sleeping" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="spectator" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="steering" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="travel" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="tv" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="vacation" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="working" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="worship" type="{urn:ietf:params:xml:ns:pidf:rpid}empty"/>
               <element name="other" type="{urn:ietf:params:xml:ns:pidf:rpid}Note_t"/>
               <any/>
             </choice>
           </sequence>
         </choice>
       </sequence>
       <attGroup ref="{urn:ietf:params:xml:ns:pidf:rpid}fromUntil"/>
       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<java.lang.Object> appointmentOrAwayOrBreakfast
           
protected  javax.xml.datatype.XMLGregorianCalendar from
           
protected  java.lang.String id
           
protected  NoteT note
           
protected  Empty unknown
           
protected  javax.xml.datatype.XMLGregorianCalendar until
           
 
Constructor Summary
Activities()
           
 
Method Summary
 java.util.List<java.lang.Object> getAppointmentOrAwayOrBreakfast()
          Gets the value of the appointmentOrAwayOrBreakfast property.
 javax.xml.datatype.XMLGregorianCalendar getFrom()
          Gets the value of the from property.
 java.lang.String getId()
          Gets the value of the id property.
 NoteT getNote()
          Gets the value of the note property.
 java.util.Map<javax.xml.namespace.QName,java.lang.String> getOtherAttributes()
          Gets a map that contains attributes that aren't bound to any typed property on this class.
 Empty getUnknown()
          Gets the value of the unknown property.
 javax.xml.datatype.XMLGregorianCalendar getUntil()
          Gets the value of the until property.
 void setFrom(javax.xml.datatype.XMLGregorianCalendar value)
          Sets the value of the from property.
 void setId(java.lang.String value)
          Sets the value of the id property.
 void setNote(NoteT value)
          Sets the value of the note property.
 void setUnknown(Empty value)
          Sets the value of the unknown property.
 void setUntil(javax.xml.datatype.XMLGregorianCalendar value)
          Sets the value of the until property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

note

protected NoteT note

unknown

protected Empty unknown

appointmentOrAwayOrBreakfast

protected java.util.List<java.lang.Object> appointmentOrAwayOrBreakfast

id

protected java.lang.String id

from

protected javax.xml.datatype.XMLGregorianCalendar from

until

protected javax.xml.datatype.XMLGregorianCalendar until
Constructor Detail

Activities

public Activities()
Method Detail

getNote

public NoteT getNote()
Gets the value of the note property.

Returns:
possible object is NoteT

setNote

public void setNote(NoteT value)
Sets the value of the note property.

Parameters:
value - allowed object is NoteT

getUnknown

public Empty getUnknown()
Gets the value of the unknown property.

Returns:
possible object is Empty

setUnknown

public void setUnknown(Empty value)
Sets the value of the unknown property.

Parameters:
value - allowed object is Empty

getAppointmentOrAwayOrBreakfast

public java.util.List<java.lang.Object> getAppointmentOrAwayOrBreakfast()
Gets the value of the appointmentOrAwayOrBreakfast 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 set method for the appointmentOrAwayOrBreakfast property.

For example, to add a new item, do as follows:

    getAppointmentOrAwayOrBreakfast().add(newItem);
 

Objects of the following type(s) are allowed in the list JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<NoteT> JAXBElement<Empty> JAXBElement<Empty> Element JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> JAXBElement<Empty> Object JAXBElement<Empty> JAXBElement<Empty>


getId

public java.lang.String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(java.lang.String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

getFrom

public javax.xml.datatype.XMLGregorianCalendar getFrom()
Gets the value of the from property.

Returns:
possible object is XMLGregorianCalendar

setFrom

public void setFrom(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the from property.

Parameters:
value - allowed object is XMLGregorianCalendar

getUntil

public javax.xml.datatype.XMLGregorianCalendar getUntil()
Gets the value of the until property.

Returns:
possible object is XMLGregorianCalendar

setUntil

public void setUntil(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the until property.

Parameters:
value - allowed object is XMLGregorianCalendar

getOtherAttributes

public java.util.Map<javax.xml.namespace.QName,java.lang.String> getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.

the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.

Returns:
always non-null


Copyright © 2008. All Rights Reserved.