001/*
002 * (C) Copyright 2012 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Anahide Tchertchian
018 */
019
020package org.nuxeo.ecm.directory.ldap.registry;
021
022import org.apache.commons.logging.Log;
023import org.apache.commons.logging.LogFactory;
024import org.nuxeo.ecm.directory.ldap.LDAPServerDescriptor;
025import org.nuxeo.runtime.model.SimpleContributionRegistry;
026
027/**
028 * Registry for LDAP servers
029 *
030 * @since 5.6
031 */
032public class LDAPServerRegistry extends SimpleContributionRegistry<LDAPServerDescriptor> {
033
034    public static final Log log = LogFactory.getLog(LDAPServerRegistry.class);
035
036    @Override
037    public String getContributionId(LDAPServerDescriptor contrib) {
038        return contrib.getName();
039    }
040
041    @Override
042    public void contributionUpdated(String id, LDAPServerDescriptor contrib, LDAPServerDescriptor newOrigContrib) {
043        super.contributionUpdated(id, contrib, newOrigContrib);
044        log.info("server registered: " + contrib.getName());
045    }
046
047    @Override
048    public void contributionRemoved(String id, LDAPServerDescriptor origContrib) {
049        super.contributionRemoved(id, origContrib);
050        log.info("server unregistered: " + origContrib.getName());
051    }
052
053    // API
054
055    public LDAPServerDescriptor getServer(String name) {
056        return getCurrentContribution(name);
057    }
058
059}