blob: 5364eff4af83f657576362a1c1d90576cd6442ab [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.component.handler.ipojo;
import java.util.Hashtable;
import org.apache.felix.ipojo.annotations.Handler;
import org.apache.felix.ipojo.metadata.Element;
@Handler(name = DcHandlerConstants.DSCOMPONENT_HANDLER_NAME, namespace = DcHandlerConstants.DSCOMPONENT_HANDLER_NS)
public class DirectoryComponentHandler extends AbstractDcHandler
{
@Override
protected String getHandlerName()
{
return DcHandlerConstants.DSCOMPONENT_HANDLER_NAME;
}
@Override
protected String getHandlerNamespaceName()
{
return DcHandlerConstants.DSCOMPONENT_HANDLER_NS;
}
@Override
protected Hashtable<String, String> extractConstantProperties( Element ipojoMetadata )
{
Hashtable<String, String> constants = new Hashtable<String, String>();
Element[] components = ipojoMetadata.getElements( getHandlerName(), getHandlerNamespaceName() );
// Only one interceptor per class is allowed
Element component = components[0];
String isFactory = component.getAttribute( DcHandlerConstants.DSCOMPONENT_FACTORY_PROP_NAME );
if ( isFactory != null )
{
constants.put( DcHandlerConstants.META_IS_FACTORY, isFactory );
}
return constants;
}
}