diff options
Diffstat (limited to 'STAL/src')
4 files changed, 94 insertions, 0 deletions
| diff --git a/STAL/src/main/java/at/gv/egiz/stal/STALRequest.java b/STAL/src/main/java/at/gv/egiz/stal/STALRequest.java index 226ac277..70712b4f 100644 --- a/STAL/src/main/java/at/gv/egiz/stal/STALRequest.java +++ b/STAL/src/main/java/at/gv/egiz/stal/STALRequest.java @@ -48,6 +48,7 @@ import javax.xml.bind.annotation.XmlType;  //    SignRequest.class,  //    InfoboxReadRequest.class,  //    QuitRequest.class +//    StatusRequest.class  //})  public abstract class STALRequest { diff --git a/STAL/src/main/java/at/gv/egiz/stal/STALResponse.java b/STAL/src/main/java/at/gv/egiz/stal/STALResponse.java index f561a2aa..21a820c0 100644 --- a/STAL/src/main/java/at/gv/egiz/stal/STALResponse.java +++ b/STAL/src/main/java/at/gv/egiz/stal/STALResponse.java @@ -53,6 +53,7 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;  //    ErrorResponse.class,  //    SignResponse.class,  //    InfoboxReadResponse.class +//    StatusResponse.class  //})  public abstract class STALResponse { diff --git a/STAL/src/main/java/at/gv/egiz/stal/StatusRequest.java b/STAL/src/main/java/at/gv/egiz/stal/StatusRequest.java new file mode 100644 index 00000000..ef790ad8 --- /dev/null +++ b/STAL/src/main/java/at/gv/egiz/stal/StatusRequest.java @@ -0,0 +1,32 @@ + +package at.gv.egiz.stal; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + * <p>Java class for StatusRequestType complex type. + *  + * <p>The following schema fragment specifies the expected content contained within this class. + *  + * <pre> + * <complexType name="StatusRequestType"> + *   <complexContent> + *     <extension base="{http://www.egiz.gv.at/stal}RequestType"> + *     </extension> + *   </complexContent> + * </complexType> + * </pre> + *  + *  + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StatusRequestType") +public class StatusRequest +    extends STALRequest +{ + + +} diff --git a/STAL/src/main/java/at/gv/egiz/stal/StatusResponse.java b/STAL/src/main/java/at/gv/egiz/stal/StatusResponse.java new file mode 100644 index 00000000..bd31ac83 --- /dev/null +++ b/STAL/src/main/java/at/gv/egiz/stal/StatusResponse.java @@ -0,0 +1,60 @@ + +package at.gv.egiz.stal; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlAttribute; +import javax.xml.bind.annotation.XmlType; + + +/** + * <p>Java class for StatusResponseType complex type. + *  + * <p>The following schema fragment specifies the expected content contained within this class. + *  + * <pre> + * <complexType name="StatusResponseType"> + *   <complexContent> + *     <extension base="{http://www.egiz.gv.at/stal}ResponseType"> + *       <attribute name="cardReady" type="{http://www.w3.org/2001/XMLSchema}boolean" /> + *     </extension> + *   </complexContent> + * </complexType> + * </pre> + *  + *  + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StatusResponseType") +public class StatusResponse +    extends STALResponse +{ + +    @XmlAttribute +    protected Boolean cardReady; + +    /** +     * Gets the value of the cardReady property. +     *  +     * @return +     *     possible object is +     *     {@link Boolean } +     *      +     */ +    public Boolean isCardReady() { +        return cardReady; +    } + +    /** +     * Sets the value of the cardReady property. +     *  +     * @param value +     *     allowed object is +     *     {@link Boolean } +     *      +     */ +    public void setCardReady(Boolean value) { +        this.cardReady = value; +    } + +} | 
