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

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

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

 * <complexType name="tNewAccDataInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dbOwnerInfo" type="{http://isds.czechpoint.cz/v20}tDbOwnerInfo"/>
 *         <element name="dbUserInfo" type="{http://isds.czechpoint.cz/v20}tDbUserInfo"/>
 *         <element name="dbFeePaid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="dbVirtual" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <group ref="{http://isds.czechpoint.cz/v20}gExtApproval"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tNewAccDataInput", propOrder = { "dbOwnerInfo", "dbUserInfo", "dbFeePaid", "dbVirtual", "email", "dbApproved", "dbExternRefNumber" }) public class TNewAccDataInput { @XmlElement(required = true) protected TDbOwnerInfo dbOwnerInfo; @XmlElement(required = true) protected TDbUserInfo dbUserInfo; protected boolean dbFeePaid; protected Boolean dbVirtual; @XmlElementRef(name = "email", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false) protected JAXBElement email; @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 dbUserInfo property. * * @return * possible object is * {@link TDbUserInfo } * */ public TDbUserInfo getDbUserInfo() { return dbUserInfo; } /** * Sets the value of the dbUserInfo property. * * @param value * allowed object is * {@link TDbUserInfo } * */ public void setDbUserInfo(TDbUserInfo value) { this.dbUserInfo = value; } /** * Gets the value of the dbFeePaid property. * */ public boolean isDbFeePaid() { return dbFeePaid; } /** * Sets the value of the dbFeePaid property. * */ public void setDbFeePaid(boolean value) { this.dbFeePaid = value; } /** * Gets the value of the dbVirtual property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDbVirtual() { return dbVirtual; } /** * Sets the value of the dbVirtual property. * * @param value * allowed object is * {@link Boolean } * */ public void setDbVirtual(Boolean value) { this.dbVirtual = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setEmail(JAXBElement value) { this.email = 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