Package iofXml.v3

Class Service

java.lang.Object
iofXml.v3.Service

public class Service extends Object
Defines a general purpose service request, e.g. for rental card or accomodation.

Java class for Service complex type

.

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


 <complexType name="Service">
   <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.orienteering.org/datastandard/3.0}LanguageString" maxOccurs="unbounded"/>
         <element name="Fee" type="{http://www.orienteering.org/datastandard/3.0}Fee" maxOccurs="unbounded" minOccurs="0"/>
         <element name="Description" type="{http://www.orienteering.org/datastandard/3.0}LanguageString" maxOccurs="unbounded" minOccurs="0"/>
         <element name="MaxNumber" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
         <element name="RequestedNumber" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
         <element name="Extensions" type="{http://www.orienteering.org/datastandard/3.0}Extensions" minOccurs="0"/>
       </sequence>
       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • id

      protected Id id
    • name

      protected List<LanguageString> name
      The name of the service.
    • fee

      protected List<Fee> fee
      The fees attached to this service.
    • description

      protected List<LanguageString> description
      A further description of the service than the Name element gives.
    • maxNumber

      protected Double maxNumber
      The maximum number of instances of this service that are available. Omit this element if there is no such limit.
    • requestedNumber

      protected Double requestedNumber
      The number of instances of this service that has been requested.
    • extensions

      protected Extensions extensions
      Container element for custom elements from other schemas.
    • type

      protected String type
      Used to mark special services, e.g. rental cards whose fees that are to be used in entry scenarios.
    • modifyTime

      protected XMLGregorianCalendar modifyTime
  • Constructor Details

    • Service

      public Service()
  • Method Details

    • 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 List<LanguageString> getName()
      The name of the service. Gets the value of the name 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 name property.

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

       getName().add(newItem);
       

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

      Returns:
      The value of the name property.
    • getFee

      public List<Fee> getFee()
      The fees attached to this service. Gets the value of the fee 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 fee property.

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

       getFee().add(newItem);
       

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

      Returns:
      The value of the fee property.
    • getDescription

      public List<LanguageString> getDescription()
      A further description of the service than the Name element gives. Gets the value of the description 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 description property.

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

       getDescription().add(newItem);
       

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

      Returns:
      The value of the description property.
    • getMaxNumber

      public Double getMaxNumber()
      The maximum number of instances of this service that are available. Omit this element if there is no such limit.
      Returns:
      possible object is Double
    • setMaxNumber

      public void setMaxNumber(Double value)
      Sets the value of the maxNumber property.
      Parameters:
      value - allowed object is Double
      See Also:
    • getRequestedNumber

      public Double getRequestedNumber()
      The number of instances of this service that has been requested.
      Returns:
      possible object is Double
    • setRequestedNumber

      public void setRequestedNumber(Double value)
      Sets the value of the requestedNumber property.
      Parameters:
      value - allowed object is Double
      See Also:
    • getExtensions

      public Extensions getExtensions()
      Container element for custom elements from other schemas.
      Returns:
      possible object is Extensions
    • setExtensions

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

      public String getType()
      Used to mark special services, e.g. rental cards whose fees that are to be used in entry scenarios.
      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:
    • getModifyTime

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

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