Example usage for org.apache.wicket.injection IFieldValueFactory interface-usage

List of usage examples for org.apache.wicket.injection IFieldValueFactory interface-usage

Introduction

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

Usage

From source file com.ttdev.wicketpagetest.MockedBeanFieldValueFactory.java

/**
 * An {@link IFieldValueFactory} that provides mocked objects to fields
 * annotated by {@link #annotClass} or by {@link Mock}.
 * 
 * @author Andy Chu
 * @author Kent Tong

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

public class PicoContainerFieldValueFactory implements IFieldValueFactory {
    private static final Logger LOGGER = LoggerFactory.getLogger(PicoContainerFieldValueFactory.class);

    public Object getFieldValue(Field field, Object fieldOwner) {
        Class<?> type = field.getType();
        return LazyInitProxyFactory.createProxy(type, new PicoContainerProxyTargetLocator(type));

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

/**
 * @author Yoav Landman
 */
public class ArtifactoryContextAnnotFieldValueFactory implements IFieldValueFactory {

    private ISpringContextLocator contextLocator;

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

public class OSGiFieldValueFactory implements IFieldValueFactory {

    boolean wrapInProxies = true;

    @Override
    public Object getFieldValue(Field field, Object fieldOwner) {

From source file org.wicketstuff.javaee.injection.JavaEEProxyFieldValueFactory.java

/**
 * {@link IFieldValueFactory} that creates proxies of EJBs based on the {@link javax.ejb.EJB}
 * annotation applied to a field.
 * 
 * @author Filippo Diotalevi
 */

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

/**
 * @author vytautas.r
 */
public class JavaWeldProxyFieldValueFactory implements IFieldValueFactory {

    /**

From source file org.xaloon.wicket.component.inject.spring.CdiProxyFieldValueFactory.java

public class CdiProxyFieldValueFactory implements IFieldValueFactory {
    private static final String NULL = "NULL";

    private final ISpringContextLocator contextLocator;
    private final SpringAnnotationResolver[] beanNameResolvers;

From source file ro.fortsoft.wicket.plugin.PluginFieldValueFactory.java

/**
 * @author Decebal Suiu
 */
public class PluginFieldValueFactory implements IFieldValueFactory {

    private PluginManager pluginManager;