blob: 8fcded11fe4435b811d1bc32665de873a827a2ef [file] [log] [blame]
sonu gupta1bb37b82016-11-11 16:51:18 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
sonu gupta1bb37b82016-11-11 16:51:18 +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.yms.app.ydt;
18
19/**
20 * Represents common constant utility for YANG data tree.
21 */
22final class YdtConstants {
23
24 //No instantiation.
25 private YdtConstants() {
26 }
27
28 /**
29 * Error formatting string for duplicate entries found in ydt.
30 */
31 public static final String FMT_DUP_ENTRY = "Duplicate entry with name %s.";
32
33 /**
34 * Returns the error string by filling the parameters in the given
35 * formatted error string.
36 *
37 * @param fmt error format string
38 * @param params parameters to be filled in formatted string
39 * @return error string
40 */
41 public static String errorMsg(String fmt, Object... params) {
42 return String.format(fmt, params);
43 }
44}