From 84c036b3bc6d8313b86317d752b92c417bd89d7f Mon Sep 17 00:00:00 2001 From: Michael O'Brien Date: Sun, 14 Jan 2018 19:03:01 -0500 Subject: initial logging project structure Issue-ID: LOG-120 Change-Id: If96346fa4f35b81ec01aacc087f96875011e5f82 Signed-off-by: Michael O'Brien --- .../src/main/java/META-INF/MANIFEST.MF | 3 ++ .../java/org/onap/logging/ApplicationService.java | 34 +++++++++++++ .../org/onap/logging/ApplicationServiceLocal.java | 27 ++++++++++ .../java/org/onap/logging/RestApplication.java | 42 +++++++++++++++ .../org/onap/logging/RestHealthServiceImpl.java | 56 ++++++++++++++++++++ .../java/org/onap/logging/RestServiceImpl.java | 59 ++++++++++++++++++++++ .../src/main/webapp/META-INF/MANIFEST.MF | 3 ++ .../src/main/webapp/WEB-INF/servlet-context.xml | 13 +++++ .../src/main/webapp/WEB-INF/spring.xml | 40 +++++++++++++++ .../logging-demo/src/main/webapp/WEB-INF/web.xml | 41 +++++++++++++++ reference/logging-demo/src/main/webapp/index.jsp | 18 +++++++ 11 files changed, 336 insertions(+) create mode 100644 reference/logging-demo/src/main/java/META-INF/MANIFEST.MF create mode 100644 reference/logging-demo/src/main/java/org/onap/logging/ApplicationService.java create mode 100644 reference/logging-demo/src/main/java/org/onap/logging/ApplicationServiceLocal.java create mode 100644 reference/logging-demo/src/main/java/org/onap/logging/RestApplication.java create mode 100644 reference/logging-demo/src/main/java/org/onap/logging/RestHealthServiceImpl.java create mode 100644 reference/logging-demo/src/main/java/org/onap/logging/RestServiceImpl.java create mode 100644 reference/logging-demo/src/main/webapp/META-INF/MANIFEST.MF create mode 100644 reference/logging-demo/src/main/webapp/WEB-INF/servlet-context.xml create mode 100644 reference/logging-demo/src/main/webapp/WEB-INF/spring.xml create mode 100644 reference/logging-demo/src/main/webapp/WEB-INF/web.xml create mode 100644 reference/logging-demo/src/main/webapp/index.jsp (limited to 'reference/logging-demo/src') diff --git a/reference/logging-demo/src/main/java/META-INF/MANIFEST.MF b/reference/logging-demo/src/main/java/META-INF/MANIFEST.MF new file mode 100644 index 0000000..254272e --- /dev/null +++ b/reference/logging-demo/src/main/java/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Class-Path: + diff --git a/reference/logging-demo/src/main/java/org/onap/logging/ApplicationService.java b/reference/logging-demo/src/main/java/org/onap/logging/ApplicationService.java new file mode 100644 index 0000000..09a8afb --- /dev/null +++ b/reference/logging-demo/src/main/java/org/onap/logging/ApplicationService.java @@ -0,0 +1,34 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.logging + * ================================================================================ + * Copyright © 2018 Amdocs + * All rights reserved. + * ================================================================================ + * 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.logging; + +import org.springframework.stereotype.Service; +@Service("daoFacade") +public class ApplicationService implements ApplicationServiceLocal { + + @Override + public Boolean health() { + Boolean health = true; + // TODO: check database + return health; + } + +} diff --git a/reference/logging-demo/src/main/java/org/onap/logging/ApplicationServiceLocal.java b/reference/logging-demo/src/main/java/org/onap/logging/ApplicationServiceLocal.java new file mode 100644 index 0000000..cc583c9 --- /dev/null +++ b/reference/logging-demo/src/main/java/org/onap/logging/ApplicationServiceLocal.java @@ -0,0 +1,27 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.logging + * ================================================================================ + * Copyright © 2018 Amdocs + * All rights reserved. + * ================================================================================ + * 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.logging; + +import java.util.List; + +public interface ApplicationServiceLocal { + Boolean health(); +} diff --git a/reference/logging-demo/src/main/java/org/onap/logging/RestApplication.java b/reference/logging-demo/src/main/java/org/onap/logging/RestApplication.java new file mode 100644 index 0000000..2b729ae --- /dev/null +++ b/reference/logging-demo/src/main/java/org/onap/logging/RestApplication.java @@ -0,0 +1,42 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.logging + * ================================================================================ + * Copyright © 2018 Amdocs + * All rights reserved. + * ================================================================================ + * 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.logging; + +import java.util.HashSet; +import java.util.Set; + +import javax.ws.rs.ApplicationPath; +import javax.ws.rs.core.Application; + +@ApplicationPath("read") +public class RestApplication extends Application { + + @Override + public Set> getClasses() { + Set> classes = new HashSet>(); + // http://127.0.0.1:8180/logging-demo/rest/health/health + // http://127.0.0.1:8180/logging-demo/rest/read/test + classes.add(RestServiceImpl.class); + classes.add(RestHealthServiceImpl.class); + return classes; + } +} diff --git a/reference/logging-demo/src/main/java/org/onap/logging/RestHealthServiceImpl.java b/reference/logging-demo/src/main/java/org/onap/logging/RestHealthServiceImpl.java new file mode 100644 index 0000000..24b4486 --- /dev/null +++ b/reference/logging-demo/src/main/java/org/onap/logging/RestHealthServiceImpl.java @@ -0,0 +1,56 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.logging + * ================================================================================ + * Copyright © 2018 Amdocs + * All rights reserved. + * ================================================================================ + * 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.logging; + +import java.util.List; +import javax.inject.Inject; +import javax.ws.rs.Consumes; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.Application; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.context.ApplicationContext; +import org.springframework.context.support.ClassPathXmlApplicationContext; +import org.springframework.stereotype.Component; +import org.springframework.stereotype.Service; +import org.springframework.test.context.transaction.TransactionConfiguration; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@Path("/health") +public class RestHealthServiceImpl extends Application { + @Inject + @Qualifier("daoFacade") + private ApplicationServiceLocal applicationServiceLocal; + + @GET + @Path("/health") + @Produces(MediaType.TEXT_HTML) + public String getHealth() { + return applicationServiceLocal.health().toString(); + } + +} + diff --git a/reference/logging-demo/src/main/java/org/onap/logging/RestServiceImpl.java b/reference/logging-demo/src/main/java/org/onap/logging/RestServiceImpl.java new file mode 100644 index 0000000..515662e --- /dev/null +++ b/reference/logging-demo/src/main/java/org/onap/logging/RestServiceImpl.java @@ -0,0 +1,59 @@ +/** + * ============LICENSE_START======================================================= + * org.onap.logging + * ================================================================================ + * Copyright © 2018 Amdocs + * All rights reserved. + * ================================================================================ + * 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.logging; + +import java.util.List; +import javax.inject.Inject; +import javax.ws.rs.Consumes; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.Application; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.context.ApplicationContext; +import org.springframework.context.support.ClassPathXmlApplicationContext; +import org.springframework.stereotype.Component; +import org.springframework.stereotype.Service; +import org.springframework.test.context.transaction.TransactionConfiguration; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@Path("/read") +public class RestServiceImpl extends Application { + @Inject + @Qualifier("daoFacade") + private ApplicationServiceLocal applicationServiceLocal; + + @GET + @Path("/test") + @Produces(MediaType.TEXT_HTML) + public String getTest() { + return "testing: " + applicationServiceLocal; + } + + private ApplicationServiceLocal getApplicationService() { + return applicationServiceLocal; + } +} + diff --git a/reference/logging-demo/src/main/webapp/META-INF/MANIFEST.MF b/reference/logging-demo/src/main/webapp/META-INF/MANIFEST.MF new file mode 100644 index 0000000..254272e --- /dev/null +++ b/reference/logging-demo/src/main/webapp/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Class-Path: + diff --git a/reference/logging-demo/src/main/webapp/WEB-INF/servlet-context.xml b/reference/logging-demo/src/main/webapp/WEB-INF/servlet-context.xml new file mode 100644 index 0000000..18b1154 --- /dev/null +++ b/reference/logging-demo/src/main/webapp/WEB-INF/servlet-context.xml @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/reference/logging-demo/src/main/webapp/WEB-INF/spring.xml b/reference/logging-demo/src/main/webapp/WEB-INF/spring.xml new file mode 100644 index 0000000..fd3d6ab --- /dev/null +++ b/reference/logging-demo/src/main/webapp/WEB-INF/spring.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + diff --git a/reference/logging-demo/src/main/webapp/WEB-INF/web.xml b/reference/logging-demo/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..dd62a9c --- /dev/null +++ b/reference/logging-demo/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,41 @@ + + + + 30 + + + index.jsp + + + + JAX-RS Tools Generated - Do not modify + JAX-RS Servlet + org.glassfish.jersey.servlet.ServletContainer + + javax.ws.rs.Application + org.onap.logging.RestApplication + + + jersey.config.server.provider.packages + org.onap.logging + + 1 + + + JAX-RS Servlet + /rest/* + + + + contextConfigLocation + /WEB-INF/spring.xml + + + + org.springframework.web.context.ContextLoaderListener + + + + org.springframework.web.context.request.RequestContextListener + + diff --git a/reference/logging-demo/src/main/webapp/index.jsp b/reference/logging-demo/src/main/webapp/index.jsp new file mode 100644 index 0000000..734e905 --- /dev/null +++ b/reference/logging-demo/src/main/webapp/index.jsp @@ -0,0 +1,18 @@ + + + + + + +Test8 + + + +Test + + + \ No newline at end of file -- cgit 1.2.3-korg