aboutsummaryrefslogtreecommitdiff
path: root/spss.server/src/at/gv/egovernment/moa/spss/api/impl/SupplementProfileExplicitImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'spss.server/src/at/gv/egovernment/moa/spss/api/impl/SupplementProfileExplicitImpl.java')
-rw-r--r--spss.server/src/at/gv/egovernment/moa/spss/api/impl/SupplementProfileExplicitImpl.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/spss.server/src/at/gv/egovernment/moa/spss/api/impl/SupplementProfileExplicitImpl.java b/spss.server/src/at/gv/egovernment/moa/spss/api/impl/SupplementProfileExplicitImpl.java
deleted file mode 100644
index 78723fec2..000000000
--- a/spss.server/src/at/gv/egovernment/moa/spss/api/impl/SupplementProfileExplicitImpl.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package at.gv.egovernment.moa.spss.api.impl;
-
-import at.gv.egovernment.moa.spss.api.common.XMLDataObjectAssociation;
-import at.gv.egovernment.moa.spss.api.xmlverify.SupplementProfileExplicit;
-
-/**
- * Default implementation of <code>SupplementProfileExplicit</code>.
- *
- * @author Fatemeh Philippi
- * @version $Id$
- */
-public class SupplementProfileExplicitImpl implements SupplementProfileExplicit {
-
- /** Supplemental information for verifying a signature. */
- private XMLDataObjectAssociation supplement;
-
- /**
- * Sets the supplemental information for verifying a signature.
- *
- * @param supplement The supplemental information for verifying a signature.
- */
- public void setSupplementProfile(XMLDataObjectAssociation supplement) {
- this.supplement = supplement;
- }
-
- public XMLDataObjectAssociation getSupplementProfile() {
- return supplement;
- }
-
- /**
- * Gets the type of <code>SupplementProfile</code>.
- *
- * @return EXPLICIT_SUPPLEMENTPROFILE
- */
- public int getSupplementProfileType() {
- return EXPLICIT_SUPPLEMENTPROFILE;
- }
-
-}