blob: 1ebb2e0657cab50cc265602a1c81ac94dbe0332f [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.pluto.descriptors.servlet;
import java.util.List;
import java.util.ArrayList;
/**
* Web Resource Collection configuration.
*
* @author <a href="ddewolf@apache.org">David H. DeWolf</a>
* @version $Id: WebResourceCollectionDD.java 157475 2005-03-14 22:13:18Z ddewolf $
* @since Mar 4, 2005
*/
public class WebResourceCollectionDD {
private String webResourceName;
private String description;
private List httpMethods = new ArrayList();
private List urlPatterns = new ArrayList();
public WebResourceCollectionDD() {
}
public String getWebResourceName() {
return webResourceName;
}
public void setWebResourceName(String webResourceName) {
this.webResourceName = webResourceName;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public List getHttpMethods() {
return httpMethods;
}
public void setHttpMethods(List httpMethods) {
this.httpMethods = httpMethods;
}
public List getUrlPatterns() {
return urlPatterns;
}
public void setUrlPatterns(List urlPatterns) {
this.urlPatterns = urlPatterns;
}
}