blob: 8a0d7395422335b08bba041b028a559e87cf9735 [file] [log] [blame]
VinodKumarS-Huawei37316ae2017-01-11 16:11:42 +05301/*
Brian O'Connor72b2df22017-08-03 18:48:28 -07002 * Copyright 2016-present Open Networking Foundation
VinodKumarS-Huawei37316ae2017-01-11 16:11:42 +05303 *
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.yang.model;
18
19/**
20 * Constants used in model package.
21 */
sonugupta-huaweice7ff812017-02-13 19:37:20 +053022public final class ModelConstants {
23 public static final String INCOMPLETE_SCHEMA_INFO = "Schema info is not " +
24 "complete";
25 public static final String LEAF_IS_TERMINAL = "Leaf must be the terminal node";
26 public static final String NON_KEY_LEAF = "Leaf list is not a key of list";
27 public static final String NO_KEY_SET = "Resource Identifier is empty";
Thomas Vachuska7c9cf602017-02-07 11:24:03 -080028
29 // Forbid construction.
30 private ModelConstants() {
31 }
VinodKumarS-Huawei37316ae2017-01-11 16:11:42 +053032}