Skip to content

Commit

Permalink
Remove InstanceListener, InstanceEvent and InstanceSupport
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1722946 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
markt-asf committed Jan 4, 2016
1 parent b4c957d commit eaf6c6b
Show file tree
Hide file tree
Showing 18 changed files with 17 additions and 1,271 deletions.
33 changes: 0 additions & 33 deletions java/org/apache/catalina/Context.java
Expand Up @@ -811,17 +811,6 @@ public void setSessionCookiePathUsesTrailingSlash(
*/
public void addFilterMapBefore(FilterMap filterMap);

/**
* Add the classname of an InstanceListener to be added to each
* Wrapper appended to this Context.
*
* @param listener Java class name of an InstanceListener class
*
* @deprecated Will be removed in 9.0.x onwards
*/
@Deprecated
public void addInstanceListener(String listener);


/**
* Add a Locale Encoding Mapping (see Sec 5.4 of Servlet spec 2.4)
Expand Down Expand Up @@ -1003,16 +992,6 @@ public void addServletMapping(String pattern, String name,
public FilterMap[] findFilterMaps();


/**
* Return the set of InstanceListener classes that will be added to
* newly created Wrappers automatically.
*
* @deprecated Will be removed in 9.0.x onwards
*/
@Deprecated
public String[] findInstanceListeners();


/**
* Return the MIME type to which the specified extension is mapped,
* if any; otherwise return <code>null</code>.
Expand Down Expand Up @@ -1231,18 +1210,6 @@ public void addServletMapping(String pattern, String name,
public void removeFilterMap(FilterMap filterMap);


/**
* Remove a class name from the set of InstanceListener classes that
* will be added to newly created Wrappers.
*
* @param listener Class name of an InstanceListener class to be removed
*
* @deprecated Will be removed in 9.0.x onwards
*/
@Deprecated
public void removeInstanceListener(String listener);


/**
* Remove the MIME mapping for the specified extension, if it exists;
* otherwise, no action is taken.
Expand Down

0 comments on commit eaf6c6b

Please sign in to comment.