mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-02-12 03:01:17 +01:00
Remove deprecated static indexes
Change-Id: I0d404edf01217205970213a304049e3739c08d79
This commit is contained in:
parent
69aad447c5
commit
f32757ec24
@ -64,13 +64,6 @@ public abstract class DeviceResourceIds {
|
||||
*/
|
||||
public static final String DEVICE_ID_KL_NAME = "device-id";
|
||||
|
||||
/**
|
||||
* Absolute ResourceId pointing at root node.
|
||||
* @deprecated Use {@link ResourceIds#ROOT_ID} instead
|
||||
*/
|
||||
@Deprecated
|
||||
public static final ResourceId ROOT_ID = ResourceIds.ROOT_ID;
|
||||
|
||||
/**
|
||||
* Absolute ResourceId pointing at 'devices' node.
|
||||
*/
|
||||
@ -86,16 +79,15 @@ public abstract class DeviceResourceIds {
|
||||
/**
|
||||
* nodeKeys index for root node.
|
||||
*/
|
||||
@Deprecated
|
||||
static final int ROOT_INDEX = 0;
|
||||
private static final int ROOT_INDEX = 0;
|
||||
/**
|
||||
* nodeKeys index relative from root for devices node.
|
||||
*/
|
||||
static final int DEVICES_INDEX = 1;
|
||||
private static final int DEVICES_INDEX = 1;
|
||||
/**
|
||||
* nodeKeys index relative from root for device node.
|
||||
*/
|
||||
static final int DEVICE_INDEX = 2;
|
||||
private static final int DEVICE_INDEX = 2;
|
||||
|
||||
/**
|
||||
* Converts root relative ResourceId used by DynamicConfigEvent.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user