blob: 633df8dfe1db3f8b2c618575c76e4a3051470346 [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;
/**
* <B>TODO</B>: Document
* @author <a href="ddewolf@apache.org">David H. DeWolf</a>
* @version $Id: ResourceRefDD.java 156636 2005-03-09 12:16:31Z cziegeler $
* @since Feb 28, 2005
*/
public class ResourceRefDD {
private String description;
private String resRefName;
private String resType;
private String resAuth;
private String resSharingScope;
public ResourceRefDD() {
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getResRefName() {
return resRefName;
}
public void setResRefName(String resRefName) {
this.resRefName = resRefName;
}
public String getResType() {
return resType;
}
public void setResType(String resType) {
this.resType = resType;
}
public String getResAuth() {
return resAuth;
}
public void setResAuth(String resAuth) {
this.resAuth = resAuth;
}
public String getResSharingScope() {
return resSharingScope;
}
public void setResSharingScope(String resSharingScope) {
this.resSharingScope = resSharingScope;
}
}