Uses of Class
name.matthewgreet.strutscommons.exception.PolicyLookupRejectionException
Packages that use PolicyLookupRejectionException
Package
Description
Exceptions used internally by interceptors.
Various helper classes, especially for session-based data, and libraries.
-
Uses of PolicyLookupRejectionException in name.matthewgreet.strutscommons.exception
Subclasses of PolicyLookupRejectionException in name.matthewgreet.strutscommons.exceptionModifier and TypeClassDescriptionclassException indicating a converter or collection converter could not be added because it's not a default converter or default collection converter.classException describing that a custom policy cannot be added.classException describing that a policy cannot be added as it's an interface or abstract class, not an implementing class. -
Uses of PolicyLookupRejectionException in name.matthewgreet.strutscommons.util
Methods in name.matthewgreet.strutscommons.util that throw PolicyLookupRejectionExceptionModifier and TypeMethodDescriptionprotected <A extends Annotation,P extends Policy<A>, T>
InterceptorCommonLibrary.PolicyEntry<A, ?, ?> DefaultPolicyLookup.addDynamicPolicyInternalManual(InterceptorCommonLibrary.PolicyEntry<A, P, T> policyEntry) <C extends CollectionConverter<?,T>, T>
InterceptorCommonLibrary.DefaultCollectionConverterEntry<T, ?> DefaultPolicyLookup.putDefaultCollectionConverter(Class<C> collectionConverterClass) Sets form field collection converter as the default collection converter for its recipient item type, replacing any existing one.<C extends CollectionConverter<?,T>, T>
InterceptorCommonLibrary.DefaultCollectionConverterEntry<T, ?> PolicyLookup.putDefaultCollectionConverter(Class<C> collectionConverterClass) Adds default collection converter so it can be found from its recipient type, returning description of any existing collection converter that was replaced.<C extends Converter<?,T>, T>
InterceptorCommonLibrary.DefaultConverterEntry<T, ?> DefaultPolicyLookup.putDefaultConverter(Class<C> converterClass) Sets form field converter as the default converter for its recipient type, replacing any existing converter.<C extends Converter<?,T>, T>
InterceptorCommonLibrary.DefaultConverterEntry<T, ?> PolicyLookup.putDefaultConverter(Class<C> converterClass) Adds default converter so it can be found from its recipient type, returning description of any existing converter that was replaced.<A extends Annotation,P extends Policy<A>, T>
InterceptorCommonLibrary.PolicyEntry<A, ?, ?> Adds a form field policy not found by classpath scanning, so it can be found from the annotation that configures it, replacing any existing using the same annotation.<A extends Annotation,P extends Policy<A>, T>
InterceptorCommonLibrary.PolicyEntry<A, ?, ?> Adds policy class so it can be found from its annotation class, returning description of any existing policy that was replaced.<C extends CollectionConverter<?,T>, T>
InterceptorCommonLibrary.DefaultCollectionConverterEntry<T, C> PolicyLookup.removeDefaultCollectionConverter(Class<? extends T> itemClass) Removes default collection converter class from lookup, returning description of any existing converter that was removed.<C extends Converter<?,T>, T>
InterceptorCommonLibrary.DefaultConverterEntry<T, C> PolicyLookup.removeDefaultConverter(Class<? extends T> fieldClass) Removes default converter class from lookup, returning description of any existing converter that was removed.<A extends Annotation,P extends Policy<A>, T>
InterceptorCommonLibrary.PolicyEntry<A, P, T> PolicyLookup.removePolicy(Class<? extends A> annotationClass) Removes policy class from lookup, returning description of any existing policy that was removed.