Package iofXml.v3

Class StartTimeAllocationRequest

java.lang.Object
iofXml.v3.StartTimeAllocationRequest

public class StartTimeAllocationRequest extends Object
Used to state start time allocation requests. It consists of a possible reference Organisation or Person and the allocation request, e.g. late start or grouped with the reference Organisation/Person. This way it is possible to state requests to the event organizer so that e.g. all members of an organisation has start times close to each other - or parents have start times far from each other. It is totally up to the event software and organizers whether they will support such requests.

Java class for StartTimeAllocationRequest complex type

.

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


 <complexType name="StartTimeAllocationRequest">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Organisation" type="{http://www.orienteering.org/datastandard/3.0}Organisation" minOccurs="0"/>
         <element name="Person" type="{http://www.orienteering.org/datastandard/3.0}Person" minOccurs="0"/>
       </sequence>
       <attribute name="type" default="Normal">
         <simpleType>
           <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
             <enumeration value="Normal"/>
             <enumeration value="EarlyStart"/>
             <enumeration value="LateStart"/>
             <enumeration value="SeparatedFrom"/>
             <enumeration value="GroupedWith"/>
           </restriction>
         </simpleType>
       </attribute>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • organisation

      protected Organisation organisation
      The reference organisation for the start time allocation request.
    • person

      protected Person person
      The reference person for the start time allocation request.
    • type

      protected String type
      The type of start time allocation request.
  • Constructor Details

    • StartTimeAllocationRequest

      public StartTimeAllocationRequest()
  • Method Details

    • getOrganisation

      public Organisation getOrganisation()
      The reference organisation for the start time allocation request.
      Returns:
      possible object is Organisation
    • setOrganisation

      public void setOrganisation(Organisation value)
      Sets the value of the organisation property.
      Parameters:
      value - allowed object is Organisation
      See Also:
    • getPerson

      public Person getPerson()
      The reference person for the start time allocation request.
      Returns:
      possible object is Person
    • setPerson

      public void setPerson(Person value)
      Sets the value of the person property.
      Parameters:
      value - allowed object is Person
      See Also:
    • getType

      public String getType()
      The type of start time allocation request.
      Returns:
      possible object is String
    • setType

      public void setType(String value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is String
      See Also: