aboutsummaryrefslogtreecommitdiff
path: root/id.server/src/at/gv/egovernment/moa/id/iaik/pki/PKIProfileImpl.java
diff options
context:
space:
mode:
authorharald.bratko <harald.bratko@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-10-21 16:21:01 +0000
committerharald.bratko <harald.bratko@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-10-21 16:21:01 +0000
commit766142002f169f8dbb8a57001032cfe9fcee1184 (patch)
tree6b96b29a04b85a205fb75c25284b72dbc1df8ab3 /id.server/src/at/gv/egovernment/moa/id/iaik/pki/PKIProfileImpl.java
parentd964bdfe182c23d8bafbd4f3b73a1527a8377ded (diff)
downloadmoa-id-spss-766142002f169f8dbb8a57001032cfe9fcee1184.tar.gz
moa-id-spss-766142002f169f8dbb8a57001032cfe9fcee1184.tar.bz2
moa-id-spss-766142002f169f8dbb8a57001032cfe9fcee1184.zip
changes for OCSP
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@527 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'id.server/src/at/gv/egovernment/moa/id/iaik/pki/PKIProfileImpl.java')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/iaik/pki/PKIProfileImpl.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/id.server/src/at/gv/egovernment/moa/id/iaik/pki/PKIProfileImpl.java b/id.server/src/at/gv/egovernment/moa/id/iaik/pki/PKIProfileImpl.java
index 4d309c18c..e17715fc5 100644
--- a/id.server/src/at/gv/egovernment/moa/id/iaik/pki/PKIProfileImpl.java
+++ b/id.server/src/at/gv/egovernment/moa/id/iaik/pki/PKIProfileImpl.java
@@ -32,6 +32,11 @@ public class PKIProfileImpl extends ObservableImpl
* revocation checking;
*/
private boolean revocationChecking;
+
+ /**
+ * The trust profile identifier.
+ */
+ private String id;
/**
@@ -163,4 +168,17 @@ public class PKIProfileImpl extends ObservableImpl
return this.revocationChecking;
}
+ /**
+ * @see iaik.pki.store.truststore.TrustStoreProfile#getId()
+ */
+ public String getId() {
+ return id;
+ }
+ /**
+ * Sets the trust profile identifier.
+ * @param id The id to set.
+ */
+ public void setId(String id) {
+ this.id = id;
+ }
}