update the package name
[dmaap/messagerouter/messageservice.git] / src / main / java / org / onap / dmaap / JaxrsEchoService.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22  package org.onap.dmaap;
23
24 import javax.ws.rs.GET;
25 import javax.ws.rs.Path;
26 import javax.ws.rs.PathParam;
27 import javax.ws.rs.Produces;
28
29 import com.att.eelf.configuration.EELFLogger;
30 import com.att.eelf.configuration.EELFManager;
31
32
33 import com.att.ajsc.beans.PropertiesMapBean;
34 import org.onap.dmaap.filemonitor.ServicePropertiesMap;
35
36 /**
37  * Example JAX-RS Service
38  * @author rajashree.khare
39  *
40  */
41 @Path("/jaxrs-services")
42 public class JaxrsEchoService {
43   
44         /**
45          * Logger obj
46          */
47         /*private static final Logger LOGGER = Logger
48                         .getLogger(JaxrsEchoService.class);*/
49         
50         private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(JaxrsEchoService.class);
51         
52         /**
53     * Method ping 
54     * @param input input
55     * @return str
56     */
57         @GET
58     @Path("/echo/{input}")
59     @Produces("text/plain")
60     public String ping(@PathParam("input") String input) {
61         return "Hello, " + input + ".";
62     }
63     
64    /**
65     * Method to fetch property
66     * @param fileName file
67     * @param input input
68     * @return prop
69     */
70     @GET
71     @Path("/property/{fileName}/{input:.*}")
72     @Produces("text/plain")
73     public String getProperty(@PathParam("fileName") String fileName, @PathParam("input") String input) {
74         String val=null;
75         try {
76                 val = ServicePropertiesMap.getProperty(fileName, input);
77                 if(val == null || val.isEmpty() || val.length() < 1){
78                         val = PropertiesMapBean.getProperty(fileName, input);
79                 }
80         }
81         catch(Exception ex) {
82                 LOGGER.info("*** Error retrieving property "+input+": "+ex);
83                 
84         }        
85         if (val ==null) {
86                         return "Property is not available";
87         }
88         return "Property value is, " + val +".";
89     }  
90     
91 }