diff options
author | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2003-11-26 17:08:12 +0000 |
---|---|---|
committer | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2003-11-26 17:08:12 +0000 |
commit | cd3d7bc859c07dadb47219c1a38af1d3b8981a52 (patch) | |
tree | a64d24d2980eeb1c5015fcc3130193f8c2c7d786 /spss.server/src/at/gv/egovernment/moa/spss/api/impl | |
parent | b548b9859413b3a974a5bad900c20fef4ae058d4 (diff) | |
download | moa-id-spss-cd3d7bc859c07dadb47219c1a38af1d3b8981a52.tar.gz moa-id-spss-cd3d7bc859c07dadb47219c1a38af1d3b8981a52.tar.bz2 moa-id-spss-cd3d7bc859c07dadb47219c1a38af1d3b8981a52.zip |
Zwischenstand Implementierung Feature 54.tags/Build-1.2.0.D02-svn
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@63 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.server/src/at/gv/egovernment/moa/spss/api/impl')
-rw-r--r-- | spss.server/src/at/gv/egovernment/moa/spss/api/impl/MetaInfoImpl.java | 16 | ||||
-rw-r--r-- | spss.server/src/at/gv/egovernment/moa/spss/api/impl/SPSSFactoryImpl.java | 4 |
2 files changed, 19 insertions, 1 deletions
diff --git a/spss.server/src/at/gv/egovernment/moa/spss/api/impl/MetaInfoImpl.java b/spss.server/src/at/gv/egovernment/moa/spss/api/impl/MetaInfoImpl.java index c435dd8fd..93aceb033 100644 --- a/spss.server/src/at/gv/egovernment/moa/spss/api/impl/MetaInfoImpl.java +++ b/spss.server/src/at/gv/egovernment/moa/spss/api/impl/MetaInfoImpl.java @@ -16,6 +16,8 @@ public class MetaInfoImpl implements MetaInfo { private String description; /** Descriptive XML content. */ private NodeList anyElements; + /** Type information for XML signature creation */ + private String type; /** * Sets the MIME type. @@ -56,4 +58,18 @@ public class MetaInfoImpl implements MetaInfo { return anyElements; } + /** + * Sets the XML signature creation type information. + * + * @param type the XML signature creation type information to set. + */ + public void setType(String type) { + this.type = type; + } + + public String getType() { + return type; + } + + } diff --git a/spss.server/src/at/gv/egovernment/moa/spss/api/impl/SPSSFactoryImpl.java b/spss.server/src/at/gv/egovernment/moa/spss/api/impl/SPSSFactoryImpl.java index a953c2af3..bf15bf37e 100644 --- a/spss.server/src/at/gv/egovernment/moa/spss/api/impl/SPSSFactoryImpl.java +++ b/spss.server/src/at/gv/egovernment/moa/spss/api/impl/SPSSFactoryImpl.java @@ -472,11 +472,13 @@ public class SPSSFactoryImpl extends SPSSFactory { public MetaInfo createMetaInfo( String mimeType, String description, - NodeList otherInfo) { + NodeList otherInfo, + String type) { MetaInfoImpl metaInfo = new MetaInfoImpl(); metaInfo.setMimeType(mimeType); metaInfo.setDescription(description); metaInfo.setAnyElements(otherInfo); + metaInfo.setType(type); return metaInfo; } |