📄 jndirealmform.java
字号:
/*
* $Header: /home/cvs/jakarta-tomcat-catalina/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/realm/JNDIRealmForm.java,v 1.4 2003/03/25 08:29:05 amyroh Exp $
* $Revision: 1.4 $
* $Date: 2003/03/25 08:29:05 $
*
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "The Jakarta Project", "Struts", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
* from this software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
*/
package org.apache.webapp.admin.realm;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import java.net.InetAddress;
import java.util.List;
import org.apache.webapp.admin.ApplicationServlet;
import org.apache.webapp.admin.LabelValueBean;
/**
* Form bean for the JNDI realm page.
*
* @author Manveen Kaur
* @version $Revision: 1.4 $ $Date: 2003/03/25 08:29:05 $
*/
public final class JNDIRealmForm extends RealmForm {
// ----------------------------------------------------- Instance Variables
/**
* The text for the connection user name.
*/
private String connectionName = null;
/**
* The text for the connection Password.
*/
private String connectionPassword = null;
/**
* The text for the connection URL.
*/
private String connectionURL = null;
/**
* The text for the context Factory.
*/
private String contextFactory = null;
/**
* The text for the digest algorithm.
*/
private String digest = null;
/**
* The text for the role Base.
*/
private String roleBase = null;
/**
* The text for the role name.
*/
private String roleName = null;
/**
* The text for the role Pattern.
*/
private String rolePattern = null;
/**
* Should we search the entire subtree for matching roles?
*/
private String roleSubtree = "false";
/**
* The text for the user Base.
*/
private String userBase = null;
/**
* The text for the user Password.
*/
private String userPassword = null;
/**
* The text for the user Pattern.
*/
private String userPattern = null;
/**
* The text for the user role name.
*/
private String userRoleName = null;
/**
* The text for the user Search.
*/
private String userSearch = null;
/**
* Should we search the entire subtree for matching users?
*/
private String userSubtree = "false";
/**
* Set of valid values for search subtrees(true/false).
*/
private List searchVals = null;
// ------------------------------------------------------------- Properties
/**
* Return the search Vals.
*/
public List getSearchVals() {
return this.searchVals;
}
/**
* Set the search Vals.
*/
public void setSearchVals(List searchVals) {
this.searchVals = searchVals;
}
/**
* Return the roleSubtree boolean Text.
*/
public String getRoleSubtree() {
return this.roleSubtree;
}
/**
* Set the roleSubtree Text.
*/
public void setRoleSubtree(String roleSubtree) {
this.roleSubtree = roleSubtree;
}
/**
* Return the userSubtree boolean Text.
*/
public String getUserSubtree() {
return this.userSubtree;
}
/**
* Set the userSubtree Text.
*/
public void setUserSubtree(String userSubtree) {
this.userSubtree = userSubtree;
}
/**
* Return the digest.
*/
public String getDigest() {
return this.digest;
}
/**
* Set the digest.
*/
public void setDigest(String digest) {
this.digest = digest;
}
/**
* Return the roleBase .
*/
public String getRoleBase() {
return this.roleBase ;
}
/**
* Set the roleBase .
*/
public void setRoleBase(String roleBase ) {
this.roleBase = roleBase ;
}
/**
* Return the role name.
*/
public String getRoleName() {
return this.roleName ;
}
/**
* Set the role name Attribute .
*/
public void setRoleName(String roleName) {
this.roleName = roleName ;
}
/**
* Return the userBase.
*/
public String getUserBase() {
return this.userBase ;
}
/**
* Set the userBase.
*/
public void setUserBase(String userBase ) {
this.userBase = userBase ;
}
/**
* Return the user role name.
*/
public String getUserRoleName() {
return this.userRoleName ;
}
/**
* Set the user role name Attribute .
*/
public void setUserRoleName(String userRoleName) {
this.userRoleName = userRoleName ;
}
/**
* Return the role Pattern
*/
public String getRolePattern() {
return this.rolePattern ;
}
/**
* Set the role Pattern.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -