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

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

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

 * <complexType name="tActivateInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="dbAccessDataId" type="{http://isds.czechpoint.cz/v20}tDbAccessDataId"/>
 *         <element name="dbID" type="{http://isds.czechpoint.cz/v20}tIdDb"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tActivateInput", propOrder = { "dbAccessDataId", "dbID" }) public class TActivateInput { @XmlElement(required = true) protected String dbAccessDataId; @XmlElement(required = true) protected String dbID; /** * Gets the value of the dbAccessDataId property. * * @return * possible object is * {@link String } * */ public String getDbAccessDataId() { return dbAccessDataId; } /** * Sets the value of the dbAccessDataId property. * * @param value * allowed object is * {@link String } * */ public void setDbAccessDataId(String value) { this.dbAccessDataId = value; } /** * Gets the value of the dbID property. * * @return * possible object is * {@link String } * */ public String getDbID() { return dbID; } /** * Sets the value of the dbID property. * * @param value * allowed object is * {@link String } * */ public void setDbID(String value) { this.dbID = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy