- /*
- * Copyright 2002-2004 the original author or authors.
- *
- * 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.springframework.beans.factory.access;
- import org.springframework.beans.FatalBeanException;
- import org.springframework.beans.factory.BeanFactory;
- /**
- * Class used to track a reference to a BeanFactory obtained through
- * a BeanFactoryLocator.
- * @author Colin Sampaleanu
- * @version $Revision: 1.5 $
- * @see BeanFactoryLocator
- */
- public interface BeanFactoryReference {
- /**
- * Returns the BeanFactory instance held by this reference
- */
- BeanFactory getFactory();
- /**
- * <p>Indicate that the BeanFactory instance referred to by this object is not
- * needed any longer by the client code which obtained the ref object. Depending
- * on the actual implementation of BeanFactoryLocator, and the actual type of
- * BeanFactory, this may possibly not actually do anything; alternately in the
- * case of a 'closeable' BeanFactory or derived class (such as ApplicationContext)
- * may 'close' it, or may 'close' it once no more references remain.</p>
- * <p>In an EJB usage scenario this would normally be called from ejbRemove and
- * ejbPassivate.
- * @throws FatalBeanException if the BeanFactory cannot be released
- * @see org.springframework.beans.factory.access.BeanFactoryLocator
- */
- void release() throws FatalBeanException;
- }