412413414415416417418
* @return filter path from web.xml */ protected String getFilterPathFromWebXml(final boolean isServlet, final FilterConfig filterConfig) { return new WebXmlFile().getUniqueFilterPath(isServlet, filterConfig); }
440441442443444445446
386387388389390391392
* @return filter path from web.xml */ protected String getFilterPathFromWebXml(final boolean isServlet, final FilterConfig filterConfig) { return new WebXmlFile().getFilterPath(isServlet, filterConfig); }
141142143144145146147148149150151
private String getFilterPath(String string, InputStream in) { try { return new WebXmlFile().getFilterPath(false, string, in); } catch (ParserConfigurationException ex) { throw new RuntimeException(ex); }
181182183184185186187188189190191
private String getFilterPath(String filterName, InputStream in) { try { return new WebXmlFile().getUniqueFilterPath(false, filterName, in); } catch (ParserConfigurationException ex) { throw new RuntimeException(ex); }
255256257258259260261262263264265