summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv
diff options
context:
space:
mode:
authorAde Lee <alee@redhat.com>2012-05-13 23:04:36 -0400
committerAde Lee <alee@redhat.com>2012-07-03 13:58:45 -0400
commit9ce810c0b2fef9f70178dbeee8a3523755a2a260 (patch)
treea25cd9e9969898506ed2a4cb17a3cfbeb68496cf /base/common/src/com/netscape/certsrv
parent0f3451befbc14bd6ec29d9e1e3845f970f288653 (diff)
downloadpki-9ce810c0b2fef9f70178dbeee8a3523755a2a260.tar.gz
pki-9ce810c0b2fef9f70178dbeee8a3523755a2a260.tar.xz
pki-9ce810c0b2fef9f70178dbeee8a3523755a2a260.zip
Adding restful interface to create certificate requests and issue certificates.
Refactored ProfileSubmitServlet to make the flow clearer. Both the legacy servlets and the new RESTful servlets use common ProfileProcessor objects that contain the main business logic, so that the amount of duplicated code is minimized. Refactored ProfileProcessServlet to use the new common classes. Addressed review comments. Removed an unneeded class and reverted some unneeded jaxb annotations. Added factory methods.
Diffstat (limited to 'base/common/src/com/netscape/certsrv')
-rw-r--r--base/common/src/com/netscape/certsrv/base/BadRequestDataException.java24
-rw-r--r--base/common/src/com/netscape/certsrv/property/Descriptor.java17
-rw-r--r--base/common/src/com/netscape/certsrv/request/RequestId.java4
3 files changed, 45 insertions, 0 deletions
diff --git a/base/common/src/com/netscape/certsrv/base/BadRequestDataException.java b/base/common/src/com/netscape/certsrv/base/BadRequestDataException.java
new file mode 100644
index 000000000..268221eae
--- /dev/null
+++ b/base/common/src/com/netscape/certsrv/base/BadRequestDataException.java
@@ -0,0 +1,24 @@
+package com.netscape.certsrv.base;
+
+public class BadRequestDataException extends EBaseException {
+
+ private static final long serialVersionUID = -8401421856920994265L;
+
+
+ public BadRequestDataException(String msgFormat) {
+ super(msgFormat);
+ }
+
+ public BadRequestDataException(String msgFormat, Exception param) {
+ super(msgFormat, param);
+ }
+
+ public BadRequestDataException(String msgFormat, Object[] params) {
+ super(msgFormat, params);
+ }
+
+ public BadRequestDataException(String msgFormat, String param) {
+ super(msgFormat, param);
+ }
+
+}
diff --git a/base/common/src/com/netscape/certsrv/property/Descriptor.java b/base/common/src/com/netscape/certsrv/property/Descriptor.java
index 4b2baf561..d3048e0b9 100644
--- a/base/common/src/com/netscape/certsrv/property/Descriptor.java
+++ b/base/common/src/com/netscape/certsrv/property/Descriptor.java
@@ -19,12 +19,19 @@ package com.netscape.certsrv.property;
import java.util.Locale;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlRootElement;
+
+
/**
* This interface represents a property descriptor. A descriptor
* includes information that describe a property.
*
* @version $Revision$, $Date$
*/
+@XmlRootElement
+@XmlAccessorType(XmlAccessType.FIELD)
public class Descriptor implements IDescriptor {
protected String mSyntax = null;
@@ -32,6 +39,10 @@ public class Descriptor implements IDescriptor {
protected String mDescription = null;
protected String mDef = null;
+ public Descriptor() {
+ // required for JAX-B
+ }
+
/**
* Constructs a descriptor.
*
@@ -90,4 +101,10 @@ public class Descriptor implements IDescriptor {
public String getDescription(Locale locale) {
return mDescription;
}
+
+ @Override
+ public String toString() {
+ return "Descriptor [mSyntax=" + mSyntax + ", mConstraint=" + mConstraint + ", mDescription=" + mDescription
+ + ", mDef=" + mDef + "]";
+ }
}
diff --git a/base/common/src/com/netscape/certsrv/request/RequestId.java b/base/common/src/com/netscape/certsrv/request/RequestId.java
index 795fdaa2a..8cd8c5711 100644
--- a/base/common/src/com/netscape/certsrv/request/RequestId.java
+++ b/base/common/src/com/netscape/certsrv/request/RequestId.java
@@ -31,6 +31,10 @@ public class RequestId {
protected BigInteger value;
+ public RequestId() {
+ // required for jaxb
+ }
+
/**
* Creates a new RequestId from its string representation.
* <p>