2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.client.editor.rest.handling.bean;
23 import java.lang.reflect.Field;
24 import java.lang.reflect.Method;
27 * The base class for Beans.
29 public abstract class BeanBase {
30 // Recurring string constants
31 private static final String PROBLEM_RETRIEVING_FIELD_PREFIX = "Problem retrieving field called ('";
32 private static final String JSON_BEAN_SUFFIX = "') from JSON bean ";
35 private static final int GET_LENGTH = 3;
38 * Gets a named field from the bean.
40 * @param field the field name
41 * @return the value for the field
43 public String get(final String field) {
44 // use getter preferably
45 for (final Method method : this.getClass().getMethods()) {
46 if (method.getName().startsWith("get") && method.getName().length() == (field.length() + GET_LENGTH)
47 && method.getName().toLowerCase().endsWith(field.toLowerCase())) {
48 return invokeGetterMethod(field, method);
55 final Field f = this.getClass().getDeclaredField(field);
57 f.setAccessible(true);
58 return (String) (f.get(this));
60 } catch (final Exception e) {
61 throw new IllegalArgumentException(PROBLEM_RETRIEVING_FIELD_PREFIX + field + JSON_BEAN_SUFFIX + this,
65 throw new IllegalArgumentException(PROBLEM_RETRIEVING_FIELD_PREFIX + field + JSON_BEAN_SUFFIX + this);
69 * Invoke a getter method on a bean.
71 * @param field the field that the getter gets a value for
72 * @param method the method to invoke
74 private String invokeGetterMethod(final String field, final Method method) {
76 return (String) method.invoke(this);
77 } catch (final Exception e) {
78 throw new IllegalArgumentException(PROBLEM_RETRIEVING_FIELD_PREFIX + field + JSON_BEAN_SUFFIX + this, e);