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

cz.abclinuxu.datoveschranky.ws.db.TGetPasswInfoOutput 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;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for tGetPasswInfoOutput complex type. * *

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

 * <complexType name="tGetPasswInfoOutput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="pswExpDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="dbStatus" type="{http://isds.czechpoint.cz/v20}tDbReqStatus"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tGetPasswInfoOutput", propOrder = { "pswExpDate", "dbStatus" }) public class TGetPasswInfoOutput { @XmlElementRef(name = "pswExpDate", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false) protected JAXBElement pswExpDate; @XmlElement(required = true) protected TDbReqStatus dbStatus; /** * Gets the value of the pswExpDate property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >} * */ public JAXBElement getPswExpDate() { return pswExpDate; } /** * Sets the value of the pswExpDate property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >} * */ public void setPswExpDate(JAXBElement value) { this.pswExpDate = 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