
cz.abclinuxu.datoveschranky.ws.dm.TRecipients Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isds-web-services Show documentation
Show all versions of isds-web-services Show documentation
Entity classes generated from WSDL.
The newest version!
package cz.abclinuxu.datoveschranky.ws.dm;
import java.math.BigInteger;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for tRecipients complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tRecipients">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dbIDRecipient" type="{http://isds.czechpoint.cz/v20}tIdDb"/>
* <element name="dmRecipientOrgUnit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="dmRecipientOrgUnitNum" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="dmToHands" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tRecipients", propOrder = {
"dbIDRecipient",
"dmRecipientOrgUnit",
"dmRecipientOrgUnitNum",
"dmToHands"
})
public class TRecipients {
@XmlElement(required = true)
protected String dbIDRecipient;
@XmlElementRef(name = "dmRecipientOrgUnit", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false)
protected JAXBElement dmRecipientOrgUnit;
@XmlElementRef(name = "dmRecipientOrgUnitNum", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false)
protected JAXBElement dmRecipientOrgUnitNum;
@XmlElement(required = true, nillable = true)
protected String dmToHands;
/**
* Gets the value of the dbIDRecipient property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDbIDRecipient() {
return dbIDRecipient;
}
/**
* Sets the value of the dbIDRecipient property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDbIDRecipient(String value) {
this.dbIDRecipient = value;
}
/**
* Gets the value of the dmRecipientOrgUnit property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getDmRecipientOrgUnit() {
return dmRecipientOrgUnit;
}
/**
* Sets the value of the dmRecipientOrgUnit property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setDmRecipientOrgUnit(JAXBElement value) {
this.dmRecipientOrgUnit = value;
}
/**
* Gets the value of the dmRecipientOrgUnitNum property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
*
*/
public JAXBElement getDmRecipientOrgUnitNum() {
return dmRecipientOrgUnitNum;
}
/**
* Sets the value of the dmRecipientOrgUnitNum property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
*
*/
public void setDmRecipientOrgUnitNum(JAXBElement value) {
this.dmRecipientOrgUnitNum = value;
}
/**
* Gets the value of the dmToHands property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDmToHands() {
return dmToHands;
}
/**
* Sets the value of the dmToHands property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDmToHands(String value) {
this.dmToHands = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy