File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
core/src/main/java/hudson/util Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 2525package hudson .util ;
2626
2727import edu .umd .cs .findbugs .annotations .CheckForNull ;
28- import hudson .ExtensionPoint ;
2928import hudson .security .SecurityRealm ;
3029import io .jenkins .servlet .FilterWrapper ;
3130import io .jenkins .servlet .ServletExceptionWrapper ;
5150import org .kohsuke .stapler .CompatibleFilter ;
5251
5352/**
54- * Servlet {@link Filter} that chains multiple {@link Filter}s, provided by plugins
55- *
53+ * Servlet {@link Filter} that chains multiple {@link Filter}s, provided by plugins.
5654 * <p>
57- * While this class by itself is not an extension point, I'm marking this class
58- * as an extension point so that this class will be more discoverable.
59- *
55+ * In most cases you should rather use {@link HttpServletFilter}.
6056 * <p>
6157 * {@link SecurityRealm} that wants to contribute {@link Filter}s should first
6258 * check if {@link SecurityRealm#createFilter(FilterConfig)} is more appropriate.
6359 *
6460 * @see SecurityRealm
6561 */
66- public final class PluginServletFilter implements CompatibleFilter , ExtensionPoint {
62+ public final class PluginServletFilter implements CompatibleFilter {
6763 private final List <Filter > list = new CopyOnWriteArrayList <>();
6864
6965 private /*almost final*/ FilterConfig config ;
You can’t perform that action at this time.
0 commit comments