#ignite-189: move AuthenticationAclProvider to enterprise.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/76ef0b3f Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/76ef0b3f Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/76ef0b3f Branch: refs/heads/ignite-189 Commit: 76ef0b3f2840a57bd1323bef4ba8ecccc213dbd0 Parents: 63502e4 Author: ivasilinets <ivasilin...@gridgain.com> Authored: Thu Feb 12 20:02:38 2015 +0300 Committer: ivasilinets <ivasilin...@gridgain.com> Committed: Thu Feb 12 20:02:38 2015 +0300 ---------------------------------------------------------------------- .../AuthenticationAclProvider.java | 41 -------------------- 1 file changed, 41 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/76ef0b3f/modules/core/src/main/java/org/apache/ignite/authentication/AuthenticationAclProvider.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/authentication/AuthenticationAclProvider.java b/modules/core/src/main/java/org/apache/ignite/authentication/AuthenticationAclProvider.java deleted file mode 100644 index 542866a..0000000 --- a/modules/core/src/main/java/org/apache/ignite/authentication/AuthenticationAclProvider.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.ignite.authentication; - -import org.apache.ignite.*; -import org.apache.ignite.plugin.security.*; - -import java.util.*; - -/** - * Access control list provider. Specific SPI implementation may use this - * interface for declarative user permission specifications. - * <p> - * Abstracting access control specification through a provider allows users - * to implement custom stores for per-user access control specifications, - * e.g. encrypting them or storing in a separate file. - */ -public interface AuthenticationAclProvider { - /** - * Gets per-user access control map. - * - * @return Per-user access control map. - * @throws IgniteException If failed. - */ - public Map<GridSecurityCredentials, GridSecurityPermissionSet> acl() throws IgniteException; -}