001/*
002 * (C) Copyright 2006-2008 Nuxeo SAS (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Alexandre Russel
016 *
017 * $Id$
018 */
019
020package org.nuxeo.ecm.platform.annotations.repository.service;
021
022import java.util.ArrayList;
023import java.util.HashMap;
024import java.util.List;
025import java.util.Map;
026
027/**
028 * @author Alexandre Russel
029 */
030public class AnnotationsRepositoryConfigurationServiceImpl implements AnnotationsRepositoryConfigurationService {
031
032    private final Map<String, AnnotatedDocumentEventListener> listeners = new HashMap<String, AnnotatedDocumentEventListener>();
033
034    private GraphManagerEventListener graphManagerEventListener;
035
036    public GraphManagerEventListener getGraphManagerEventListener() {
037        return graphManagerEventListener;
038    }
039
040    public void setGraphManagerEventListener(GraphManagerEventListener graphManagerEventListener) {
041        this.graphManagerEventListener = graphManagerEventListener;
042    }
043
044    private final List<String> eventIds = new ArrayList<String>();
045
046    public void addEventListener(String listenerName, AnnotatedDocumentEventListener listener) {
047        listeners.put(listenerName, listener);
048    }
049
050    public List<AnnotatedDocumentEventListener> getEventListeners() {
051        return new ArrayList<AnnotatedDocumentEventListener>(listeners.values());
052    }
053
054    public List<String> getEventIds() {
055        return eventIds;
056    }
057
058    public void addEventId(String eventId) {
059        eventIds.add(eventId);
060    }
061
062}