Example usage for org.apache.wicket.proxy IProxyTargetLocator interface-usage

List of usage examples for org.apache.wicket.proxy IProxyTargetLocator interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.proxy IProxyTargetLocator interface-usage.

Usage

From source file jp.comuri.wicket.PicoContainerProxyTargetLocator.java

public class PicoContainerProxyTargetLocator implements IProxyTargetLocator {
    private static final long serialVersionUID = 1L;
    private static final Logger LOGGER = LoggerFactory.getLogger(PicoContainerProxyTargetLocator.class);

    private final Class<?> targetType;

From source file org.artifactory.webapp.spring.ArtifactoryBeanLocator.java

/**
 * @author Yoav Landman
 */
public class ArtifactoryBeanLocator implements IProxyTargetLocator {

    private final Class<?> type;

From source file org.jabylon.rest.ui.wicket.injector.OSGiProxyTargetLocator.java

/**
 * @author Johannes Utzig (jutzig.dev@googlemail.com)
 *
 */
public class OSGiProxyTargetLocator implements IProxyTargetLocator {

From source file org.projectforge.web.registry.DaoLocator.java

/**
 * @author Kai Reinhard (k.reinhard@micromata.de)
 * 
 */
public class DaoLocator implements IProxyTargetLocator {
    private static final long serialVersionUID = 4613996021067459700L;

From source file org.seasar.wicket.injection.S2ProxyTargetLocator.java

/**
 * S2Container?ProxyTargetLocator
 * <p>
 * {@link ProxyBindingTypeDef}?????????DI?????????
 * </p>
 * 

From source file org.wicketstuff.javaee.EntityManagerFactoryLocator.java

/**
 * Implementation of {@link IProxyTargetLocator} to locate Java EE 5 EntityManagerFactory
 * <p/>
 * To use this technique in a Wicket Page, just insert a line like<br/>
 * <p/>
 * private @PersistenceUnit(unitName="defaultPersistenceContext") EntityManagerFactory emf;

From source file org.wicketstuff.javaee.JavaEEBeanLocator.java

/**
 * Implementation of {@link IProxyTargetLocator} to locate ejbs using Java EE 5 resource injection.
 * To use this technique in a Wicket Page, annotate a instance variable with
 * 
 * @author Filippo Diotalevi
 * @EJB, e.g.<br/>

From source file org.wicketstuff.javaee.JndiObjectLocator.java

/**
 * Implementation of {@link IProxyTargetLocator} to locate object using JNDI
 * <p/>
 * To use this technique in a Wicket Page, just insert a line like<br/>
 * <p/>
 * private @Resource(name="referenceName") YouClass obj;

From source file org.xaloon.wicket.component.inject.j2ee.JavaWeldBeanLocator.java

/**
 * @author vytautas.r
 */
public class JavaWeldBeanLocator implements IProxyTargetLocator {

    /**