Interface WebResourceCollection
-
- All Superinterfaces:
WebDescriptor
- All Known Implementing Classes:
WebResourceCollectionImpl
public interface WebResourceCollection extends WebDescriptor
This interface represents the API to an object which represents the information about a web resource collection.- Author:
- Danny Coward
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddHttpMethod(String httpMethod)voidaddHttpMethodOmission(String httpMethodOmission)voidaddUrlPattern(String urlPattern)Set<String>getHttpMethodOmissions()String[]getHttpMethodOmissionsAsArray()Set<String>getHttpMethods()String[]getHttpMethodsAsArray()Set<String>getUrlPatterns()-
Methods inherited from interface com.sun.enterprise.deployment.web.WebDescriptor
getDescription, getLargeIconUri, getName, getSmallIconUri, setDescription, setLargeIconUri, setName, setSmallIconUri
-
-
-
-
Method Detail
-
addUrlPattern
void addUrlPattern(String urlPattern)
-
addHttpMethod
void addHttpMethod(String httpMethod)
-
getHttpMethodsAsArray
String[] getHttpMethodsAsArray()
-
addHttpMethodOmission
void addHttpMethodOmission(String httpMethodOmission)
-
getHttpMethodOmissionsAsArray
String[] getHttpMethodOmissionsAsArray()
-
-