/* * #%L * Alfresco Records Management Module * %% * Copyright (C) 2005 - 2016 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - * If the software was purchased under a paid Alfresco license, the terms of * the paid license agreement will prevail. Otherwise, the software is * provided under the following open source license terms: * - * Alfresco 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 3 of the License, or * (at your option) any later version. * - * Alfresco 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. * - * You should have received a copy of the GNU Lesser General Public License * along with Alfresco. If not, see <http://www.gnu.org/licenses/>. * #L% */ package org.alfresco.module.org_alfresco_module_rm.event; import java.util.List; import org.alfresco.api.AlfrescoPublicApi; /** * Records management event service interface * * @author Roy Wetherall */ @AlfrescoPublicApi public interface RecordsManagementEventService { /** * Register an event type * * @param eventType event type */ void registerEventType(RecordsManagementEventType eventType); /** * Get a list of the event types * * @return List<RecordsManagementEventType> list of the event types */ List<RecordsManagementEventType> getEventTypes(); /** * Get the records management event type * * @param eventType name * @return RecordsManagementEventType event type */ RecordsManagementEventType getEventType(String eventTypeName); /** * Get the list of available events * * @return List<RecordsManagementEvent> list of events */ List<RecordsManagementEvent> getEvents(); /** * Get a records management event given its name. Returns null if the event name is not * recognised. * * @param eventName event name * @return RecordsManagementEvent event */ RecordsManagementEvent getEvent(String eventName); /** * Indicates whether a particular event exists. Returns true if it does, false otherwise. * * @param eventName event name * @return boolean true if event exists, false otherwise */ boolean existsEvent(String eventName); /** * Indicates whether a particular event can be created. Returns true if it is possible, false otherwise. * * @param eventDisplayLabel event display label * @param eventName event name * @return true if the event can be created, false otherwise */ boolean canCreateEvent(String eventDisplayLabel, String eventName); /** * Indicates whether a particular event can be edited. Returns true if it is possible, false otherwise. * * @param eventDisplayLabel event display label * @param eventName event name * @param eventType event type * @return true if the event can be edited, false otherwise */ boolean canEditEvent(String eventDisplayLabel, String eventName, String eventType); /** * Add an event * * @param eventType event type * @param eventName event name * @param eventDisplayLabel event display label */ RecordsManagementEvent addEvent(String eventType, String eventName, String eventDisplayLabel); /** * Remove an event * * @param eventName event name */ void removeEvent(String eventName); }