1 19 20 package org.netbeans.api.web.dd; 21 import org.netbeans.api.web.dd.common.VersionNotSupportedException; 22 29 public interface FilterMapping extends org.netbeans.api.web.dd.common.CommonDDBean { 30 33 public void setFilterName(java.lang.String value); 34 37 public java.lang.String getFilterName(); 38 41 public void setUrlPattern(java.lang.String value); 42 45 public java.lang.String getUrlPattern(); 46 49 public void setServletName(java.lang.String value); 50 53 public java.lang.String getServletName(); 54 58 public void setDispatcher(int index, java.lang.String value) throws VersionNotSupportedException; 59 63 public java.lang.String getDispatcher(int index) throws VersionNotSupportedException; 64 68 public void setDispatcher(java.lang.String [] value) throws VersionNotSupportedException; 69 72 public java.lang.String [] getDispatcher() throws VersionNotSupportedException; 73 76 public int sizeDispatcher() throws VersionNotSupportedException; 77 81 public int addDispatcher(java.lang.String value) throws VersionNotSupportedException; 82 86 public int removeDispatcher(java.lang.String value) throws VersionNotSupportedException; 87 88 } 89 | Popular Tags |