update the package name
[dmaap/messagerouter/messageservice.git] / src / main / java / org / onap / dmaap / JaxrsUserService.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 import java.util.Map;
29 import java.util.HashMap;
30
31 /**
32  * Example JAX-RS User Service
33  * @author rajashree.khare
34  *
35  */
36 @Path("/user")
37 public class JaxrsUserService {
38         
39         private static final Map<String,String> userIdToNameMap;
40         static {
41                 userIdToNameMap = new HashMap<String,String>();
42                 userIdToNameMap.put("dw113c","Doug Wait");
43                 userIdToNameMap.put("so401q","Stuart O'Day");
44         }
45         
46     /**
47      * Method to fetch user details
48      * @param userId user
49      * @return userDetails
50      */
51         @GET
52     @Path("/{userId}")
53     @Produces("text/plain")
54     public String lookupUser(@PathParam("userId") String userId) {
55         String name = userIdToNameMap.get(userId);
56         return name != null ? name : "unknown id";
57     }
58     
59 }