Move CreateStreamUtil to rests.services.impl
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / utils / RestconfStreamsConstants.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.nb.rfc8040.rests.utils;
9
10 import com.google.common.collect.ImmutableSet;
11 import java.net.URI;
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.common.QNameModule;
14 import org.opendaylight.yangtools.yang.common.Revision;
15 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
16
17 /**
18  * Constants for streams.
19  */
20 public final class RestconfStreamsConstants {
21
22     public static final QNameModule SAL_REMOTE_AUGMENT = QNameModule.create(
23             URI.create("urn:sal:restconf:event:subscription"),
24             Revision.of("2014-07-08"));
25     public static final QNameModule SUBSCRIBE_TO_NOTIFICATION = QNameModule.create(
26             URI.create("subscribe:to:notification"),
27             Revision.of("2016-10-28"));
28
29     public static final QName SAL_REMOTE_NAMESPACE = QName.create(
30             "urn:opendaylight:params:xml:ns:yang:controller:md:sal:remote",
31             "2014-01-14",
32             "sal-remote");
33
34     public static final String STREAM_PATH_PARAM_NAME = "path";
35     public static final String DATASTORE_PARAM_NAME = "datastore";
36     public static final String SCOPE_PARAM_NAME = "scope";
37     public static final String OUTPUT_TYPE_PARAM_NAME = "notification-output-type";
38
39     public static final AugmentationIdentifier SAL_REMOTE_AUG_IDENTIFIER = new AugmentationIdentifier(ImmutableSet.of(
40             QName.create(SAL_REMOTE_AUGMENT, SCOPE_PARAM_NAME),
41             QName.create(SAL_REMOTE_AUGMENT, DATASTORE_PARAM_NAME),
42             QName.create(SAL_REMOTE_AUGMENT, OUTPUT_TYPE_PARAM_NAME)));
43
44     public static final QName LOCATION_QNAME = QName.create(SUBSCRIBE_TO_NOTIFICATION, "location");
45     public static final QName NOTIFI_QNAME = QName.create(SUBSCRIBE_TO_NOTIFICATION, "notifi");
46
47     public static final String DS_URI = '/' + DATASTORE_PARAM_NAME + '=';
48     public static final String SCOPE_URI = '/' + SCOPE_PARAM_NAME + '=';
49
50     public static final String DATA_SUBSCRIPTION = "data-change-event-subscription";
51     public static final String CREATE_DATA_SUBSCRIPTION = "create-" + DATA_SUBSCRIPTION;
52     public static final String NOTIFICATION_STREAM = "notification-stream";
53     public static final String CREATE_NOTIFICATION_STREAM = "create-" + NOTIFICATION_STREAM;
54
55     public static final String STREAMS_PATH = "ietf-restconf-monitoring:restconf-state/streams";
56     public static final String STREAM_PATH_PART = "/stream=";
57     public static final String STREAM_PATH = STREAMS_PATH + STREAM_PATH_PART;
58     public static final String STREAM_ACCESS_PATH_PART = "/access=";
59     public static final String STREAM_LOCATION_PATH_PART = "/location";
60
61     public static final String DATA_CHANGE_EVENT_STREAM_PATTERN = '/' + DATA_SUBSCRIPTION + "/*";
62     public static final String YANG_NOTIFICATION_STREAM_PATTERN = '/' + NOTIFICATION_STREAM + "/*";
63
64     private RestconfStreamsConstants() {
65         throw new UnsupportedOperationException("Util class.");
66     }
67 }