Package iofXml.v3

Class TeamEntry


  • public class TeamEntry
    extends java.lang.Object
    Defines an event entry for a team.

    Java class for TeamEntry complex type.

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

    
     <complexType name="TeamEntry">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element name="Id" type="{http://www.orienteering.org/datastandard/3.0}Id" minOccurs="0"/>
             <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
             <element name="Organisation" type="{http://www.orienteering.org/datastandard/3.0}Organisation" maxOccurs="unbounded" minOccurs="0"/>
             <element name="TeamEntryPerson" type="{http://www.orienteering.org/datastandard/3.0}TeamEntryPerson" maxOccurs="unbounded" minOccurs="0"/>
             <element name="Class" type="{http://www.orienteering.org/datastandard/3.0}Class" maxOccurs="unbounded" minOccurs="0"/>
             <element name="Race" type="{http://www.w3.org/2001/XMLSchema}integer" maxOccurs="unbounded" minOccurs="0"/>
             <element name="AssignedFee" type="{http://www.orienteering.org/datastandard/3.0}AssignedFee" maxOccurs="unbounded" minOccurs="0"/>
             <element name="ServiceRequest" type="{http://www.orienteering.org/datastandard/3.0}ServiceRequest" maxOccurs="unbounded" minOccurs="0"/>
             <element name="StartTimeAllocationRequest" type="{http://www.orienteering.org/datastandard/3.0}StartTimeAllocationRequest" minOccurs="0"/>
             <element name="ContactInformation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
             <element name="EntryTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
             <element name="Extensions" type="{http://www.orienteering.org/datastandard/3.0}Extensions" minOccurs="0"/>
           </sequence>
           <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
         </restriction>
       </complexContent>
     </complexType>
     
    • Field Detail

      • id

        protected Id id
      • name

        protected java.lang.String name
      • organisation

        protected java.util.List<Organisation> organisation
      • teamEntryPerson

        protected java.util.List<TeamEntryPerson> teamEntryPerson
      • clazz

        protected java.util.List<Class> clazz
      • race

        protected java.util.List<java.math.BigInteger> race
      • assignedFee

        protected java.util.List<AssignedFee> assignedFee
      • serviceRequest

        protected java.util.List<ServiceRequest> serviceRequest
      • contactInformation

        protected java.lang.String contactInformation
      • entryTime

        protected javax.xml.datatype.XMLGregorianCalendar entryTime
      • modifyTime

        protected javax.xml.datatype.XMLGregorianCalendar modifyTime
    • Constructor Detail

      • TeamEntry

        public TeamEntry()
    • Method Detail

      • getId

        public Id getId()
        Gets the value of the id property.
        Returns:
        possible object is Id
      • setId

        public void setId​(Id value)
        Sets the value of the id property.
        Parameters:
        value - allowed object is Id
      • getName

        public java.lang.String getName()
        Gets the value of the name property.
        Returns:
        possible object is String
      • setName

        public void setName​(java.lang.String value)
        Sets the value of the name property.
        Parameters:
        value - allowed object is String
      • getOrganisation

        public java.util.List<Organisation> getOrganisation()
        Gets the value of the organisation 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 Jakarta XML Binding object. This is why there is not a set method for the organisation property.

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

            getOrganisation().add(newItem);
         

        Objects of the following type(s) are allowed in the list Organisation

        Returns:
        The value of the organisation property.
      • getTeamEntryPerson

        public java.util.List<TeamEntryPerson> getTeamEntryPerson()
        Gets the value of the teamEntryPerson 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 Jakarta XML Binding object. This is why there is not a set method for the teamEntryPerson property.

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

            getTeamEntryPerson().add(newItem);
         

        Objects of the following type(s) are allowed in the list TeamEntryPerson

        Returns:
        The value of the teamEntryPerson property.
      • getClazz

        public java.util.List<Class> getClazz()
        Gets the value of the clazz 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 Jakarta XML Binding object. This is why there is not a set method for the clazz property.

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

            getClazz().add(newItem);
         

        Objects of the following type(s) are allowed in the list Class

        Returns:
        The value of the clazz property.
      • getRace

        public java.util.List<java.math.BigInteger> getRace()
        Gets the value of the race 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 Jakarta XML Binding object. This is why there is not a set method for the race property.

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

            getRace().add(newItem);
         

        Objects of the following type(s) are allowed in the list BigInteger

        Returns:
        The value of the race property.
      • getAssignedFee

        public java.util.List<AssignedFee> getAssignedFee()
        Gets the value of the assignedFee 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 Jakarta XML Binding object. This is why there is not a set method for the assignedFee property.

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

            getAssignedFee().add(newItem);
         

        Objects of the following type(s) are allowed in the list AssignedFee

        Returns:
        The value of the assignedFee property.
      • getServiceRequest

        public java.util.List<ServiceRequest> getServiceRequest()
        Gets the value of the serviceRequest 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 Jakarta XML Binding object. This is why there is not a set method for the serviceRequest property.

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

            getServiceRequest().add(newItem);
         

        Objects of the following type(s) are allowed in the list ServiceRequest

        Returns:
        The value of the serviceRequest property.
      • getContactInformation

        public java.lang.String getContactInformation()
        Gets the value of the contactInformation property.
        Returns:
        possible object is String
      • setContactInformation

        public void setContactInformation​(java.lang.String value)
        Sets the value of the contactInformation property.
        Parameters:
        value - allowed object is String
      • getEntryTime

        public javax.xml.datatype.XMLGregorianCalendar getEntryTime()
        Gets the value of the entryTime property.
        Returns:
        possible object is XMLGregorianCalendar
      • setEntryTime

        public void setEntryTime​(javax.xml.datatype.XMLGregorianCalendar value)
        Sets the value of the entryTime property.
        Parameters:
        value - allowed object is XMLGregorianCalendar
      • getExtensions

        public Extensions getExtensions()
        Gets the value of the extensions property.
        Returns:
        possible object is Extensions
      • setExtensions

        public void setExtensions​(Extensions value)
        Sets the value of the extensions property.
        Parameters:
        value - allowed object is Extensions
      • getModifyTime

        public javax.xml.datatype.XMLGregorianCalendar getModifyTime()
        Gets the value of the modifyTime property.
        Returns:
        possible object is XMLGregorianCalendar
      • setModifyTime

        public void setModifyTime​(javax.xml.datatype.XMLGregorianCalendar value)
        Sets the value of the modifyTime property.
        Parameters:
        value - allowed object is XMLGregorianCalendar