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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *
Java class for anonymous complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AufrufInfo" type="{http://www.fh-giessen.de/epr/WSRegister/v1}TAufrufInfo"/>
* <element name="UserInfoSchreiben" type="{http://www.fh-giessen.de/epr/WSRegister/v1}TUserInfoSchreiben"/>
* <element name="Berechtigungsnachweis" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"aufrufInfo",
"userInfoSchreiben",
"berechtigungsnachweis"
})
@XmlRootElement(name = "CreateUser")
public class CreateUser {
@XmlElement(name = "AufrufInfo", required = true)
protected TAufrufInfo aufrufInfo;
@XmlElement(name = "UserInfoSchreiben", required = true)
protected TUserInfoSchreiben userInfoSchreiben;
@XmlElement(name = "Berechtigungsnachweis", required = true)
protected byte[] berechtigungsnachweis;
/**
* Gets the value of the aufrufInfo property.
*
* @return
* possible object is
* {@link TAufrufInfo }
*
*/
public TAufrufInfo getAufrufInfo() {
return aufrufInfo;
}
/**
* Sets the value of the aufrufInfo property.
*
* @param value
* allowed object is
* {@link TAufrufInfo }
*
*/
public void setAufrufInfo(TAufrufInfo value) {
this.aufrufInfo = value;
}
/**
* Gets the value of the userInfoSchreiben property.
*
* @return
* possible object is
* {@link TUserInfoSchreiben }
*
*/
public TUserInfoSchreiben getUserInfoSchreiben() {
return userInfoSchreiben;
}
/**
* Sets the value of the userInfoSchreiben property.
*
* @param value
* allowed object is
* {@link TUserInfoSchreiben }
*
*/
public void setUserInfoSchreiben(TUserInfoSchreiben value) {
this.userInfoSchreiben = 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);
}
}