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

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

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

 * <complexType name="tActivateOutput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="userId" type="{http://isds.czechpoint.cz/v20}tUserID"/>
 *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="dbStatus" type="{http://isds.czechpoint.cz/v20}tDbReqStatus"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tActivateOutput", propOrder = { "userId", "password", "dbStatus" }) public class TActivateOutput { @XmlElement(required = true) protected String userId; @XmlElement(required = true) protected String password; @XmlElement(required = true) protected TDbReqStatus dbStatus; /** * Gets the value of the userId property. * * @return * possible object is * {@link String } * */ public String getUserId() { return userId; } /** * Sets the value of the userId property. * * @param value * allowed object is * {@link String } * */ public void setUserId(String value) { this.userId = value; } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = 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