All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cz.abclinuxu.datoveschranky.ws.db.TUpdateDBInput Maven / Gradle / Ivy

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 tUpdateDBInput complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="tUpdateDBInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dbOldOwnerInfo" type="{http://isds.czechpoint.cz/v20}tDbOwnerInfo"/>
 *         <element name="dbNewOwnerInfo" type="{http://isds.czechpoint.cz/v20}tDbOwnerInfo"/>
 *         <group ref="{http://isds.czechpoint.cz/v20}gExtApproval"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tUpdateDBInput", propOrder = { "dbOldOwnerInfo", "dbNewOwnerInfo", "dbApproved", "dbExternRefNumber" }) public class TUpdateDBInput { @XmlElement(required = true) protected TDbOwnerInfo dbOldOwnerInfo; @XmlElement(required = true) protected TDbOwnerInfo dbNewOwnerInfo; @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 dbOldOwnerInfo property. * * @return * possible object is * {@link TDbOwnerInfo } * */ public TDbOwnerInfo getDbOldOwnerInfo() { return dbOldOwnerInfo; } /** * Sets the value of the dbOldOwnerInfo property. * * @param value * allowed object is * {@link TDbOwnerInfo } * */ public void setDbOldOwnerInfo(TDbOwnerInfo value) { this.dbOldOwnerInfo = value; } /** * Gets the value of the dbNewOwnerInfo property. * * @return * possible object is * {@link TDbOwnerInfo } * */ public TDbOwnerInfo getDbNewOwnerInfo() { return dbNewOwnerInfo; } /** * Sets the value of the dbNewOwnerInfo property. * * @param value * allowed object is * {@link TDbOwnerInfo } * */ public void setDbNewOwnerInfo(TDbOwnerInfo value) { this.dbNewOwnerInfo = 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