aboutsummaryrefslogtreecommitdiff
path: root/spss.server/src/at/gv/egovernment/moa/spss/api/SPSSFactory.java
diff options
context:
space:
mode:
authorgregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d>2003-11-11 22:12:44 +0000
committergregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d>2003-11-11 22:12:44 +0000
commitbc620256eb9b4dc6a33244b1105e58773358dbe6 (patch)
tree288e488a376feff93fdfad4f26703549121f6da9 /spss.server/src/at/gv/egovernment/moa/spss/api/SPSSFactory.java
parent4ab6ea1ea67551b11a00613fdc21449f0d9c9c03 (diff)
downloadmoa-id-spss-bc620256eb9b4dc6a33244b1105e58773358dbe6.tar.gz
moa-id-spss-bc620256eb9b4dc6a33244b1105e58773358dbe6.tar.bz2
moa-id-spss-bc620256eb9b4dc6a33244b1105e58773358dbe6.zip
Feature 41 implementiert.
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@50 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.server/src/at/gv/egovernment/moa/spss/api/SPSSFactory.java')
-rw-r--r--spss.server/src/at/gv/egovernment/moa/spss/api/SPSSFactory.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/spss.server/src/at/gv/egovernment/moa/spss/api/SPSSFactory.java b/spss.server/src/at/gv/egovernment/moa/spss/api/SPSSFactory.java
index 178a45273..dfa8927e1 100644
--- a/spss.server/src/at/gv/egovernment/moa/spss/api/SPSSFactory.java
+++ b/spss.server/src/at/gv/egovernment/moa/spss/api/SPSSFactory.java
@@ -57,6 +57,7 @@ import at.gv.egovernment.moa.spss.api.xmlverify.VerifyXMLSignatureResponse;
* this instance, concrete MOA SP/SS API object can be created.
*
* @author Patrick Peck
+ * @author Gregor Karlinger
* @version $Id$
*/
public abstract class SPSSFactory {
@@ -779,6 +780,22 @@ public abstract class SPSSFactory {
String referenceURI);
/**
+ * Create a new <code>Content</code> object containing location reference data.
+ *
+ * @param locationReferenceURI a URI pointing to the actual remote location of the content.
+ *
+ * @param referenceURI An URI identifying the data. May be <code>null</code>.
+ *
+ * @return The <code>Content</code> object containing the data.
+ *
+ * @pre locationReferenceURI != null
+ * @post return != null
+ */
+ public abstract Content createContent(
+ String locationReferenceURI,
+ String referenceURI);
+
+ /**
* Create a new <code>Content</code> object containing XML data.
*
* @param xmlData The XML data contained in the new <code>Content</code>.