Interface StaplerFallback

  • All Known Implementing Classes:
    BoundObjectTable

    public interface StaplerFallback
    An object can fall back to another object for a part of its UI processing, by implementing this interface and designating another object from getStaplerFallback().

    Compared to StaplerProxy, stapler handles this interface at the very end, whereas StaplerProxy is handled at the very beginning.

    Author:
    Kohsuke Kawaguchi
    See Also:
    StaplerProxy
    • Method Detail

      • getStaplerFallback

        Object getStaplerFallback()
        Returns the object that is further searched for processing web requests.
        Returns:
        If null or this is returned, stapler behaves as if the object didn't implement this interface (which means the request processing fails with 404.)