aboutsummaryrefslogtreecommitdiff
path: root/pdf-as-common/src/main/java/at/gv/egiz/pdfas/api/ws/PDFASPropertyEntry.java
diff options
context:
space:
mode:
authorAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2014-10-16 09:43:49 +0200
committerAndreas Fitzek <andreas.fitzek@iaik.tugraz.at>2014-10-16 09:43:49 +0200
commit3c4eac027bfd68bfce63a2eed010ccc2b7310802 (patch)
tree507f8586045b57e4457da23ce7aedca6a497a913 /pdf-as-common/src/main/java/at/gv/egiz/pdfas/api/ws/PDFASPropertyEntry.java
parent00894355450179bea4b56e0abcf16243964ff286 (diff)
downloadpdf-as-4-3c4eac027bfd68bfce63a2eed010ccc2b7310802.tar.gz
pdf-as-4-3c4eac027bfd68bfce63a2eed010ccc2b7310802.tar.bz2
pdf-as-4-3c4eac027bfd68bfce63a2eed010ccc2b7310802.zip
PreProcessor Interface added and API rebuild
Diffstat (limited to 'pdf-as-common/src/main/java/at/gv/egiz/pdfas/api/ws/PDFASPropertyEntry.java')
-rw-r--r--pdf-as-common/src/main/java/at/gv/egiz/pdfas/api/ws/PDFASPropertyEntry.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/pdf-as-common/src/main/java/at/gv/egiz/pdfas/api/ws/PDFASPropertyEntry.java b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/api/ws/PDFASPropertyEntry.java
new file mode 100644
index 00000000..8e6025f3
--- /dev/null
+++ b/pdf-as-common/src/main/java/at/gv/egiz/pdfas/api/ws/PDFASPropertyEntry.java
@@ -0,0 +1,27 @@
+package at.gv.egiz.pdfas.api.ws;
+
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+@XmlType(name="PropertyEntry")
+public class PDFASPropertyEntry {
+ String key;
+ String value;
+
+ @XmlElement(required = true, nillable = false, name="key")
+ public String getKey() {
+ return key;
+ }
+
+ public void setKey(String key) {
+ this.key = key;
+ }
+
+ @XmlElement(required = true, nillable = false, name="value")
+ public String getValue() {
+ return value;
+ }
+ public void setvalue(String value) {
+ this.value = value;
+ }
+}