All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osgi.service.blueprint.reflect.BeanMetadata Maven / Gradle / Ivy

/*
 * Copyright (c) OSGi Alliance (2008, 2009). All Rights Reserved.
 *
 * Licensed 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.osgi.service.blueprint.reflect;

import java.util.List;

/**
 * Metadata for a Bean component.
 * 
 * 

* This is specified by the bean element. * * @ThreadSafe * @version $Revision: 8415 $ */ public interface BeanMetadata extends Target, ComponentMetadata { /** * The bean has singleton scope. * * @see #getScope() */ static final String SCOPE_SINGLETON = "singleton"; /** * The bean has prototype scope. * * @see #getScope() */ static final String SCOPE_PROTOTYPE = "prototype"; /** * Return the name of the class specified for the bean. * * This is specified by the class attribute of the bean * definition. * * @return The name of the class specified for the bean. If no class is * specified in the bean definition, because the a factory component * is used instead, then this method will return null. */ String getClassName(); /** * Return the name of the init method specified for the bean. * * This is specified by the init-method attribute of the bean * definition. * * @return The name of the init method specified for the bean, or * null if no init method is specified. */ String getInitMethod(); /** * Return the name of the destroy method specified for the bean. * * This is specified by the destroy-method attribute of the * bean definition. * * @return The name of the destroy method specified for the bean, or * null if no destroy method is specified. */ String getDestroyMethod(); /** * Return the arguments for the factory method or constructor of the bean. * * This is specified by the child argument elements. * * @return An immutable List of {@link BeanArgument} objects for the factory * method or constructor of the bean. The List is empty if no * arguments are specified for the bean. */ List getArguments(); /** * Return the properties for the bean. * * This is specified by the child property elements. * * @return An immutable List of {@link BeanProperty} objects, with one entry * for each property to be injected in the bean. The List is empty * if no property injection is specified for the bean. * */ List getProperties(); /** * Return the name of the factory method for the bean. * * This is specified by the factory-method attribute of the * bean. * * @return The name of the factory method of the bean or null * if no factory method is specified for the bean. */ String getFactoryMethod(); /** * Return the Metadata for the factory component on which to invoke the * factory method for the bean. * * This is specified by the factory-ref attribute of the bean. * *

* When a factory method and factory component have been specified for the * bean, this method returns the factory component on which to invoke the * factory method for the bean. When no factory component has been specified * this method will return null. * * When a factory method has been specified for the bean but a factory * component has not been specified, the factory method must be invoked as a * static method on the bean's class. * * @return The Metadata for the factory component on which to invoke the * factory method for the bean or null if no factory * component is specified. */ Target getFactoryComponent(); /** * Return the scope for the bean. * * @return The scope for the bean. Returns null if the scope * has not been explicitly specified in the bean definition. * @see #SCOPE_SINGLETON * @see #SCOPE_PROTOTYPE */ String getScope(); }