package de.fh_giessen.epr.wsregister.v1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Informationen über den Urheber einer Anfrage an das Registerverfahren: Angabe des Mandanten, Angabe des Anwenders und Nachweis der Berechtigung für die Anfrage. * *
Java class for TAufrufInfo complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="TAufrufInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MandantID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="UserName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Berechtigungsnachweis" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TAufrufInfo", propOrder = {
"mandantID",
"userName",
"berechtigungsnachweis"
})
public class TAufrufInfo {
@XmlElement(name = "MandantID", required = true)
protected String mandantID;
@XmlElement(name = "UserName", required = true)
protected String userName;
@XmlElement(name = "Berechtigungsnachweis", required = true)
protected byte[] berechtigungsnachweis;
/**
* Gets the value of the mandantID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMandantID() {
return mandantID;
}
/**
* Sets the value of the mandantID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMandantID(String value) {
this.mandantID = value;
}
/**
* Gets the value of the userName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserName() {
return userName;
}
/**
* Sets the value of the userName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserName(String value) {
this.userName = value;
}
/**
* Gets the value of the berechtigungsnachweis property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getBerechtigungsnachweis() {
return berechtigungsnachweis;
}
/**
* Sets the value of the berechtigungsnachweis property.
*
* @param value
* allowed object is
* byte[]
*/
public void setBerechtigungsnachweis(byte[] value) {
this.berechtigungsnachweis = ((byte[]) value);
}
}