blob: 817ec08dd7ba51e40c194f140ccf734d4fb748f7 [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.felix.ipojo.composite.architecture;
import java.util.Dictionary;
import org.apache.felix.ipojo.architecture.Architecture;
import org.apache.felix.ipojo.architecture.InstanceDescription;
import org.apache.felix.ipojo.composite.CompositeHandler;
import org.apache.felix.ipojo.metadata.Element;
/**
* Composite Architecture Handler.
*
* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
*/
public class ArchitectureHandler extends CompositeHandler implements Architecture {
/**
* Name of the component.
*/
private String m_name;
/**
* Configure the handler.
*
* @param metadata : the metadata of the component
* @param configuration : the instance configuration
* @see org.apache.felix.ipojo.CompositeHandler#configure(org.apache.felix.ipojo.CompositeManager,
* org.apache.felix.ipojo.metadata.Element, java.util.Dictionary)
*/
public void configure(Element metadata, Dictionary configuration) {
m_name = (String) configuration.get("instance.name");
}
/**
* Stop the handler.
* @see org.apache.felix.ipojo.Handler#stop()
*/
public void stop() {
// Nothing to do.
}
/**
* Start the handler.
* @see org.apache.felix.ipojo.Handler#start()
*/
public void start() {
info("Start composite architecture handler with " + m_name + " name");
}
/**
* Get the instance description.
* @return the instance description
* @see org.apache.felix.ipojo.architecture.Architecture#getDescription()
*/
public InstanceDescription getInstanceDescription() {
return getCompositeManager().getInstanceDescription();
}
}