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

org.apache.fulcrum.security.GroupManager Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.apache.fulcrum.security;

/*
 * 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.
 */
import java.io.Serializable;

import org.apache.fulcrum.security.entity.Group;
import org.apache.fulcrum.security.util.DataBackendException;
import org.apache.fulcrum.security.util.EntityExistsException;
import org.apache.fulcrum.security.util.GroupSet;
import org.apache.fulcrum.security.util.UnknownEntityException;

/**
 * A GroupManager performs {@link org.apache.fulcrum.security.entity.Group}
 * objects related tasks on behalf of the
 * {@link org.apache.fulcrum.security.BaseSecurityService}.
 *
 * The responsibilities of this class include loading data of an group from the
 * storage and putting them into the
 * {@link org.apache.fulcrum.security.entity.Group} objects, saving those data
 * to the permanent storage.
 *
 * @author Eric Pugh
 * @version $Id: GroupManager.java 1845858 2018-11-05 21:14:02Z painter $
 */
public interface GroupManager extends Serializable
{

    /** Avalon role - used to id the component within the manager */
    String ROLE = GroupManager.class.getName();

    /**
     * Construct a blank Group object.
     *
     * This method calls getGroupClass, and then creates a new object using the
     * default constructor.
     *
     * @return an object implementing Group interface.
     * @throws DataBackendException
     *             if the object could not be instantiated.
     */
     T getGroupInstance() throws DataBackendException;

    /**
     * Construct a blank Group object.
     *
     * This method calls getGroupClass, and then creates a new object using the
     * default constructor.
     *
     * @param groupName
     *            The name of the Group
     *
     * @return an object implementing Group interface.
     * @throws DataBackendException
     *             if the object could not be instantiated.
     */
     T getGroupInstance(String groupName) throws DataBackendException;

    /**
     * Retrieve a Group object with specified name.
     *
     * @param name
     *            the name of the Group.
     * @return an object representing the Group with specified name.
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     * @throws UnknownEntityException
     *             if the group does not exist.
     */
     T getGroupByName(String name) throws DataBackendException, UnknownEntityException;

    /**
     * Retrieve a Group object with specified Id.
     *
     * @param id
     *            the Id of the Group.
     *
     * @return an object representing the Group with specified name.
     *
     * @exception UnknownEntityException
     *                if the permission does not exist in the database.
     * @exception DataBackendException
     *                if there is a problem accessing the storage.
     */
     T getGroupById(Object id) throws DataBackendException, UnknownEntityException;

    /**
     * Renames an existing Group.
     *
     * @param group
     *            The object describing the group to be renamed.
     * @param name
     *            the new name for the group.
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     * @throws UnknownEntityException
     *             if the group does not exist.
     */
    void renameGroup(Group group, String name) throws DataBackendException, UnknownEntityException;

    /**
     * Removes a Group from the system.
     *
     * @param group
     *            The object describing the group to be removed.
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     * @throws UnknownEntityException
     *             if the group does not exist.
     */
    void removeGroup(Group group) throws DataBackendException, UnknownEntityException;

    /**
     * Creates a new group with specified attributes.
     *
     * @param group
     *            the object describing the group to be created.
     * @return the new Group object.
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     * @throws EntityExistsException
     *             if the group already exists.
     */
     T addGroup(T group) throws DataBackendException, EntityExistsException;

    /**
     * Retrieves all groups defined in the system.
     *
     * @return the names of all groups defined in the system.
     * @throws DataBackendException
     *             if there was an error accessing the data backend.
     */
    GroupSet getAllGroups() throws DataBackendException;

    /**
     * Determines if the Group exists in the security system.
     *
     * @param group
     *            a Group value
     * @return true if the group exists in the system, false otherwise
     * @throws DataBackendException
     *             when more than one group with the same name exists.
     */
    boolean checkExists(Group group) throws DataBackendException;

    /**
     * Determines if a Group exists in the security system with the
     * specified name.
     *
     * @param groupName
     *            the name of a Group to check.
     * @return true if the group exists in the system, false otherwise
     * @throws DataBackendException
     *             when more than one group with the same name exists.
     */
    boolean checkExists(String groupName) throws DataBackendException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy