com.omgm.speedy.eps.soap.model.CalculateMultipleServices Maven / Gradle / Ivy
package com.omgm.speedy.eps.soap.model;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for calculateMultipleServices complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="calculateMultipleServices">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="calculation" type="{http://ver01.eps.speedy.sirma.com/}paramCalculation" minOccurs="0"/>
* <element name="serviceTypeIds" type="{http://www.w3.org/2001/XMLSchema}long" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "calculateMultipleServices", propOrder = {
"sessionId",
"calculation",
"serviceTypeIds"
})
public class CalculateMultipleServices {
protected String sessionId;
protected ParamCalculation calculation;
@XmlElement(type = Long.class)
protected List serviceTypeIds;
/**
* Gets the value of the sessionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionId() {
return sessionId;
}
/**
* Sets the value of the sessionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionId(String value) {
this.sessionId = value;
}
/**
* Gets the value of the calculation property.
*
* @return
* possible object is
* {@link ParamCalculation }
*
*/
public ParamCalculation getCalculation() {
return calculation;
}
/**
* Sets the value of the calculation property.
*
* @param value
* allowed object is
* {@link ParamCalculation }
*
*/
public void setCalculation(ParamCalculation value) {
this.calculation = value;
}
/**
* Gets the value of the serviceTypeIds 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 serviceTypeIds property.
*
*
* For example, to add a new item, do as follows:
*
* getServiceTypeIds().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Long }
*
*
*/
public List getServiceTypeIds() {
if (serviceTypeIds == null) {
serviceTypeIds = new ArrayList();
}
return this.serviceTypeIds;
}
}