org.kohsuke.stapler
Interface StaplerFallback


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 Summary
 java.lang.Object getStaplerFallback()
          Returns the object that is further searched for processing web requests.
 

Method Detail

getStaplerFallback

java.lang.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 failes with 404.)


Copyright © 2011. All Rights Reserved.