Add netconf.api.NamespaceURN
[netconf.git] / protocol / netconf-api / src / main / java / org / opendaylight / netconf / api / xml / XmlNetconfConstants.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.api.xml;
9
10 public final class XmlNetconfConstants {
11     public static final String CAPABILITY = "capability";
12     public static final String CAPABILITIES = "capabilities";
13     public static final String COMMIT = "commit";
14     public static final String OPERATION_ATTR_KEY = "operation";
15     public static final String CONFIG_KEY = "config";
16     public static final String DATA_KEY = "data";
17     public static final String OK = "ok";
18     public static final String FILTER = "filter";
19     public static final String SOURCE_KEY = "source";
20     public static final String RPC_KEY = "rpc";
21     public static final String NOTIFICATION_ELEMENT_NAME = "notification";
22     public static final String EVENT_TIME = "eventTime";
23     public static final String PREFIX = "prefix";
24
25     public static final String MESSAGE_ID = "message-id";
26     public static final String SESSION_ID = "session-id";
27
28     public static final String GET = "get";
29     public static final String GET_CONFIG = "get-config";
30
31     public static final String RPC_REPLY_KEY = "rpc-reply";
32
33     private XmlNetconfConstants() {
34         // Hidden on purpose
35     }
36 }