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.service;
021
022import java.util.List;
023
024import org.nuxeo.ecm.platform.annotations.api.UriResolver;
025import org.nuxeo.ecm.platform.annotations.descriptors.PermissionMapperDescriptor;
026
027/**
028 * @author Alexandre Russel
029 */
030public interface AnnotationConfigurationService {
031
032    void setUriResolver(UriResolver resolver);
033
034    UriResolver getUriResolver();
035
036    void setFilter(URLPatternFilter filter);
037
038    URLPatternFilter getUrlPatternFilter();
039
040    void setMetadataMapper(MetadataMapper mapper);
041
042    MetadataMapper getMetadataMapper();
043
044    void setPermissionManager(PermissionManager manager);
045
046    PermissionManager getPermissionManager();
047
048    void setAnnotabilityManager(AnnotabilityManager annotabilityManager);
049
050    AnnotabilityManager getAnnotabilityManager();
051
052    void addListener(EventListener listener);
053
054    List<EventListener> getListeners();
055
056    void setIDGenerator(AnnotationIDGenerator generator);
057
058    AnnotationIDGenerator getIDGenerator();
059
060    void setPermissionMapper(PermissionMapperDescriptor contribution);
061
062    String getCreateAnnotationPermission();
063
064    String getDeleteAnnotationPermission();
065
066    String getReadAnnotationPermission();
067
068    String getUpdateAnnotationPermission();
069}