An extension of org.jboss.beans.metadata.spi.factory.BeanFactory is needed:
| public interface BeanFactory
| {
| /**
| * Create bean.
| *
| * @return bean
| * @throws Throwable for any error
| */
| Object createBean() throws Throwable;
| }
| public interface PooledBeanFactory extends BeanFactory
| {
| destroy(Object instance) throws Throwable;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4136227#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...