Searched defs:httpMethodOmissions (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/web/web-embed/api/src/main/java/org/glassfish/embeddable/web/config/
H A DWebResourceCollection.java72 private Set<String> httpMethodOmissions; field in class:WebResourceCollection
121 if (httpMethodOmissions != null) {
141 * @param httpMethodOmissions the HTTP methods to be
146 public void setHttpMethodOmissions(Set<String> httpMethodOmissions) argument
153 this.httpMethodOmissions = httpMethodOmissions;
162 return httpMethodOmissions;
174 toStringBuffer.append(" httpMethodOmissions ").append(httpMethodOmissions);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DWebResourceCollectionImpl.java62 private Set<String> httpMethodOmissions; field in class:WebResourceCollectionImpl
74 if (other.httpMethodOmissions != null) {
75 this.httpMethodOmissions = new HashSet<String>(other.httpMethodOmissions);
169 if (this.httpMethodOmissions == null) {
170 this.httpMethodOmissions = new HashSet<String>();
172 return this.httpMethodOmissions;
181 if (httpMethodOmissions == null){
184 String[] array = (String[])httpMethodOmissions.toArray(new String[0]);
191 public void setHttpMethodOmissions(Set<String> httpMethodOmissions) { argument
[all...]

Completed in 12 milliseconds