
cz.abclinuxu.datoveschranky.ws.dm.TGetAuthorOutput 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.dm;
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;
/**
* Java class for tGetAuthorOutput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tGetAuthorOutput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="userType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="authorName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="dmStatus" type="{http://isds.czechpoint.cz/v20}tStatus"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tGetAuthorOutput", propOrder = {
"userType",
"authorName",
"dmStatus"
})
public class TGetAuthorOutput {
@XmlElementRef(name = "userType", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false)
protected JAXBElement userType;
@XmlElementRef(name = "authorName", namespace = "http://isds.czechpoint.cz/v20", type = JAXBElement.class, required = false)
protected JAXBElement authorName;
@XmlElement(required = true)
protected TStatus dmStatus;
/**
* Gets the value of the userType property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getUserType() {
return userType;
}
/**
* Sets the value of the userType property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setUserType(JAXBElement value) {
this.userType = value;
}
/**
* Gets the value of the authorName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getAuthorName() {
return authorName;
}
/**
* Sets the value of the authorName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setAuthorName(JAXBElement value) {
this.authorName = value;
}
/**
* Gets the value of the dmStatus property.
*
* @return
* possible object is
* {@link TStatus }
*
*/
public TStatus getDmStatus() {
return dmStatus;
}
/**
* Sets the value of the dmStatus property.
*
* @param value
* allowed object is
* {@link TStatus }
*
*/
public void setDmStatus(TStatus value) {
this.dmStatus = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy