org.apache.myfaces.extensions.validator.core.validation.strategy
Interface BeanValidationStrategyAdapter

All Superinterfaces:
ValidationStrategy
All Known Implementing Classes:
BeanValidationStrategyAdapterImpl

public interface BeanValidationStrategyAdapter
extends ValidationStrategy

Adapter to connect validation strategies with meta-data transformers, if the validation strategy is defined as bean and e.g. spring creates a proxy. it isn't linked to jsr 303. it's just a helper for proxies - you just need it, if you define the validation strategy as bean and e.g. spring creates a proxy for it.

Since:
1.x.1

Method Summary
 String getMetaDataTransformerClassName()
          Must return the class name of the MetaDataTransformer for the wrapped ValidationStrategy of the adapter.
 String getValidationStrategyClassName()
          Must return the class name of ValidationStrategy wrapped by this adapter.
 
Methods inherited from interface org.apache.myfaces.extensions.validator.core.validation.strategy.ValidationStrategy
validate
 

Method Detail

getValidationStrategyClassName

String getValidationStrategyClassName()
Must return the class name of ValidationStrategy wrapped by this adapter.

Returns:
class name of the wrapped ValidationStrategy

getMetaDataTransformerClassName

String getMetaDataTransformerClassName()
Must return the class name of the MetaDataTransformer for the wrapped ValidationStrategy of the adapter.

Returns:
class name of the MetaDataTransformer for the wrapped ValidationStrategy.


Copyright © 2008-2013 The Apache Software Foundation. All Rights Reserved.