blob: cf2638eaaade90cde9e9fb0c06b31b932007ba71 [file] [log] [blame]
Rama-Huaweib711e5c2016-08-31 07:55:46 +05301/*
2 * Copyright 2016-present Open Networking Laboratory
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
17package org.onosproject.yms.app.yob;
18
19/**
20 * Represents common constant utility for YANG object builder.
21 */
22final class YobConstants {
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053023
Rama-Huaweib711e5c2016-08-31 07:55:46 +053024 private YobConstants() {
25 }
26
27 static final String FROM_STRING = "fromString";
28 static final String BUILD = "build";
29 static final String OP_PARAM = "OpParam";
30 static final String DEFAULT = "Default";
31 static final String ADD_TO = "addTo";
32 static final String VALUE_OF = "valueOf";
Vidyashree Rama6160be12016-11-24 13:43:31 +053033 static final String OP_TYPE = "OpType";
34 static final String ONOS_YANG_OP_TYPE = "OnosYangOpType";
Rama-Huaweib711e5c2016-08-31 07:55:46 +053035 static final String OF = "of";
36 static final String PERIOD = ".";
Vidyashree Ramaf463dc52016-10-06 12:46:33 +053037 static final String SPACE = " ";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053038 static final String ADD_AUGMENT_METHOD = "addYangAugmentedInfo";
Vidyashree Rama6160be12016-11-24 13:43:31 +053039 static final String YANG = "yang";
40 static final String JAVA_LANG = "java.lang";
41 static final String LEAF_IDENTIFIER = "LeafIdentifier";
42 static final String SELECT_LEAF = "selectLeaf";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053043
44 //Error strings
45 static final String E_NO_HANDLE_FOR_YDT = "No handler for YDT node";
46 static final String E_HAS_NO_CHILD = " does not have child ";
47 static final String E_SET_OP_TYPE_FAIL = "Failed to set Operation Type";
48 static final String E_FAIL_TO_BUILD = "Failed to build the object: ";
49 static final String L_FAIL_TO_BUILD = "Failed to build the object: {}";
50 static final String E_FAIL_TO_GET_FIELD = "Failed to get field for class: ";
51 static final String L_FAIL_TO_GET_FIELD =
52 "Failed to get field for class: {}";
53 static final String E_FAIL_TO_GET_METHOD =
54 "Failed to get method for class: ";
55 static final String L_FAIL_TO_GET_METHOD =
56 "Failed to get method for class: {}";
57 static final String E_FAIL_TO_LOAD_CLASS =
58 "Failed to load class for class: ";
59 static final String L_FAIL_TO_LOAD_CLASS =
60 "Failed to load class for class: {}";
61 static final String E_YDT_TYPE_IS_NOT_SUPPORT =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053062 "Given YDT type is not supported.";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053063 static final String E_FAIL_TO_CREATE_OBJ =
64 "Failed to create an object for class: ";
65 static final String L_FAIL_TO_CREATE_OBJ =
66 "Failed to create an object for class: {}";
67 static final String E_REFLECTION_FAIL_TO_CREATE_OBJ =
68 "Reflection failed to create an object for class: ";
69 static final String L_REFLECTION_FAIL_TO_CREATE_OBJ =
70 "Reflection failed to create an object for class: {}";
71 static final String E_FAIL_TO_LOAD_CONSTRUCTOR =
72 "Failed to load constructor for class: {}";
73 static final String E_FAIL_TO_INVOKE_METHOD =
74 "Failed to invoke method for class: ";
75 static final String L_FAIL_TO_INVOKE_METHOD =
76 "Failed to invoke method for class: {}";
77 static final String E_DATA_TYPE_NOT_SUPPORT =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053078 "Given data type is not supported.";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053079 static final String E_OBJ_IS_ALREADY_BUILT_NOT_FETCH =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053080 "Object is already built, cannot fetch builder";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053081 static final String E_BUILDER_IS_NOT_SET =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053082 "Builder is not yet set, cannot fetch it";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053083 static final String E_BUILT_OBJ_IS_NOT_SET =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053084 "Built object is not set";
Vidyashree Rama6160be12016-11-24 13:43:31 +053085 static final String E_OBJ_IS_ALREADY_BUILT_NOT_SET =
86 "Object is already built, cannot set builder";
87 static final String E_BUILDER_IS_NOT_ALREADY_SET =
88 "Builder is not already set";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053089 static final String E_OBJ_IS_NOT_SET_NOT_FETCH =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053090 "Builder is not yet set, cannot fetch it";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053091 static final String E_OBJ_IS_ALREADY_BUILT_NOT_BUILD =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053092 "Object is already built, cannot build again";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053093 static final String E_OBJ_BUILDING_WITHOUT_BUILDER =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053094 "Object building without builder";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053095 static final String E_MISSING_DATA_IN_NODE =
96 "YANG data tree is missing the data required for YOB";
97 static final String E_INVALID_DATA_TREE =
98 "YANG tree does not have a application root";
Vidyashree Rama6160be12016-11-24 13:43:31 +053099 static final String E_INVALID_EMPTY_DATA =
100 "Value for empty data type is invalid";
Rama-Huaweib711e5c2016-08-31 07:55:46 +0530101}