3ed913782a705c62ddf37e0c568fa28bbd8479af
[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  */
14 public final class RestconfMappingNodeConstants {
15
16     public static final String NAME = "name";
17     public static final String REVISION = "revision";
18     public static final String NAMESPACE = "namespace";
19     public static final String FEATURE = "feature";
20     public static final String DESCRIPTION = "description";
21     public static final String REPLAY_SUPPORT = "replay-support";
22     public static final String REPLAY_LOG = "replay-log-creation-time";
23     public static final String EVENTS = "events";
24
25     private RestconfMappingNodeConstants() {
26         throw new UnsupportedOperationException("Util class.");
27     }
28 }