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=84bbd94bae12b41654de7c906387a005db83896e;hb=ccc77a1f4f9ec898ee54ac4695f22b59cb56828f;hp=0000000000000000000000000000000000000000;hpb=f5ece81719a8a262bd084eb609ad188e37d28d19;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 new file mode 100644 index 0000000000..84bbd94bae --- /dev/null +++ b/opendaylight/web/root/src/main/java/org/opendaylight/controller/web/IDaylightWeb.java @@ -0,0 +1,26 @@ + +/* + * 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 { + public String getWebName(); + + public String getWebId(); + + public short getWebOrder(); + + public boolean isAuthorized(UserLevel userLevel); +}