88df8d168076c57158d7fa8fe6709f736bda0a93
[aai/gizmo.git] / src / main / java / org / onap / crud / util / CrudServiceUtil.java
1 /**
2  * ============LICENSE_START=======================================================
3  * Gizmo
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *    http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  *
22  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23  */
24 package org.onap.crud.util;
25
26 import org.onap.aaiutils.oxm.OxmModelLoader;
27 import org.onap.crud.exception.CrudException;
28 import org.onap.schema.RelationshipSchemaLoader;
29
30 import javax.ws.rs.core.Response.Status;
31
32 public class CrudServiceUtil {
33
34
35   public static Object validateFieldType(String value, Class clazz) throws CrudException {
36     try {
37       if (clazz.isAssignableFrom(Integer.class)) {
38         return Integer.parseInt(value);
39       } else if (clazz.isAssignableFrom(Long.class)) {
40         return Long.parseLong(value);
41       } else if (clazz.isAssignableFrom(Float.class)) {
42         return Float.parseFloat(value);
43       } else if (clazz.isAssignableFrom(Double.class)) {
44         return Double.parseDouble(value);
45       } else if (clazz.isAssignableFrom(Boolean.class)) {
46                   
47                 // If the value is an IN/OUT direction, this gets seen as a boolean, so
48         // check for that first.
49         if (value.equals("OUT") || value.equals("IN")) {
50           return value;
51         }
52                 
53         if (!value.equals("true") && !value.equals("false")) {
54           throw new CrudException("Invalid propertry value: " + value, Status.BAD_REQUEST);
55         }
56         return Boolean.parseBoolean(value);
57       } else {
58         return value;
59       }
60     } catch (Exception e) {
61       throw new CrudException("Invalid property value: " + value, Status.BAD_REQUEST);
62     }
63   }
64
65   public static void loadModels() throws CrudException {
66     // load the schemas
67     try {
68       OxmModelLoader.loadModels();
69     } catch (Exception e) {
70       throw new CrudException(e);
71     }
72     RelationshipSchemaLoader.loadModels();
73   }
74 }