summaryrefslogtreecommitdiff
path: root/STAL/src
diff options
context:
space:
mode:
Diffstat (limited to 'STAL/src')
-rw-r--r--STAL/src/main/java/at/gv/egiz/stal/HashDataInput.java18
-rw-r--r--STAL/src/main/java/at/gv/egiz/stal/STALRequest.java13
-rw-r--r--STAL/src/main/java/at/gv/egiz/stal/STALResponse.java70
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;
+// }
}