blob: 4862fb2252a8bcd9443a8e8a16e8fe343a65316e [file] [log] [blame]
Sithara Punnasseryff114552017-01-10 11:40:55 -08001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.config.model;
17
18/**
19 * Hollow definition of ResourceIdentifier for ConfigService APIs.
20 */
21public interface ResourceIdentifier {
22 //will remove this when the corresponding changes in onos-yang-tools become available
23
24 /**
25 * Returns the node key used to uniquely identify the branch in the
26 * logical tree.
27 *
28 * @return node key uniquely identifying the branch
29 */
30 NodeKey nodeKey();
31
32 /**
33 * Returns the descendent resource identifier.
34 *
35 * @return descendent resource identifier
36 */
37 ResourceIdentifier descendentIdentifier();
38
39 String getBase();
40 String asString();
41 //DefaultResourceIdentifier asResId(NodeKey nkey);
42}