3a48ed397784b02a63bbfa6ea113b29284a1ffc4
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / restconf / utils / mapping / RestconfMappingNodeConstants.java
1 /*
2  * Copyright (c) 2016 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.restconf.utils.mapping;
9
10 /**
11  * Util class for constants of mapping node.
12  *
13  * @deprecated move to splitted module restconf-nb-rfc8040
14  */
15 @Deprecated
16 public final class RestconfMappingNodeConstants {
17
18     public static final String NAME = "name";
19     public static final String REVISION = "revision";
20     public static final String NAMESPACE = "namespace";
21     public static final String FEATURE = "feature";
22     public static final String DESCRIPTION = "description";
23     public static final String REPLAY_SUPPORT = "replay-support";
24     public static final String REPLAY_LOG = "replay-log-creation-time";
25     public static final String EVENTS = "events";
26
27     private RestconfMappingNodeConstants() {
28         throw new UnsupportedOperationException("Util class.");
29     }
30 }