com.agiletec.aps.system.services.group.IGroupManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entando-engine Show documentation
Show all versions of entando-engine Show documentation
Entando Engine: an agile, modern and user-centric open source Portal platform.
/*
* Copyright 2015-Present Entando Inc. (http://www.entando.com) All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library 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 Lesser General Public License for more
* details.
*/
package com.agiletec.aps.system.services.group;
import java.util.List;
import java.util.Map;
import com.agiletec.aps.system.common.FieldSearchFilter;
import com.agiletec.aps.system.common.model.dao.SearcherDaoPaginatedResult;
import com.agiletec.aps.system.exception.ApsSystemException;
/**
* Interfaccia base per i servizi gestori dei gruppi.
* @author E.Santoboni
*/
public interface IGroupManager {
/**
* Aggiunge un gruppo nel sistema.
* @param group Il gruppo da aggiungere.
* @throws ApsSystemException In caso di errori in accesso al db.
*/
public void addGroup(Group group) throws ApsSystemException;
/**
* Rimuove un gruppo dal sistema.
* @param group Il gruppo da rimuovere.
* @throws ApsSystemException In caso di errori in accesso al db.
*/
public void removeGroup(Group group) throws ApsSystemException;
/**
* Aggiorna un gruppo di sistema.
* @param group Il gruppo da aggiornare.
* @throws ApsSystemException In caso di errori in accesso al db.
*/
public void updateGroup(Group group) throws ApsSystemException;
/**
* Restituisce la lista ordinata dei gruppi presenti nel sistema.
* @return La lista dei gruppi presenti nel sistema.
*/
public List getGroups();
/**
* Restituisce la mappa dei gruppi presenti nel sistema.
* La mappa è indicizzata in base al nome del gruppo.
* @return La mappa dei gruppi presenti nel sistema.
*/
public Map getGroupsMap();
/**
* Restituisce un gruppo in base al nome.
* @param groupName Il nome del gruppo.
* @return Il gruppo cercato.
*/
public Group getGroup(String groupName);
public SearcherDaoPaginatedResult getGroups(FieldSearchFilter[] fieldSearchFilters) throws ApsSystemException;
public SearcherDaoPaginatedResult getGroups(List fieldSearchFilters) throws ApsSystemException;
}