All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.struts.config.ControllerConfig Maven / Gradle / Ivy

/*
 * $Id: ControllerConfig.java 471754 2006-11-06 14:55:09Z husted $
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.struts.config;


/**
 * 

A JavaBean representing the configuration information of a * <controller> element in a Struts configuration * file.

* * @version $Rev: 471754 $ $Date: 2005-05-12 18:41:19 -0400 (Thu, 12 May 2005) * $ * @since Struts 1.1 */ public class ControllerConfig extends BaseConfig { // ------------------------------------------------------------- Properties /** *

The input buffer size for file uploads.

*/ protected int bufferSize = 4096; /** *

The content type and character encoding to be set on each response. *

*/ protected String contentType = "text/html"; /** *

The chain catalog name for this module.

*/ protected String catalog = "struts"; /** *

The chain command to execute for each request.

*/ protected String command = "servlet-standard"; /** *

The replacement pattern used to determine a context-relative URL * from a {@link ForwardConfig} element. The pattern may consist of any * combination of the following markers and characters:

* *
    * *
  • $M - Replaced by the module prefix * for the current module.
  • * *
  • $P - Replaced by the * path property of a {@link ForwardConfig} instance.
  • * *
  • $$ - Renders a literal dollar sign * ("$") character in the resulting URL.
  • * *
  • A dollar sign followed by any other character is reserved for * future use, and both characters are silently swallowed.
  • * *
  • All other characters in the pattern are passed through unchanged. *
  • * *
* *

If this property is set to null, a default pattern of * $M$P is utilized, which is backwards compatible with the * hard coded functionality in prior versions.

*/ protected String forwardPattern = null; /** *

Should the input property of {@link ActionConfig} * instances associated with this module be treated as the name of a * corresponding {@link ForwardConfig}. A false value treats * them as a module-relative path (consistent with the hard coded behavior * of earlier versions of Struts.

* * @since Struts 1.1 */ protected boolean inputForward = false; /** *

Should we store a Locale object in the user's session if needed? *

*/ protected boolean locale = true; /** *

The maximum file size to process for file uploads.

*/ protected String maxFileSize = "250M"; /** *

The maximum file size to retain in memory.

*/ protected String memFileSize = "256K"; /** *

The fully qualified Java class name of the MultipartRequestHandler * class to be used.

*/ protected String multipartClass = "org.apache.struts.upload.CommonsMultipartRequestHandler"; /** *

Should we set no-cache HTTP headers on each response?

*/ protected boolean nocache = false; /** *

The replacement pattern used to determine a context-relative URL * from the page attribute of Struts tags and configuration * properties. The pattern may consist of any combination of the * following markers and characters:

* *
    * *
  • $M - Replaced by the module prefix * for the current module.
  • * *
  • $P - Replaced by the * page attribute value being evaluated.
  • * *
  • $$ - Renders a literal dollar sign * ("$") character in the resulting URL.
  • * *
  • A dollar sign followed by any other character is reserved for * future use, and both characters are silently swallowed.
  • * *
  • All other characters in the pattern are passed through unchanged. *
  • * *
* *

If this property is set to null, a default pattern of * $M$P is utilized, which is backwards compatible with the * hard coded functionality in prior versions.

*/ protected String pagePattern = null; /** *

The fully qualified class name of the RequestProcessor * implementation class to be used for this module.

*/ protected String processorClass = "org.apache.struts.chain.ComposableRequestProcessor"; /** *

The temporary working directory to use for file uploads.

*/ protected String tempDir = null; public int getBufferSize() { return (this.bufferSize); } public void setBufferSize(int bufferSize) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.bufferSize = bufferSize; } public String getContentType() { return (this.contentType); } public void setContentType(String contentType) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.contentType = contentType; } public String getCatalog() { return (this.catalog); } public void setCatalog(String catalog) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.catalog = catalog; } public String getCommand() { return (this.command); } public void setCommand(String command) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.command = command; } public String getForwardPattern() { return (this.forwardPattern); } public void setForwardPattern(String forwardPattern) { this.forwardPattern = forwardPattern; } public boolean getInputForward() { return (this.inputForward); } public void setInputForward(boolean inputForward) { this.inputForward = inputForward; } public boolean getLocale() { return (this.locale); } public void setLocale(boolean locale) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.locale = locale; } public String getMaxFileSize() { return (this.maxFileSize); } public void setMaxFileSize(String maxFileSize) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.maxFileSize = maxFileSize; } public String getMemFileSize() { return (this.memFileSize); } public void setMemFileSize(String memFileSize) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.memFileSize = memFileSize; } public String getMultipartClass() { return (this.multipartClass); } public void setMultipartClass(String multipartClass) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.multipartClass = multipartClass; } public boolean getNocache() { return (this.nocache); } public void setNocache(boolean nocache) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.nocache = nocache; } public String getPagePattern() { return (this.pagePattern); } public void setPagePattern(String pagePattern) { this.pagePattern = pagePattern; } public String getProcessorClass() { return (this.processorClass); } public void setProcessorClass(String processorClass) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.processorClass = processorClass; } public String getTempDir() { return (this.tempDir); } public void setTempDir(String tempDir) { if (configured) { throw new IllegalStateException("Configuration is frozen"); } this.tempDir = tempDir; } // --------------------------------------------------------- Public Methods /** *

Return a String representation of this object.

*/ public String toString() { StringBuffer sb = new StringBuffer("ControllerConfig["); sb.append("bufferSize="); sb.append(this.bufferSize); if (this.contentType != null) { sb.append(",contentType="); sb.append(this.contentType); } if (this.forwardPattern != null) { sb.append(",forwardPattern="); sb.append(this.forwardPattern); } sb.append(",inputForward="); sb.append(this.inputForward); sb.append(",locale="); sb.append(this.locale); if (this.maxFileSize != null) { sb.append(",maxFileSize="); sb.append(this.maxFileSize); } if (this.memFileSize != null) { sb.append(",memFileSize="); sb.append(this.memFileSize); } sb.append(",multipartClass="); sb.append(this.multipartClass); sb.append(",nocache="); sb.append(this.nocache); if (this.pagePattern != null) { sb.append(",pagePattern="); sb.append(this.pagePattern); } sb.append(",processorClass="); sb.append(this.processorClass); if (this.tempDir != null) { sb.append(",tempDir="); sb.append(this.tempDir); } sb.append("]"); return (sb.toString()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy