Move RestconfStreamsConstants
[netconf.git] / restconf / restconf-nb / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / utils / RestconfStreamsConstants.java
diff --git a/restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/rests/utils/RestconfStreamsConstants.java b/restconf/restconf-nb/src/main/java/org/opendaylight/restconf/nb/rfc8040/rests/utils/RestconfStreamsConstants.java
deleted file mode 100644 (file)
index b3cffdd..0000000
+++ /dev/null
@@ -1,31 +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.rests.utils;
-
-/**
- * Constants for streams.
- */
-public final class RestconfStreamsConstants {
-    public static final String DATASTORE_PARAM_NAME = "datastore";
-    public static final String SCOPE_PARAM_NAME = "scope";
-
-    // Prefixes for stream names
-    public static final String DATA_SUBSCRIPTION = "data-change-event-subscription";
-    public static final String NOTIFICATION_STREAM = "notification-stream";
-    public static final String DEVICE_NOTIFICATION_STREAM = "device-notification-stream";
-
-    public static final String STREAMS_PATH = "ietf-restconf-monitoring:restconf-state/streams";
-    public static final String STREAM_PATH_PART = "/stream=";
-    public static final String STREAM_PATH = STREAMS_PATH + STREAM_PATH_PART;
-    public static final String STREAM_ACCESS_PATH_PART = "/access=";
-    public static final String STREAM_LOCATION_PATH_PART = "/location";
-
-    private RestconfStreamsConstants() {
-        // Hidden on purpose
-    }
-}