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

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

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

 * <complexType name="tFindDBOuput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dbResults" type="{http://isds.czechpoint.cz/v20}tDbOwnersArray" minOccurs="0"/>
 *         <element name="dbStatus" type="{http://isds.czechpoint.cz/v20}tDbReqStatus"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tFindDBOuput", propOrder = { "dbResults", "dbStatus" }) public class TFindDBOuput { @XmlElementRef(name = "dbResults", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false) protected JAXBElement dbResults; @XmlElement(required = true) protected TDbReqStatus dbStatus; /** * Gets the value of the dbResults property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link TDbOwnersArray }{@code >} * */ public JAXBElement getDbResults() { return dbResults; } /** * Sets the value of the dbResults property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link TDbOwnersArray }{@code >} * */ public void setDbResults(JAXBElement value) { this.dbResults = value; } /** * Gets the value of the dbStatus property. * * @return * possible object is * {@link TDbReqStatus } * */ public TDbReqStatus getDbStatus() { return dbStatus; } /** * Sets the value of the dbStatus property. * * @param value * allowed object is * {@link TDbReqStatus } * */ public void setDbStatus(TDbReqStatus value) { this.dbStatus = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy