Package iofXml.v3

Class StartTimeAllocationRequest

  • All Implemented Interfaces:

    
    public class StartTimeAllocationRequest
    
                        

    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>
    
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      Organisation getOrganisation() The reference organisation for the start time allocation request.
      void setOrganisation(Organisation value) Sets the value of the organisation property.
      Person getPerson() The reference person for the start time allocation request.
      void setPerson(Person value) Sets the value of the person property.
      String getType() The type of start time allocation request.
      void setType(String value) Sets the value of the type property.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • StartTimeAllocationRequest

        StartTimeAllocationRequest()