com.omgm.speedy.eps.soap.model.AddParcel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of speedy-eps-java-client-soap Show documentation
Show all versions of speedy-eps-java-client-soap Show documentation
Speedy EPS SOAP java client library, examples and recommendations
package com.omgm.speedy.eps.soap.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for addParcel complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="addParcel">
* <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="parcel" type="{http://ver01.eps.speedy.sirma.com/}paramParcel" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "addParcel", propOrder = {
"sessionId",
"parcel"
})
public class AddParcel {
protected String sessionId;
protected ParamParcel parcel;
/**
* 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 parcel property.
*
* @return
* possible object is
* {@link ParamParcel }
*
*/
public ParamParcel getParcel() {
return parcel;
}
/**
* Sets the value of the parcel property.
*
* @param value
* allowed object is
* {@link ParamParcel }
*
*/
public void setParcel(ParamParcel value) {
this.parcel = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy