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

cz.abclinuxu.datoveschranky.ws.db.TUpdDBUserInput 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 tUpdDBUserInput complex type. * *

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

 * <complexType name="tUpdDBUserInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dbOwnerInfo" type="{http://isds.czechpoint.cz/v20}tDbOwnerInfo"/>
 *         <element name="dbOldUserInfo" type="{http://isds.czechpoint.cz/v20}tDbUserInfo"/>
 *         <element name="dbNewUserInfo" type="{http://isds.czechpoint.cz/v20}tDbUserInfo"/>
 *         <group ref="{http://isds.czechpoint.cz/v20}gExtApproval"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tUpdDBUserInput", propOrder = { "dbOwnerInfo", "dbOldUserInfo", "dbNewUserInfo", "dbApproved", "dbExternRefNumber" }) public class TUpdDBUserInput { @XmlElement(required = true) protected TDbOwnerInfo dbOwnerInfo; @XmlElement(required = true) protected TDbUserInfo dbOldUserInfo; @XmlElement(required = true) protected TDbUserInfo dbNewUserInfo; @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 dbOldUserInfo property. * * @return * possible object is * {@link TDbUserInfo } * */ public TDbUserInfo getDbOldUserInfo() { return dbOldUserInfo; } /** * Sets the value of the dbOldUserInfo property. * * @param value * allowed object is * {@link TDbUserInfo } * */ public void setDbOldUserInfo(TDbUserInfo value) { this.dbOldUserInfo = value; } /** * Gets the value of the dbNewUserInfo property. * * @return * possible object is * {@link TDbUserInfo } * */ public TDbUserInfo getDbNewUserInfo() { return dbNewUserInfo; } /** * Sets the value of the dbNewUserInfo property. * * @param value * allowed object is * {@link TDbUserInfo } * */ public void setDbNewUserInfo(TDbUserInfo value) { this.dbNewUserInfo = 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