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>
-
-
Constructor Summary
Constructors Constructor Description StartTimeAllocationRequest()
-
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. -
-
Method Detail
-
getOrganisation
Organisation getOrganisation()
The reference organisation for the start time allocation request.
- Returns:
possibleobject is Organisation
-
setOrganisation
void setOrganisation(Organisation value)
Sets the value of the organisation property.
- Parameters:
value
- allowed object is Organisation
-
getPerson
Person getPerson()
The reference person for the start time allocation request.
- Returns:
possibleobject is Person
-
setPerson
void setPerson(Person value)
Sets the value of the person property.
- Parameters:
value
- allowed object is Person
-
getType
String getType()
The type of start time allocation request.
- Returns:
possibleobject is String
-
-
-
-