summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/crud/config
diff options
context:
space:
mode:
authorRavi Geda <gravik@amdocs.com>2018-04-30 16:54:51 +0100
committerRavi Geda <gravik@amdocs.com>2018-05-01 12:59:23 +0100
commit92927f8985ae5f381143b8b295df2f466e4349ae (patch)
tree4fa5f38af258a4098f94cf10b22fd9ec5c545db9 /src/main/java/org/onap/crud/config
parent0bcc113d91c67424fd07cc4837bca50bba3dda60 (diff)
Migrate to Spring Boot
Convert from AJSC to Spring Boot micro service Change-Id: I17bed6d10a00b35dbc63f5dd2b93642b1b3eb7a5 Issue-ID: AAI-1040 Signed-off-by: Ravi Geda <gravik@amdocs.com>
Diffstat (limited to 'src/main/java/org/onap/crud/config')
-rw-r--r--src/main/java/org/onap/crud/config/JerseyConfig.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/main/java/org/onap/crud/config/JerseyConfig.java b/src/main/java/org/onap/crud/config/JerseyConfig.java
new file mode 100644
index 0000000..654ff81
--- /dev/null
+++ b/src/main/java/org/onap/crud/config/JerseyConfig.java
@@ -0,0 +1,39 @@
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 Amdocs
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.crud.config;
+
+import org.glassfish.jersey.server.ResourceConfig;
+import org.onap.crud.service.CrudRestService;
+import org.onap.crud.service.JaxrsEchoService;
+import org.springframework.stereotype.Component;
+
+/**
+ * Registers Crud Rest interface as JAX-RS endpoints.
+ */
+@Component
+public class JerseyConfig extends ResourceConfig {
+
+ public JerseyConfig(CrudRestService crudRestService, JaxrsEchoService jaxrsEchoService) {
+ register(crudRestService);
+ register(jaxrsEchoService);
+ }
+
+}