Interface RewriteProvider<C,T extends Rewrite>

All Superinterfaces:
org.ocpsoft.common.pattern.Specialized<Rewrite>, org.ocpsoft.common.pattern.Weighted

public interface RewriteProvider<C,T extends Rewrite> extends org.ocpsoft.common.pattern.Weighted, org.ocpsoft.common.pattern.Specialized<Rewrite>
SPI for Rewrite event handling.
Author:
Lincoln Baxter, III
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    init(C context)
    Initialize this RewriteProvider
    void
    rewrite(T event)
    Handle the given Rewrite event.
    void
    shutdown(C context)
    Shut down this RewriteProvider

    Methods inherited from interface org.ocpsoft.common.pattern.Specialized

    handles

    Methods inherited from interface org.ocpsoft.common.pattern.Weighted

    priority
  • Method Details