blob: 3b8d7287b9b9a2acb78c802882575f3fc73f22ed [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";
33 static final String OPERATION_TYPE = "onosYangNodeOperationType";
34 static final String OP_TYPE = "OnosYangNodeOperationType";
35 static final String OF = "of";
36 static final String PERIOD = ".";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053037 static final String ADD_AUGMENT_METHOD = "addYangAugmentedInfo";
38
39 //Error strings
40 static final String E_NO_HANDLE_FOR_YDT = "No handler for YDT node";
41 static final String E_HAS_NO_CHILD = " does not have child ";
42 static final String E_SET_OP_TYPE_FAIL = "Failed to set Operation Type";
43 static final String E_FAIL_TO_BUILD = "Failed to build the object: ";
44 static final String L_FAIL_TO_BUILD = "Failed to build the object: {}";
45 static final String E_FAIL_TO_GET_FIELD = "Failed to get field for class: ";
46 static final String L_FAIL_TO_GET_FIELD =
47 "Failed to get field for class: {}";
48 static final String E_FAIL_TO_GET_METHOD =
49 "Failed to get method for class: ";
50 static final String L_FAIL_TO_GET_METHOD =
51 "Failed to get method for class: {}";
52 static final String E_FAIL_TO_LOAD_CLASS =
53 "Failed to load class for class: ";
54 static final String L_FAIL_TO_LOAD_CLASS =
55 "Failed to load class for class: {}";
56 static final String E_YDT_TYPE_IS_NOT_SUPPORT =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053057 "Given YDT type is not supported.";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053058 static final String E_FAIL_TO_CREATE_OBJ =
59 "Failed to create an object for class: ";
60 static final String L_FAIL_TO_CREATE_OBJ =
61 "Failed to create an object for class: {}";
62 static final String E_REFLECTION_FAIL_TO_CREATE_OBJ =
63 "Reflection failed to create an object for class: ";
64 static final String L_REFLECTION_FAIL_TO_CREATE_OBJ =
65 "Reflection failed to create an object for class: {}";
66 static final String E_FAIL_TO_LOAD_CONSTRUCTOR =
67 "Failed to load constructor for class: {}";
68 static final String E_FAIL_TO_INVOKE_METHOD =
69 "Failed to invoke method for class: ";
70 static final String L_FAIL_TO_INVOKE_METHOD =
71 "Failed to invoke method for class: {}";
72 static final String E_DATA_TYPE_NOT_SUPPORT =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053073 "Given data type is not supported.";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053074 static final String E_OBJ_IS_ALREADY_BUILT_NOT_FETCH =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053075 "Object is already built, cannot fetch builder";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053076 static final String E_BUILDER_IS_NOT_SET =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053077 "Builder is not yet set, cannot fetch it";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053078 static final String E_BUILT_OBJ_IS_NOT_SET =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053079 "Built object is not set";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053080 static final String E_OBJ_IS_NOT_SET_NOT_FETCH =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053081 "Builder is not yet set, cannot fetch it";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053082 static final String E_OBJ_IS_ALREADY_BUILT_NOT_BUILD =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053083 "Object is already built, cannot build again";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053084 static final String E_OBJ_BUILDING_WITHOUT_BUILDER =
Rama-Huaweib711e5c2016-08-31 07:55:46 +053085 "Object building without builder";
VinodKumarS-Huawei7b1733c2016-10-25 13:44:26 +053086 static final String E_MISSING_DATA_IN_NODE =
87 "YANG data tree is missing the data required for YOB";
88 static final String E_INVALID_DATA_TREE =
89 "YANG tree does not have a application root";
Rama-Huaweib711e5c2016-08-31 07:55:46 +053090}