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

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

The newest version!

package cz.abclinuxu.datoveschranky.ws.db;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for tCheckDBOutput complex type. * *

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

 * <complexType name="tCheckDBOutput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dbState" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="dbStatus" type="{http://isds.czechpoint.cz/v20}tDbReqStatus"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tCheckDBOutput", propOrder = { "dbState", "dbStatus" }) public class TCheckDBOutput { protected Integer dbState; @XmlElement(required = true) protected TDbReqStatus dbStatus; /** * Gets the value of the dbState property. * * @return * possible object is * {@link Integer } * */ public Integer getDbState() { return dbState; } /** * Sets the value of the dbState property. * * @param value * allowed object is * {@link Integer } * */ public void setDbState(Integer value) { this.dbState = 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