X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconnectionmanager%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconnectionmanager%2FNodeAccessPermission.java;fp=opendaylight%2Fconnectionmanager%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconnectionmanager%2FNodeAccessPermission.java;h=0000000000000000000000000000000000000000;hp=c59e297cc48df3d1f56829c32c87a606c5f05237;hb=42c32160bfd41de57189bb246fec5ffb48ed8e9e;hpb=edf5bfcee83c750853253ccfd991ba7000f5f65b diff --git a/opendaylight/connectionmanager/api/src/main/java/org/opendaylight/controller/connectionmanager/NodeAccessPermission.java b/opendaylight/connectionmanager/api/src/main/java/org/opendaylight/controller/connectionmanager/NodeAccessPermission.java deleted file mode 100644 index c59e297cc4..0000000000 --- a/opendaylight/connectionmanager/api/src/main/java/org/opendaylight/controller/connectionmanager/NodeAccessPermission.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright IBM Corporation, 2013. 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.controller.connectionmanager; - -/* - * - * This enum enables the options which could be used for querying - * the cluster-members based on the state-change permissions. - * - * SB Plugin or any other means could be used to store this metadata - * against each connection w.r.t. Node - * - * TODO: When connection-manager is enhanced later to store connection - * metadata with permissions, this could be used to query the connections - * based on permission-level of the connection - * - */ - -public enum NodeAccessPermission { - - /* - * This option could be used to retrieve the cluster-members who have rights - * only to read the Node state but are not eligible for modifying the state - * of Node - */ - READONLY_ACCESS, - - /* - * This option could be used to retrieve the cluster-members who have rights - * to read and modify the state of Node - */ - READWRITE_ACCESS - -}