3c27178c438570690c695d8cb5e9f98b9789489b
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / util / RestResponseUtil.java
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.util;
17
18 import javax.ws.rs.core.Response;
19 import javax.ws.rs.core.Response.Status;
20
21 public class RestResponseUtil {
22   
23   /**
24    * get http success entity.
25    */
26   public static Response getSuccessResponse(Object obj) {
27     if (obj != null) {
28       return Response.ok(obj).build();
29     } else {
30       return Response.ok().build();
31     }
32   }
33
34   public static Response getCreateSussceeResponse(Object obj) {
35     return Response.status(Status.CREATED).entity(obj).build();
36   }
37   
38   /**
39    * get http error entity.
40    */
41   public static Response getErrorResponse(Object obj) {
42     if (obj != null) {
43       return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(obj).build();
44     } else {
45       return Response.serverError().build();
46     }
47
48   }
49 }