Package iofXml.v3

Class ServiceRequest

  • All Implemented Interfaces:

    
    public class ServiceRequest
    
                        

    Java class for ServiceRequest complex type

    .

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

    
    <complexType name="ServiceRequest">
      <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="Service" type="{http://www.orienteering.org/datastandard/3.0}Service"/>
            <element name="RequestedQuantity" type="{http://www.w3.org/2001/XMLSchema}double"/>
            <element name="DeliveredQuantity" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
            <element name="Comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
            <element name="AssignedFee" type="{http://www.orienteering.org/datastandard/3.0}AssignedFee" maxOccurs="unbounded" 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>
    
    • Constructor Detail

      • ServiceRequest

        ServiceRequest()
    • Method Detail

      • getId

         Id getId()

        Gets the value of the id property.

        Returns:

        possibleobject is Id

      • setId

         void setId(Id value)

        Sets the value of the id property.

        Parameters:
        value - allowed object is Id
      • setService

         void setService(Service value)

        Sets the value of the service property.

        Parameters:
        value - allowed object is Service
      • getRequestedQuantity

         double getRequestedQuantity()

        The quantity (number of instances) of the service that is requested.

      • setRequestedQuantity

         void setRequestedQuantity(double value)

        Sets the value of the requestedQuantity property.

      • getDeliveredQuantity

         Double getDeliveredQuantity()

        The quantity (number of instances) of the service that has been delivered. Can differ from RequestedQuantity when the available number of instances of a service is limited.

        Returns:

        possibleobject is Double

      • getComment

         String getComment()

        Any extra information or comment attached to the service request.

        Returns:

        possibleobject is String

      • setComment

         void setComment(String value)

        Sets the value of the comment property.

        Parameters:
        value - allowed object is String
      • getAssignedFee

         List<AssignedFee> getAssignedFee()

        The fees related to this service request. 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 JAXB 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:

        Thevalue of the assignedFee property.