List of usage examples for org.springframework.core.type.filter TypeFilter interface-usage
From source file org.codehaus.grepo.core.config.CompositeTypeFilter.java
/** * @author dguggi */ public class CompositeTypeFilter implements TypeFilter { /** A list of type filters. */
From source file org.openmrs.annotation.OpenmrsProfileExcludeFilter.java
/** * Prevents creating a bean if profile is not matched. It returns true if a bean should not be created. */ public class OpenmrsProfileExcludeFilter implements TypeFilter { /**
From source file org.cleverbus.core.common.spring.SystemExcludeRegexPatternTypeFilter.java
/**
* Custom {@link TypeFilter} for using with {@code context:component-scan: exclude-filter} Spring element.
* This filter checks system and environment property "{@value #PATTERN_PROP_NAME}" and if defined then property value
* is used for {@link Pattern} compilation.
* System property has higher priority.
* <p/>
From source file org.fishwife.jrugged.spring.AnnotatedMethodFilter.java
/** * TypeFilter to find classes based on annotations on * {@link java.lang.reflect.Method}s. */ public class AnnotatedMethodFilter implements TypeFilter {
From source file org.cleverbus.core.common.spring.SystemIncludeRegexPatternTypeFilter.java
/**
* Custom {@link TypeFilter} for using with {@code context:component-scan: include-filter} Spring element.
* This filter checks system and environment property "{@value #PATTERN_PROP_NAME}" and if defined then property value
* is used for {@link Pattern} compilation and only classes which match the pattern are included.
* If there is no property defined then all Spring {@link Component} beans are included.
* System property has higher priority.
From source file xc.mst.service.impl.test.TestTypeFilter.java
/** * * @author Benjamin D. Anderson * */ public class TestTypeFilter extends MSTAutoBeanHelper implements TypeFilter {
From source file br.com.caelum.vraptor.ioc.spring.ComponentTypeFilter.java
/** * @author Fabio Kung */ class ComponentTypeFilter implements TypeFilter { private final Collection<Class<? extends Annotation>> annotationTypes;
From source file org.springframework.core.type.filter.AbstractTypeHierarchyTraversingFilter.java
/**
* Type filter that is aware of traversing over hierarchy.
*
* <p>This filter is useful when matching needs to be made based on potentially the
* whole class/interface hierarchy. The algorithm employed uses a succeed-fast
* strategy: if at any time a match is declared, no further processing is