7a51c0fdedb9fce7c1d99e8604c541110d96422e
[msb/java-sdk.git] / example / src / main / java / org / onap / msb / sdk / httpclient / server / resources / AnimalResource.java
1 /*******************************************************************************
2  * Copyright 2017 ZTE, Inc. and others.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  * 
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * 
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  ******************************************************************************/
14 package org.onap.msb.sdk.httpclient.server.resources;
15
16 import javax.ws.rs.GET;
17 import javax.ws.rs.Path;
18 import javax.ws.rs.PathParam;
19 import javax.ws.rs.Produces;
20 import javax.ws.rs.core.MediaType;
21 import javax.ws.rs.core.Response;
22
23 import org.onap.msb.sdk.httpclient.common.Animal;
24
25
26 @Path("/animals")
27 public class AnimalResource {
28
29
30   @GET
31   @Path("/{name}")
32   @Produces(MediaType.APPLICATION_JSON)
33   public Response query(@PathParam("name") String name) {
34     return Response.ok(new Animal("animal", name, (int) System.currentTimeMillis() % 10)).build();
35   }
36
37
38 }