
cz.abclinuxu.datoveschranky.ws.db.TDummyInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isds-web-services Show documentation
Show all versions of isds-web-services Show documentation
Entity classes generated from WSDL.
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 tDummyInput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tDummyInput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="dbDummy" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tDummyInput", propOrder = {
"dbDummy"
})
public class TDummyInput {
@XmlElement(required = true)
protected String dbDummy;
/**
* Gets the value of the dbDummy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDbDummy() {
return dbDummy;
}
/**
* Sets the value of the dbDummy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDbDummy(String value) {
this.dbDummy = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy