blob: e9f3179dc74e98a1c77b4e9a6e2310a6d95659a1 [file] [log] [blame]
/*
* 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.qpid.server.security;
import java.util.Map;
import javax.security.auth.Subject;
import org.apache.qpid.server.model.PermissionedObject;
import org.apache.qpid.server.security.access.Operation;
public interface AccessControl<T extends SecurityToken>
{
Result getDefault();
T newToken();
T newToken(Subject subject);
Result authorise(T token, Operation operation, PermissionedObject configuredObject);
Result authorise(T token, Operation operation, PermissionedObject configuredObject, Map<String,Object> arguments);
final class FixedResultAccessControl implements AccessControl<SecurityToken>
{
private final Result _result;
private FixedResultAccessControl(final Result result)
{
_result = result;
}
@Override
public Result getDefault()
{
return _result;
}
@Override
public SecurityToken newToken()
{
return null;
}
@Override
public SecurityToken newToken(final Subject subject)
{
return null;
}
@Override
public Result authorise(final SecurityToken token,
final Operation operation,
final PermissionedObject configuredObject)
{
return _result;
}
@Override
public Result authorise(final SecurityToken token,
final Operation operation,
final PermissionedObject configuredObject,
final Map<String, Object> arguments)
{
return _result;
}
}
AccessControl ALWAYS_ALLOWED = new FixedResultAccessControl(Result.ALLOWED);
AccessControl ALWAYS_DENIED = new FixedResultAccessControl(Result.DENIED);
}