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

org.beigesoft.afactory.IFactoryAppBeans Maven / Gradle / Ivy

Go to download

A-Jetty Base can run on Android Java as well as on standard Java 7+ and it can run precompiled JSP/JSTL.

There is a newer version: 1.0.5
Show newest version
package org.beigesoft.afactory;

/*
 * Beigesoft ™
 *
 * Licensed under the Apache License, Version 2.0
 *
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 */

/**
 * 

Abstraction of application beans factory. * It is usefull when it is not used for any reason * an IOC XML configurable framework. *

* * @author Yury Demidenko */ public interface IFactoryAppBeans { /** *

Get bean in lazy mode (if bean is null then initialize it).

* @param pBeanName - bean name * @return Object - requested bean * @throws Exception - an exception */ Object lazyGet(String pBeanName) throws Exception; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy