diff options
| author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-09-30 13:54:54 +0000 | 
|---|---|---|
| committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-09-30 13:54:54 +0000 | 
| commit | d0879e9058943c6afa1912ccbeae936db2811f26 (patch) | |
| tree | 66b7c802a9d8d7c8d0d075a563aac852ce1b500f /STAL/src/main/java/at | |
| parent | e3f253ed3dc0fa9078d48b74955f6f3b8d6490a4 (diff) | |
| download | mocca-d0879e9058943c6afa1912ccbeae936db2811f26.tar.gz mocca-d0879e9058943c6afa1912ccbeae936db2811f26.tar.bz2 mocca-d0879e9058943c6afa1912ccbeae936db2811f26.zip | |
backport to JAXWS2.0
STALService initial connect()
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@76 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'STAL/src/main/java/at')
| -rw-r--r-- | STAL/src/main/java/at/gv/egiz/stal/HashDataInput.java | 18 | ||||
| -rw-r--r-- | STAL/src/main/java/at/gv/egiz/stal/STALRequest.java | 13 | ||||
| -rw-r--r-- | STAL/src/main/java/at/gv/egiz/stal/STALResponse.java | 70 | 
3 files changed, 57 insertions, 44 deletions
| diff --git a/STAL/src/main/java/at/gv/egiz/stal/HashDataInput.java b/STAL/src/main/java/at/gv/egiz/stal/HashDataInput.java index 1c648531..62c25fc4 100644 --- a/STAL/src/main/java/at/gv/egiz/stal/HashDataInput.java +++ b/STAL/src/main/java/at/gv/egiz/stal/HashDataInput.java @@ -1,7 +1,19 @@  /* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ +* Copyright 2008 Federal Chancellery Austria and +* Graz University of Technology +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +*     http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/  package at.gv.egiz.stal; 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 0c3f88c2..226ac277 100644 --- a/STAL/src/main/java/at/gv/egiz/stal/STALRequest.java +++ b/STAL/src/main/java/at/gv/egiz/stal/STALRequest.java @@ -19,7 +19,8 @@ package at.gv.egiz.stal;  import javax.xml.bind.annotation.XmlAccessType;  import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSeeAlso; +//import javax.xml.bind.annotation.XmlSeeAlso; +import javax.xml.bind.annotation.XmlTransient;  import javax.xml.bind.annotation.XmlType; @@ -43,11 +44,11 @@ import javax.xml.bind.annotation.XmlType;   */  @XmlAccessorType(XmlAccessType.FIELD)  @XmlType(name = "RequestType") -@XmlSeeAlso({ -    SignRequest.class, -    InfoboxReadRequest.class, -    QuitRequest.class -}) +//@XmlSeeAlso({ +//    SignRequest.class, +//    InfoboxReadRequest.class, +//    QuitRequest.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 91ef3c24..f561a2aa 100644 --- a/STAL/src/main/java/at/gv/egiz/stal/STALResponse.java +++ b/STAL/src/main/java/at/gv/egiz/stal/STALResponse.java @@ -22,7 +22,7 @@ import javax.xml.bind.annotation.XmlAccessorType;  import javax.xml.bind.annotation.XmlAttribute;  import javax.xml.bind.annotation.XmlID;  import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlSeeAlso; +//import javax.xml.bind.annotation.XmlSeeAlso;  import javax.xml.bind.annotation.XmlType;  import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; @@ -49,41 +49,41 @@ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;   */  @XmlAccessorType(XmlAccessType.FIELD)  @XmlType(name = "ResponseType") -@XmlSeeAlso({ -    ErrorResponse.class, -    SignResponse.class, -    InfoboxReadResponse.class -}) +//@XmlSeeAlso({ +//    ErrorResponse.class, +//    SignResponse.class, +//    InfoboxReadResponse.class +//})  public abstract class STALResponse { -    @XmlAttribute(name = "Id") -    @XmlJavaTypeAdapter(CollapsedStringAdapter.class) -    @XmlID -    @XmlSchemaType(name = "ID") -    protected String id; - -    /** -     * Gets the value of the id property. -     *  -     * @return -     *     possible object is -     *     {@link String } -     *      -     */ -    public String getId() { -        return id; -    } - -    /** -     * Sets the value of the id property. -     *  -     * @param value -     *     allowed object is -     *     {@link String } -     *      -     */ -    public void setId(String value) { -        this.id = value; -    } +//    @XmlAttribute(name = "Id") +//    @XmlJavaTypeAdapter(CollapsedStringAdapter.class) +//    @XmlID +//    @XmlSchemaType(name = "ID") +//    protected String id; +// +//    /** +//     * Gets the value of the id property. +//     *  +//     * @return +//     *     possible object is +//     *     {@link String } +//     *      +//     */ +//    public String getId() { +//        return id; +//    } +// +//    /** +//     * Sets the value of the id property. +//     *  +//     * @param value +//     *     allowed object is +//     *     {@link String } +//     *      +//     */ +//    public void setId(String value) { +//        this.id = value; +//    }  } | 
