Example usage for org.springframework.beans BeanWrapperImpl subclass-usage

List of usage examples for org.springframework.beans BeanWrapperImpl subclass-usage

Introduction

In this page you can find the example usage for org.springframework.beans BeanWrapperImpl subclass-usage.

Usage

From source file org.sakaiproject.metaobj.utils.mvc.impl.BeanWrapperBase.java

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.BeanWrapper;
import org.springframework.beans.BeanWrapperImpl;
import org.springframework.beans.BeansException;

From source file org.codehaus.groovy.grails.orm.hibernate.support.HibernateBeanWrapper.java

/**
 * BeanWrapper implementaion that will not lazy initialize entity properties.
 */
public class HibernateBeanWrapper extends BeanWrapperImpl {

    private static final Log log = LogFactory.getLog(HibernateBeanWrapper.class);

From source file org.grails.orm.hibernate.support.HibernateBeanWrapper.java

/**
 * BeanWrapper implementaion that will not lazy initialize entity properties.
 */
public class HibernateBeanWrapper extends BeanWrapperImpl {

    private static final Log LOG = LogFactory.getLog(HibernateBeanWrapper.class);

From source file org.kuali.rice.krad.web.bind.UifViewBeanWrapper.java

/**
 * Class is a top level BeanWrapper for a UIF View Model.
 *
 * <p>Registers custom property editors configured on the field associated with the property name for which
 * we are getting or setting a value. In addition determines if the field requires encryption and if so applies
 * the {@link UifEncryptionPropertyEditorWrapper}</p>