From 9ce810c0b2fef9f70178dbeee8a3523755a2a260 Mon Sep 17 00:00:00 2001 From: Ade Lee Date: Sun, 13 May 2012 23:04:36 -0400 Subject: 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. --- .../certsrv/base/BadRequestDataException.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 base/common/src/com/netscape/certsrv/base/BadRequestDataException.java (limited to 'base/common/src/com/netscape/certsrv/base') 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); + } + +} -- cgit