X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fweb%2Froot%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fweb%2FIDaylightWeb.java;fp=opendaylight%2Fweb%2Froot%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fweb%2FIDaylightWeb.java;h=0000000000000000000000000000000000000000;hb=42c32160bfd41de57189bb246fec5ffb48ed8e9e;hp=7421759d985086269e8b8dabfe4dcaf37bcf60c0;hpb=edf5bfcee83c750853253ccfd991ba7000f5f65b;p=controller.git diff --git a/opendaylight/web/root/src/main/java/org/opendaylight/controller/web/IDaylightWeb.java b/opendaylight/web/root/src/main/java/org/opendaylight/controller/web/IDaylightWeb.java deleted file mode 100644 index 7421759d98..0000000000 --- a/opendaylight/web/root/src/main/java/org/opendaylight/controller/web/IDaylightWeb.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) 2013 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.controller.web; - -import org.opendaylight.controller.sal.authorization.UserLevel; - -public interface IDaylightWeb { - /** - * Returns the name of the bundle. In the GUI, this name will be displayed - * on the tab. - * - * @return Name assigned to the bundle. - */ - public String getWebName(); - - /** - * Returns the Id assigned to the web bundle. - * - * @return Id assigned to the web bundle. - */ - public String getWebId(); - - /** - * Returns the position where the bundle tab will be placed in the GUI. - * - * @return Position number for the bundle tab. - */ - public short getWebOrder(); - - /** - * This method checks if the user is authorized to access the bundle. - * - * @param userLevel - * user role level in the controller space. - * - * @return true, if user is authorized to access the bundle, else false. - */ - public boolean isAuthorized(UserLevel userLevel); -}