Example usage for org.springframework.expression PropertyAccessor interface-usage

List of usage examples for org.springframework.expression PropertyAccessor interface-usage

Introduction

In this page you can find the example usage for org.springframework.expression PropertyAccessor interface-usage.

Usage

From source file org.echocat.redprecursor.annotations.utils.MapPropertyAccessor.java

public class MapPropertyAccessor implements PropertyAccessor {

    @Override
    public Class<?>[] getSpecificTargetClasses() {
        return new Class<?>[] { Map.class };
    }

From source file org.echocat.redprecursor.annotations.utils.MethodCallPropertyAccessor.java

public class MethodCallPropertyAccessor implements PropertyAccessor {

    public static final String THIS_KEYWORD = "this";

    @Override
    public Class<?>[] getSpecificTargetClasses() {

From source file org.springjutsu.validation.spel.NamedAttributeAccessorPropertyAccessor.java

/**
 * Property accessor which provides map like access
 * to map like objects configured using the AbstractNamedAttributeAccessor
 * base class.
 * @author Clark Duplichien
 *

From source file com.fitbur.core.el.spring.internal.MapPropertyAccessor.java

/**
 *
 * @author saden
 */
@Service
public class MapPropertyAccessor implements PropertyAccessor {

From source file net.abhinavsarkar.spelhelper.ReadOnlyGenericPropertyAccessor.java

abstract class ReadOnlyGenericPropertyAccessor implements PropertyAccessor {

    @Override
    public final boolean canWrite(final EvaluationContext context, final Object target, final String name)
            throws AccessException {
        return false;

From source file org.springjutsu.validation.spel.CurrentModelPropertyAccessor.java

/**
 * Makes the object currently under validation,
 * i.e. the object represented by the combination of
 * nested and template paths, referenceable from SPEL 
 * expressions in the validation XML files.
 * Delegate directly to the current model accessed by

From source file it.geosolutions.opensdi2.workflow.transform.spel.accessors.MapPropertyAccessor.java

/**
 * Accessor for Map<String,Object>.
 * @author Lorenzo Natali (lorenzo.natali at geo-solutions.it)
 *
 */
public class MapPropertyAccessor implements PropertyAccessor {

From source file org.jasig.portlet.spring.DefaultPropertyAccessor.java

/**
 * @author Josh Helmer, jhelmer@unicon.net
 *
 * Property accessor that tries to log an error and provide a default value
 * if a property can not be found.
 *

From source file org.jasig.portlet.widget.service.DefaultPropertyAccessor.java

/**
 * @author Josh Helmer, jhelmer@unicon.net
 *
 * Property accessor that tries to log an error and provide a default value
 * if a property can not be found.
 *

From source file io.twipple.springframework.data.clusterpoint.convert.ClusterpointDocumentPropertyAccessor.java

/**
 * A property accessor for document properties.
 *
 * @author Olegs Briska
 */
public class ClusterpointDocumentPropertyAccessor implements PropertyAccessor {