Remove RestconfMapping{Node,Stream}Constants 88/90988/4
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 8 Jul 2020 12:34:56 +0000 (14:34 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 8 Jul 2020 15:16:10 +0000 (17:16 +0200)
These two classes are completely unreferenced, remove them.

Change-Id: I9d9fc3a94cadb245adc6a6bae3c39230bfc1898a
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/mapping/RestconfMappingNodeConstants.java [deleted file]
restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/mapping/RestconfMappingStreamConstants.java [deleted file]

diff --git a/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/mapping/RestconfMappingNodeConstants.java b/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/mapping/RestconfMappingNodeConstants.java
deleted file mode 100644 (file)
index 0e3a401..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.restconf.nb.rfc8040.utils.mapping;
-
-/**
- * Util class for constants of mapping node.
- *
- */
-public final class RestconfMappingNodeConstants {
-
-    public static final String NAME = "name";
-    public static final String REVISION = "revision";
-    public static final String NAMESPACE = "namespace";
-    public static final String FEATURE = "feature";
-    public static final String DESCRIPTION = "description";
-    public static final String REPLAY_SUPPORT = "replay-support";
-    public static final String REPLAY_LOG = "replay-log-creation-time";
-    public static final String EVENTS = "events";
-
-    private RestconfMappingNodeConstants() {
-        throw new UnsupportedOperationException("Util class.");
-    }
-}
diff --git a/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/mapping/RestconfMappingStreamConstants.java b/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/utils/mapping/RestconfMappingStreamConstants.java
deleted file mode 100644 (file)
index 530378c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.restconf.nb.rfc8040.utils.mapping;
-
-/**
- * Util class for mapping entry stream.
- *
- */
-public final class RestconfMappingStreamConstants {
-
-    public static final String DESCRIPTION = "DESCRIPTION_PLACEHOLDER";
-    public static final Boolean REPLAY_SUPPORT = Boolean.TRUE;
-    public static final String REPLAY_LOG = "";
-    public static final String EVENTS = "";
-
-    private RestconfMappingStreamConstants() {
-        throw new UnsupportedOperationException("Util class");
-    }
-}