org.kohsuke.stapler
Interface StaplerOverridable


public interface StaplerOverridable

A web-bound object can implement this interface to allow designated objects to selectively override URL mappings.

If the designated override objects fail to handle the request, the host object (the one that's implementing StaplerOverridable) will handle the request.

Author:
Kohsuke Kawaguchi

Method Summary
 java.util.Collection<?> getOverrides()
          Returns a list of overridables.
 

Method Detail

getOverrides

java.util.Collection<?> getOverrides()
Returns a list of overridables. Override objects are tried in their iteration order.

Returns:
can be null, which is treated as the same thing as returning an empty collection.


Copyright © 2011. All Rights Reserved.