blob: bf0ee4979870b55281b467b0d4e206c5a2ad5dba [file] [log] [blame]
Shankara-Huaweid5823ab2016-11-22 10:14:52 +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.ych.defaultcodecs.netconf;
18
19/**
20 * Represents utilities constants which are used while codec encoding
21 * and decoding.
22 */
23public final class NetconfCodecConstants {
24
25 // no instantiation
26 private NetconfCodecConstants() {
27 }
28
29 /**
30 * Static attribute for edit config string.
31 */
32 static final String EDIT_CONFIG = "edit-config";
33
34 /**
35 * Static attribute for edit config string.
36 */
37 static final String GET_CONFIG = "get-config";
38
39 /**
40 * Static attribute for edit config string.
41 */
42 static final String GET = "get";
43
44 /**
45 * Static attribute for edit config string.
46 */
47 static final String CONFIG = "config";
48
49 /**
50 * Static attribute for edit config string.
51 */
52 static final String DATA = "data";
53
54 /**
55 * Static attribute for edit config string.
56 */
57 static final String FILTER = "filter";
58
59 /**
60 * Static attribute for edit config string.
61 */
62 public static final String OPERATION = "operation";
63}