com.rapidclipse.framework.security.SecurityManager Maven / Gradle / Ivy
Show all versions of rap-security-auth Show documentation
/*
* Copyright (C) 2013-2023 by XDEV Software, All Rights Reserved.
*
* This file is part of the RapidClipse Application Platform (RAP).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*
* Contributors:
* XDEV Software - initial API and implementation
*/
package com.rapidclipse.framework.security;
import static java.util.Objects.requireNonNull;
import java.util.Map;
import com.rapidclipse.framework.security.authentication.AuthenticationFailedException;
import com.rapidclipse.framework.security.authentication.Authenticator;
import com.rapidclipse.framework.security.authorization.AuthorizationManager;
import com.rapidclipse.framework.security.authorization.AuthorizationRegistry;
import com.rapidclipse.framework.security.authorization.Permission;
import com.rapidclipse.framework.security.authorization.Resource;
import com.rapidclipse.framework.security.authorization.Role;
import com.rapidclipse.framework.security.authorization.Subject;
/**
* Security managing type that combines {@link Authenticator} and {@link AuthorizationManager} aspects.
*
* @param
* the type of the credentials instance to be authenticated.
* @param
* the type of the result/response instance to be returned upon an authentication attempt.
*
* @author XDEV Software (TM)
*/
public interface SecurityManager extends Authenticator, AuthorizationManager
{
public static SecurityManager New(
final Authenticator authenticator,
final AuthorizationManager authorizationManager)
{
return new Default<>(
requireNonNull(authenticator),
requireNonNull(authorizationManager));
}
/**
* Default {@link SecurityManager} implementation that wraps delegate {@link Authenticator} and
* {@link AuthorizationManager} instances.
*
* This implementation is immutable.
*
* @param
* the type of the credentials instance to be authenticated.
* @param
* the type of the result/response instance to be returned upon an authentication attempt.
*
* @author XDEV Software (TM)
*/
public final class Default implements SecurityManager
{
///////////////////////////////////////////////////////////////////////////
// instance fields //
////////////////////
private final Authenticator authenticator;
private final AuthorizationManager authorizationManager;
///////////////////////////////////////////////////////////////////////////
// constructors //
/////////////////
/**
* Implementation detail constructor that might change in the future.
*/
protected Default(
final Authenticator authenticator,
final AuthorizationManager authorizationManager)
{
super();
this.authenticator = authenticator;
this.authorizationManager = authorizationManager;
}
///////////////////////////////////////////////////////////////////////////
// override methods //
/////////////////////
/**
* {@inheritDoc}
*/
@Override
public final R authenticate(final C credentials) throws AuthenticationFailedException
{
return this.authenticator.authenticate(credentials);
}
/**
* {@inheritDoc}
*/
@Override
public final Permission providePermission(final Resource resource, final Integer factor)
{
return this.authorizationManager.providePermission(resource, factor);
}
/**
* {@inheritDoc}
*/
@Override
public final Map roles()
{
return this.authorizationManager.roles();
}
/**
* {@inheritDoc}
*/
@Override
public final Map subjects()
{
return this.authorizationManager.subjects();
}
/**
* {@inheritDoc}
*/
@Override
public final Permission providePermission(final Resource resource)
{
return this.authorizationManager.providePermission(resource);
}
/**
* {@inheritDoc}
*/
@Override
public final Permission permission(final Resource resource, final Integer factor)
{
return this.authorizationManager.permission(resource, factor);
}
/**
* {@inheritDoc}
*/
@Override
public final Role role(final String roleName)
{
return this.authorizationManager.role(roleName);
}
/**
* {@inheritDoc}
*/
@Override
public final Subject subject(final String subjectName)
{
return this.authorizationManager.subject(subjectName);
}
/**
* {@inheritDoc}
*/
@Override
public final Object lockPermissionRegistry()
{
return this.authorizationManager.lockPermissionRegistry();
}
/**
* {@inheritDoc}
*/
@Override
public final Object lockRoleRegistry()
{
return this.authorizationManager.lockRoleRegistry();
}
/**
* {@inheritDoc}
*/
@Override
public final Object lockSubjectRegistry()
{
return this.authorizationManager.lockSubjectRegistry();
}
/**
* {@inheritDoc}
*/
@Override
public final Permission permission(final Resource resource)
{
return this.authorizationManager.permission(resource);
}
/**
* {@inheritDoc}
*/
@Override
public final AuthorizationRegistry authorizationRegistry()
{
return this.authorizationManager.authorizationRegistry();
}
/**
* {@inheritDoc}
*/
@Override
public final void reloadAuthorizations()
{
this.authorizationManager.reloadAuthorizations();
}
/**
* {@inheritDoc}
*/
@Override
public final Resource resource(final String name)
{
return this.authorizationManager.resource(name);
}
}
}