All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rapidclipse.framework.security.authorization.SubjectUpdater Maven / Gradle / Ivy

There is a newer version: 14.0.0
Show newest version
/*
 * 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.authorization;

import java.util.Collection;
import java.util.Set;


/**
 * Function type for updating a passed {@link Subject} instance for a given subject name and collection of roles.
 * For more details, see {@link #updateSubject(Subject, String, Set)}.
 *
 * @author XDEV Software (TM)
 */
@FunctionalInterface
public interface SubjectUpdater
{
	/**
	 * Updates the passed {@link Subject} instance for the given subject name and collection of roles, where updating
	 * can mean anything from just validating to actually changing the passed subject's state with the passed content.
	 * 
	 * @param subject
	 *            the {@link Subject} instance to be updated.
	 * @param subjectName
	 *            the identifying name of the passed {@link Subject} instance.
	 * @param roles
	 *            the subject's defined roles to be used for the updating process.
	 *
	 * @return an updated {@link Subject} instance, potentially different from the passed instance.
	 */
	public Subject updateSubject(Subject subject, String subjectName, Set roles);
	
	/**
	 * Updating preparation callback hook that gets called once on the beginning of very updating process, before any
	 * authorization instances are updated.
	 * The default implementation of this method is empty.
	 * An example usage for this method is to create and store rollback information on the passed subjects.
	 *
	 * @param existingSubjects
	 *            the subjects already existing before the updating process.
	 */
	public default void prepareSubjectUpdate(final Collection existingSubjects)
	{
		// no-op in default implementation
	}
	
	/**
	 * Update committing callback hook that gets called once at the end of very successful updating process, after all
	 * authorization instances are updated.
	 * The default implementation of this method is empty.
	 * An example usage for this method is to relay committing of changes to some other data structure or application
	 * part.
	 *
	 * @param updatedSubjects
	 *            the updated and potentially newly created subjects.
	 */
	public default void commitSubjectUpdate(final Collection updatedSubjects)
	{
		// no-op in default implementation
	}
	
	/**
	 * Updating exception handling callback hook that gets called once if any {@link Exception} is encountered during
	 * the updating process.
	 * The default implementation of this method is empty.
	 * An example usage for this method is to rollback (revert) all mutated {@link Subject} instances that have
	 * already existed before the updating process.
	 *
	 * @param updatedSubjects
	 *            the updated and potentially newly created, empty or inconsistent subjects.
	 */
	public default void rollbackSubjectUpdate(final Collection updatedSubjects, final Exception cause)
	{
		// no-op in default implementation
	}
	
	/**
	 * Updating preparation callback hook that gets called once at the end of the updating process in any case
	 * (both success and encountered exception).
	 * The default implementation of this method is empty.
	 * An example usage for this method is to clear any internally stored meta data (e.g. rollback information).
	 */
	public default void cleanupSubjectUpdate()
	{
		// no-op in default implementation
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy