
cz.abclinuxu.datoveschranky.ws.db.TDeleteDBPromptlyInput 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.db;
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 tDeleteDBPromptlyInput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tDeleteDBPromptlyInput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dbOwnerInfo" type="{http://isds.czechpoint.cz/v20}tDbOwnerInfo"/>
* <group ref="{http://isds.czechpoint.cz/v20}gExtApproval"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tDeleteDBPromptlyInput", propOrder = {
"dbOwnerInfo",
"dbApproved",
"dbExternRefNumber"
})
public class TDeleteDBPromptlyInput {
@XmlElement(required = true)
protected TDbOwnerInfo dbOwnerInfo;
@XmlElementRef(name = "dbApproved", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false)
protected JAXBElement dbApproved;
@XmlElementRef(name = "dbExternRefNumber", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false)
protected JAXBElement dbExternRefNumber;
/**
* Gets the value of the dbOwnerInfo property.
*
* @return
* possible object is
* {@link TDbOwnerInfo }
*
*/
public TDbOwnerInfo getDbOwnerInfo() {
return dbOwnerInfo;
}
/**
* Sets the value of the dbOwnerInfo property.
*
* @param value
* allowed object is
* {@link TDbOwnerInfo }
*
*/
public void setDbOwnerInfo(TDbOwnerInfo value) {
this.dbOwnerInfo = value;
}
/**
* Gets the value of the dbApproved property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public JAXBElement getDbApproved() {
return dbApproved;
}
/**
* Sets the value of the dbApproved property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link Boolean }{@code >}
*
*/
public void setDbApproved(JAXBElement value) {
this.dbApproved = value;
}
/**
* Gets the value of the dbExternRefNumber property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getDbExternRefNumber() {
return dbExternRefNumber;
}
/**
* Sets the value of the dbExternRefNumber property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setDbExternRefNumber(JAXBElement value) {
this.dbExternRefNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy