Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/NamespacePermission.java')
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/NamespacePermission.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/NamespacePermission.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/NamespacePermission.java
new file mode 100644
index 000000000..b58e944e6
--- /dev/null
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/NamespacePermission.java
@@ -0,0 +1,53 @@
+/*******************************************************************************
+ * Copyright (c) 2004 Composent, 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
+ *
+ * Contributors: Composent, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.eclipse.ecf.core.identity;
+
+import java.security.BasicPermission;
+import java.security.Permission;
+
+public class NamespacePermission extends BasicPermission {
+
+ public static final String ADD_NAMESPACE = "add";
+ public static final String ALL_NAMESPACE = "all";
+ public static final String CONTAINS_NAMESPACE = "contains";
+ public static final String GET_NAMESPACE = "get";
+ public static final String REMOVE_NAMESPACE = "remove";
+
+ protected String actions;
+
+ public NamespacePermission(String s) {
+ super(s);
+ }
+
+ public NamespacePermission(String s, String s1) {
+ super(s, s1);
+ actions = s1;
+ }
+
+ /**
+ *
+ * @uml.property name="actions"
+ */
+ public String getActions() {
+ return actions;
+ }
+
+ public boolean implies(Permission p) {
+ if ((p == null) || (p.getClass() != getClass()))
+ return false;
+ NamespacePermission np = (NamespacePermission) p;
+ String actions = getActions();
+ if (actions == null)
+ return false;
+ if (actions.equals(ALL_NAMESPACE) || actions.equals(np.getActions()))
+ return true;
+ return false;
+ }
+} \ No newline at end of file

Back to the top