Interface PolicyValidatorCallbackHandler

All Known Subinterfaces:
ExtendedPolicyValidatorCallbackHandler
All Known Implementing Classes:
PolicyBasedResultsValidator

public interface PolicyValidatorCallbackHandler
Callback handler interface to allow different implementations of policy based results validation. Default implementation is org.apache.rampart.PolicyBasedResultsValidator. Custom implementations could be provided in rampart config as shown in below example. Example:
  <ramp:RampartConfig xmlns:ramp="http://ws.apache.org/rampart/policy"> 
   <ramp:policyValidatorCbClass>xx.yy.CustomPolicyValidator</ramp:policyValidatorCbClass>
    ...
   </ramp:RampartConfig>
  
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    validate(ValidatorData data, Vector results)
    Validate policy based results.
  • Method Details