org.glassfish.grizzly.servlet.ver30
Class WebResourceCollectionType

java.lang.Object
  extended by org.glassfish.grizzly.servlet.ver30.WebResourceCollectionType

public class WebResourceCollectionType
extends java.lang.Object

The web-resource-collectionType is used to identify the resources and HTTP methods on those resources to which a security constraint applies. If no HTTP methods are specified, then the security constraint applies to all HTTP methods. If HTTP methods are specified by http-method-omission elements, the security constraint applies to all methods except those identified in the collection. http-method-omission and http-method elements are never mixed in the same collection. Used in: security-constraint

Java class for web-resource-collectionType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="web-resource-collectionType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="web-resource-name" type="{http://java.sun.com/xml/ns/javaee}string"/>
         <element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="url-pattern" type="{http://java.sun.com/xml/ns/javaee}url-patternType" maxOccurs="unbounded"/>
         <choice minOccurs="0">
           <element name="http-method" type="{http://java.sun.com/xml/ns/javaee}http-methodType" maxOccurs="unbounded"/>
           <element name="http-method-omission" type="{http://java.sun.com/xml/ns/javaee}http-methodType" maxOccurs="unbounded"/>
         </choice>
       </sequence>
       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<DescriptionType> description
           
protected  java.util.List<java.lang.String> httpMethod
           
protected  java.util.List<java.lang.String> httpMethodOmission
           
protected  java.lang.String id
           
protected  java.util.List<UrlPatternType> urlPattern
           
protected  String webResourceName
           
 
Constructor Summary
WebResourceCollectionType()
           
 
Method Summary
 java.util.List<DescriptionType> getDescription()
          Gets the value of the description property.
 java.util.List<java.lang.String> getHttpMethod()
          Gets the value of the httpMethod property.
 java.util.List<java.lang.String> getHttpMethodOmission()
          Gets the value of the httpMethodOmission property.
 java.lang.String getId()
          Gets the value of the id property.
 java.util.List<UrlPatternType> getUrlPattern()
          Gets the value of the urlPattern property.
 String getWebResourceName()
          Gets the value of the webResourceName property.
 void setId(java.lang.String value)
          Sets the value of the id property.
 void setWebResourceName(String value)
          Sets the value of the webResourceName property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

webResourceName

protected String webResourceName

description

protected java.util.List<DescriptionType> description

urlPattern

protected java.util.List<UrlPatternType> urlPattern

httpMethod

protected java.util.List<java.lang.String> httpMethod

httpMethodOmission

protected java.util.List<java.lang.String> httpMethodOmission

id

protected java.lang.String id
Constructor Detail

WebResourceCollectionType

public WebResourceCollectionType()
Method Detail

getWebResourceName

public String getWebResourceName()
Gets the value of the webResourceName property.

Returns:
possible object is String

setWebResourceName

public void setWebResourceName(String value)
Sets the value of the webResourceName property.

Parameters:
value - allowed object is String

getDescription

public java.util.List<DescriptionType> getDescription()
Gets the value of the description property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the description property.

For example, to add a new item, do as follows:

    getDescription().add(newItem);
 

Objects of the following type(s) are allowed in the list DescriptionType


getUrlPattern

public java.util.List<UrlPatternType> getUrlPattern()
Gets the value of the urlPattern property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the urlPattern property.

For example, to add a new item, do as follows:

    getUrlPattern().add(newItem);
 

Objects of the following type(s) are allowed in the list UrlPatternType


getHttpMethod

public java.util.List<java.lang.String> getHttpMethod()
Gets the value of the httpMethod property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the httpMethod property.

For example, to add a new item, do as follows:

    getHttpMethod().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getHttpMethodOmission

public java.util.List<java.lang.String> getHttpMethodOmission()
Gets the value of the httpMethodOmission property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the httpMethodOmission property.

For example, to add a new item, do as follows:

    getHttpMethodOmission().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getId

public java.lang.String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(java.lang.String value)
Sets the value of the id property.

Parameters:
value - allowed object is String


Copyright © 2011 Oracle Corpration. All Rights Reserved.