/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
/**
* This descriptor represents a description of a portion of a web app
* in terms of a collection of url patterns and
* a collection of http methods on this patterns.
*
*@author Danny Coward
*/
implements WebResourceCollection
{
public WebResourceCollectionImpl() {
}
}
}
}
}
/**
* Return my urls patterns (String objects)
* @return the set of the url patterns.
*/
if (this.urlPatterns == null) {
}
return this.urlPatterns;
}
/**
* Add a URL pattern to this collection.
* @param the url pattern to be added.
*/
}
/**
* Remove the specified url pattern from the collection.
* @param the url pattern to be removed.
*/
}
/**
* Clean out the collection of URL pattern and replace
* it with the given Set of (String) url patterns.
* @param the url patterns to replace the current set.
*/
this.urlPatterns = urlPatterns;
}
/**
* Return the enumeration of HTTP methods this collection has.
* @return the enumeration of HTTP methods.
*/
if (this.httpMethods == null) {
}
return this.httpMethods;
}
/**
* Returns the HttpMethods this collection has in an array of strings
* This is added to speed up processing while creating webresource permissions
* @return array of strings of HttpMethods
*/
if (httpMethods == null){
}
return array;
}
/**
* Sets the set of HTTP methods this collection has.
* @param the set of HTTP methods.
*/
this.httpMethods = httpMethods;
}
/**
* Adds the given HTTP method to the collection of http methods this
* collection has.
* @param the HTTP method to be added.
*/
}
/**
* Removes the given HTTP method from the collection of http methods.
* @param the HTTP method to be removed.
*/
}
/**
* Return the set of HTTP method omissions this collection has.
* @return the set of HTTP method omissions.
*/
if (this.httpMethodOmissions == null) {
}
return this.httpMethodOmissions;
}
/**
* Returns the HttpMethodOmissions this collection has in an array of strings
* This is added to speed up processing while creating webresource permissions
* @return array of strings of HttpMethodOmissions
*/
if (httpMethodOmissions == null){
}
return array;
}
/**
* Sets the set of HTTP method omissions this collection has.
* @param the set of HTTP method omissions.
*/
}
/**
* Adds the given HTTP method omission to the collection of http methods this
* collection has.
* @param the HTTP method to be added.
*/
}
/**
* Removes the given HTTP method omission from the collection of http methods.
* @param the HTTP method to be removed.
*/
}
/**
* A formatted string of the state.
*/
}
}