summaryrefslogtreecommitdiffstats
path: root/base/ocsp
diff options
context:
space:
mode:
Diffstat (limited to 'base/ocsp')
-rw-r--r--base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPApplication.java3
-rw-r--r--base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPInstallerService.java32
2 files changed, 33 insertions, 2 deletions
diff --git a/base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPApplication.java b/base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPApplication.java
index 688fec772..392d923f9 100644
--- a/base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPApplication.java
+++ b/base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPApplication.java
@@ -14,7 +14,6 @@ import org.dogtagpki.server.rest.MessageFormatInterceptor;
import org.dogtagpki.server.rest.SecurityDomainService;
import org.dogtagpki.server.rest.SelfTestService;
import org.dogtagpki.server.rest.SystemCertService;
-import org.dogtagpki.server.rest.SystemConfigService;
import org.dogtagpki.server.rest.UserService;
import com.netscape.certsrv.apps.CMS;
@@ -36,7 +35,7 @@ public class OCSPApplication extends Application {
classes.add(AuditService.class);
// installer
- classes.add(SystemConfigService.class);
+ classes.add(OCSPInstallerService.class);
// security domain
IConfigStore cs = CMS.getConfigStore();
diff --git a/base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPInstallerService.java b/base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPInstallerService.java
new file mode 100644
index 000000000..0ee5eb430
--- /dev/null
+++ b/base/ocsp/src/org/dogtagpki/server/ocsp/rest/OCSPInstallerService.java
@@ -0,0 +1,32 @@
+// --- BEGIN COPYRIGHT BLOCK ---
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; version 2 of the License.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+//
+// (C) 2014 Red Hat, Inc.
+// All rights reserved.
+// --- END COPYRIGHT BLOCK ---
+package org.dogtagpki.server.ocsp.rest;
+
+import org.dogtagpki.server.rest.SystemConfigService;
+
+import com.netscape.certsrv.base.EBaseException;
+
+/**
+ * @author alee
+ *
+ */
+public class OCSPInstallerService extends SystemConfigService {
+
+ public OCSPInstallerService() throws EBaseException {
+ }
+}