📄 connectorform.java
字号:
/*
* Copyright 2001,2004 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.webapp.admin.connector;
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;
/**
* Form bean for the connector page.
*
* @author Manveen Kaur
* @version $Revision: 302986 $ $Date: 2004-06-27 22:14:52 -0400 (Sun, 27 Jun 2004) $
*/
public final class ConnectorForm extends ActionForm {
// ----------------------------------------------------- Instance Variables
/**
* The administrative action represented by this form.
*/
private String adminAction = "Edit";
/**
* The object name of the Connector this bean refers to.
*/
private String objectName = null;
/**
* The object name of the service this connector belongs to.
*/
private String serviceName = null;
/**
* The text for the scheme.
*/
private String scheme = null;
/**
* The text for the connector type.
* Specifies if it is a CoyoteConnector or AJP13Connector etc.
*/
private String connectorType = null;
/**
* The text for the node label.
*/
private String nodeLabel = null;
/**
* The text for the accept Count.
*/
private String acceptCountText = null;
/**
* The text for the algorithm.
*/
private String algorithm = null;
/**
* The text for the ciphers.
*/
private String ciphers = null;
/**
* The text for the Connection Linger.
*/
private String connLingerText = null;
/**
* The text for the Connection Time Out.
*/
private String connTimeOutText = null;
/**
* The text for the Connection Upload Time Out.
*/
private String connUploadTimeOutText = null;
/**
* The text for the buffer size.
*/
private String bufferSizeText = null;
/**
* The value of disable upload timeout.
*/
private String disableUploadTimeout = "false";
/**
* The value of enable Lookups.
*/
private String enableLookups = "false";
/**
* The value of compression.
*/
private String compression = "off";
/**
* The text for the address.
*/
private String address = null;
/**
* The text for the minProcessors.
*/
private String minProcessorsText = null;
/**
* The text for the max Processors.
*/
private String maxProcessorsText = null;
/**
* The text for the maxKeepAlive.
*/
private String maxKeepAliveText = null;
/**
* The text for the maxSpare.
*/
private String maxSpare = null;
/**
* The text for the maxThreads.
*/
private String maxThreads = null;
/**
* The text for the minSpare.
*/
private String minSpare = null;
/**
* The text for the threadPriority.
*/
private String threadPriority = null;
/**
* The text for the URIEncoding.
*/
private String uriEncodingText = null;
/**
* The value of useBodyEncodingForURI.
*/
private String useBodyEncodingForURI = "false";
/**
* The value of allowTrace.
*/
private String allowTrace = "false";
/**
* The text for the port.
*/
private String portText = null;
/**
* The text for the redirect port.
*/
private String redirectPortText = null;
/**
* The text for the proxyName.
*/
private String proxyName = null;
/**
* The text for the proxy Port Number.
*/
private String proxyPortText = null;
/**
* The text for the connectorName.
*/
private String connectorName = null;
/**
* Whether client authentication is supported.
*/
private String clientAuthentication = "false";
/**
* The keyStore Filename.
*/
private String keyStoreFileName = null;
/**
* The keyStore Password.
*/
private String keyStorePassword = null;
/**
* The keyStore Type.
*/
private String keyStoreType = null;
/**
* The text for the Ssl Protocol.
*/
private String sslProtocol= null;
/*
* Represent boolean (true, false) values for enableLookups etc.
*/
private List booleanVals = null;
/*
* Represent supported connector types.
*/
private List connectorTypeVals = null;
/**
* Represent supported clientAuth values.
*/
private List clientAuthVals = null;
/**
* The value of secure.
*/
private String secure = "false";
/**
* The value of tcpNoDelay.
*/
private String tcpNoDelay = "true";
/**
* The value of xpoweredBy.
*/
private String xpoweredBy = "false";
// ------------------------------------------------------------- Properties
/**
* Return the administrative action represented by this form.
*/
public String getAdminAction() {
return this.adminAction;
}
/**
* Set the administrative action represented by this form.
*/
public void setAdminAction(String adminAction) {
this.adminAction = adminAction;
}
/**
* Return the object name of the Connector this bean refers to.
*/
public String getObjectName() {
return this.objectName;
}
/**
* Set the object name of the Connector this bean refers to.
*/
public void setObjectName(String objectName) {
this.objectName = objectName;
}
/**
* Return the object name of the service this connector belongs to.
*/
public String getServiceName() {
return this.serviceName;
}
/**
* Set the object name of the Service this connector belongs to.
*/
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
/**
* Return the Scheme.
*/
public String getScheme() {
return this.scheme;
}
/**
* Set the Scheme.
*/
public void setScheme(String scheme) {
this.scheme = scheme;
}
/**
* Return the Connector type.
*/
public String getConnectorType() {
return this.connectorType;
}
/**
* Set the Connector type.
*/
public void setConnectorType(String connectorType) {
this.connectorType = connectorType;
}
/**
* Return the label of the node that was clicked.
*/
public String getNodeLabel() {
return this.nodeLabel;
}
/**
* Set the node label.
*/
public void setNodeLabel(String nodeLabel) {
this.nodeLabel = nodeLabel;
}
/**
* Return the acceptCountText.
*/
public String getAcceptCountText() {
return this.acceptCountText;
}
/**
* Set the acceptCountText.
*/
public void setAcceptCountText(String acceptCountText) {
this.acceptCountText = acceptCountText;
}
/**
* Return the algorithm.
*/
public String getAlgorithm() {
return this.algorithm;
}
/**
* Set the algorithm.
*/
public void setAlgorithm(String algorithm) {
this.algorithm = algorithm;
}
/**
* Return the ciphers.
*/
public String getCiphers() {
return this.ciphers;
}
/**
* Set the ciphers.
*/
public void setCiphers(String ciphers) {
this.ciphers = ciphers;
}
/**
* Return the connLingerText.
*/
public String getConnLingerText() {
return this.connLingerText;
}
/**
* Set the connLingerText.
*/
public void setConnLingerText(String connLingerText) {
this.connLingerText = connLingerText;
}
/**
* Return the connTimeOutText.
*/
public String getConnTimeOutText() {
return this.connTimeOutText;
}
/**
* Set the connTimeOutText.
*/
public void setConnTimeOutText(String connTimeOutText) {
this.connTimeOutText = connTimeOutText;
}
/**
* Return the connUploadTimeOutText.
*/
public String getConnUploadTimeOutText() {
return this.connUploadTimeOutText;
}
/**
* Set the connUploadTimeOutText.
*/
public void setConnUploadTimeOutText(String connUploadTimeOutText) {
this.connUploadTimeOutText = connUploadTimeOutText;
}
/**
* Return the bufferSizeText.
*/
public String getBufferSizeText() {
return this.bufferSizeText;
}
/**
* Set the bufferSizeText.
*/
public void setBufferSizeText(String bufferSizeText) {
this.bufferSizeText = bufferSizeText;
}
/**
* Return the address.
*/
public String getAddress() {
return this.address;
}
/**
* Set the address.
*/
public void setAddress(String address) {
this.address = address;
}
/**
* Return the proxy Name.
*/
public String getProxyName() {
return this.proxyName;
}
/**
* Set the proxy Name.
*/
public void setProxyName(String proxyName) {
this.proxyName = proxyName;
}
/**
* Return the proxy Port NumberText.
*/
public String getProxyPortText() {
return this.proxyPortText;
}
/**
* Set the proxy Port NumberText.
*/
public void setProxyPortText(String proxyPortText) {
this.proxyPortText = proxyPortText;
}
/**
* Return the true/false value of client authentication.
*/
public String getClientAuthentication() {
return this.clientAuthentication;
}
/**
* Set whether client authentication is supported or not.
*/
public void setClientAuthentication(String clientAuthentication) {
this.clientAuthentication = clientAuthentication;
}
/**
* Return the object name of the service this connector belongs to.
*/
public String getKeyStoreFileName() {
return this.keyStoreFileName;
}
/**
* Set the object name of the Service this connector belongs to.
*/
public void setKeyStoreFileName(String keyStoreFileName) {
this.keyStoreFileName = keyStoreFileName;
}
/**
* Return the object name of the service this connector belongs to.
*/
public String getKeyStorePassword() {
return this.keyStorePassword;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -