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 Summary
Constructors Constructor Description ServiceRequest()
-
Method Summary
Modifier and Type Method Description Id
getId()
Gets the value of the id property. void
setId(Id value)
Sets the value of the id property. Service
getService()
The service that is requested. void
setService(Service value)
Sets the value of the service property. double
getRequestedQuantity()
The quantity (number of instances) of the service that is requested. void
setRequestedQuantity(double value)
Sets the value of the requestedQuantity property. Double
getDeliveredQuantity()
The quantity (number of instances) of the service that has been delivered. void
setDeliveredQuantity(Double value)
Sets the value of the deliveredQuantity property. String
getComment()
Any extra information or comment attached to the service request. void
setComment(String value)
Sets the value of the comment property. List<AssignedFee>
getAssignedFee()
The fees related to this service request. Extensions
getExtensions()
Container element for custom elements from other schemas. void
setExtensions(Extensions value)
Sets the value of the extensions property. XMLGregorianCalendar
getModifyTime()
Gets the value of the modifyTime property. void
setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property. -
-
Method Detail
-
setId
void setId(Id value)
Sets the value of the id property.
- Parameters:
value
- allowed object is Id
-
getService
Service getService()
The service that is requested.
- Returns:
possibleobject is Service
-
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
-
setDeliveredQuantity
void setDeliveredQuantity(Double value)
Sets the value of the deliveredQuantity property.
- Parameters:
value
- allowed object 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.
-
getExtensions
Extensions getExtensions()
Container element for custom elements from other schemas.
- Returns:
possibleobject is Extensions
-
setExtensions
void setExtensions(Extensions value)
Sets the value of the extensions property.
- Parameters:
value
- allowed object is Extensions
-
getModifyTime
XMLGregorianCalendar getModifyTime()
Gets the value of the modifyTime property.
- Returns:
possibleobject is XMLGregorianCalendar
-
setModifyTime
void setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property.
- Parameters:
value
- allowed object is XMLGregorianCalendar
-
-
-
-