Serialized Form


Package org.apache.struts

Class org.apache.struts.Globals extends java.lang.Object implements Serializable


Package org.apache.struts.action

Class org.apache.struts.action.ActionError extends ActionMessage implements Serializable

Class org.apache.struts.action.ActionErrors extends ActionMessages implements Serializable

Class org.apache.struts.action.ActionForm extends java.lang.Object implements Serializable

Class org.apache.struts.action.ActionFormBean extends FormBeanConfig implements Serializable

Class org.apache.struts.action.ActionForward extends ForwardConfig implements Serializable

Class org.apache.struts.action.ActionMapping extends ActionConfig implements Serializable

Class org.apache.struts.action.ActionMessage extends java.lang.Object implements Serializable

Serialized Fields

key

java.lang.String key

The message key for this message.


values

java.lang.Object[] values

The replacement values for this mesasge.

Class org.apache.struts.action.ActionMessages extends java.lang.Object implements Serializable

Serialized Fields

accessed

boolean accessed

Have the messages been retrieved from this object?

The controller uses this property to determine if session-scoped messages can be removed.

Since:
Struts 1.2

messages

java.util.HashMap messages

The accumulated set of ActionMessage objects (represented as an ArrayList) for each property, keyed by property name.


iCount

int iCount

The current number of the property/key being added. This is used to maintain the order messages are added.

Class org.apache.struts.action.ActionMessages.ActionMessageItem extends java.lang.Object implements Serializable

Serialized Fields

list

java.util.List list

The list of ActionMessages.


iOrder

int iOrder

The position in the list of messages.


property

java.lang.String property

The property associated with ActionMessage.

Class org.apache.struts.action.ActionServlet extends HttpServlet implements Serializable

Class org.apache.struts.action.DynaActionForm extends ActionForm implements Serializable

Serialized Fields

dynaClass

DynaActionFormClass dynaClass

The DynaActionFormClass with which we are associated.


dynaValues

java.util.HashMap dynaValues

The set of property values for this DynaActionForm, keyed by property name.

Class org.apache.struts.action.DynaActionFormClass extends java.lang.Object implements Serializable

Serialized Fields

config

FormBeanConfig config

The form bean configuration information for this class.


name

java.lang.String name

The "dynamic class name" for this DynaClass.


properties

org.apache.commons.beanutils.DynaProperty[] properties

The set of dynamic properties that are part of this DynaClass.


propertiesMap

java.util.HashMap propertiesMap

The set of dynamic properties that are part of this DynaClass, keyed by the property name. Individual descriptor instances will be the same instances as those in the properties list.

Class org.apache.struts.action.ForwardingActionForward extends ActionForward implements Serializable

Class org.apache.struts.action.InvalidCancelException extends java.lang.Exception implements Serializable

Class org.apache.struts.action.RedirectingActionForward extends ActionForward implements Serializable

Class org.apache.struts.action.RequestActionMapping extends ActionMapping implements Serializable

Class org.apache.struts.action.SessionActionMapping extends ActionMapping implements Serializable


Package org.apache.struts.actions

Class org.apache.struts.actions.RedeployableActionServlet extends ActionServlet implements Serializable


Package org.apache.struts.config

Class org.apache.struts.config.ActionConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Indicates if configuration of this component been completed.


exceptions

java.util.HashMap exceptions
The set of exception handling configurations for this action, if any, keyed by the type property.


forwards

java.util.HashMap forwards
The set of local forward configurations for this action, if any, keyed by the name property.


moduleConfig

ModuleConfig moduleConfig
The module configuration with which we are associated.


attribute

java.lang.String attribute
The request-scope or session-scope attribute name under which our form bean is accessed, if it is different from the form bean's specified name.


forward

java.lang.String forward
Context-relative path of the web application resource that will process this request via RequestDispatcher.forward(), instead of instantiating and calling the Action class specified by "type". Exactly one of forward, include, or type must be specified.


include

java.lang.String include
Context-relative path of the web application resource that will process this request via RequestDispatcher.include(), instead of instantiating and calling the Action class specified by "type". Exactly one of forward, include, or type must be specified.


input

java.lang.String input
Context-relative path of the input form to which control should be returned if a validation error is encountered. Required if "name" is specified and the input bean returns validation errors.


multipartClass

java.lang.String multipartClass
Fully qualified Java class name of the MultipartRequestHandler implementation class used to process multi-part request data for this Action.


name

java.lang.String name
Name of the form bean, if any, associated with this Action.


parameter

java.lang.String parameter
General purpose configuration parameter that can be used to pass extra information to the Action instance selected by this Action. Struts does not itself use this value in any way.


path

java.lang.String path
Context-relative path of the submitted request, starting with a slash ("/") character, and omitting any filename extension if extension mapping is being used.


prefix

java.lang.String prefix
Prefix used to match request parameter names to form bean property names, if any.


roles

java.lang.String roles
Comma-delimited list of security role names allowed to request this Action.


roleNames

java.lang.String[] roleNames
The set of security role names used to authorize access to this Action, as an array for faster access.


scope

java.lang.String scope
Identifier of the scope ("request" or "session") within which our form bean is accessed, if any.


suffix

java.lang.String suffix
Suffix used to match request parameter names to form bean property names, if any.


type

java.lang.String type
Fully qualified Java class name of the Action class to be used to process requests for this mapping if the forward and include properties are not set. Exactly one of forward, include, or type must be specified.


unknown

boolean unknown
Indicates Action be configured as the default one for this module, when true.


validate

boolean validate
Should the validate() method of the form bean associated with this action be called?


cancellable

boolean cancellable

Can this Action be cancelled? [false]

By default, when an Action is cancelled, validation is bypassed and the Action should not execute the business operation. If a request tries to cancel an Action when cancellable is not set, a "InvalidCancelException" is thrown.

Since:
Struts 1.2.9

Class org.apache.struts.config.ActionConfigMatcher extends java.lang.Object implements Serializable

Serialized Fields

compiledPaths

java.util.List compiledPaths
The compiled paths and their associated ActionConfig's

Class org.apache.struts.config.ControllerConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Has this component been completely configured?


bufferSize

int bufferSize
The input buffer size for file uploads.


contentType

java.lang.String contentType
The content type and character encoding to be set on each response.


forwardPattern

java.lang.String forwardPattern

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

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.


inputForward

boolean inputForward

Should the input property of ActionConfig instances associated with this module be treated as the name of a corresponding 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

locale

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


maxFileSize

java.lang.String maxFileSize
The maximum file size to process for file uploads.


memFileSize

java.lang.String memFileSize
The maximum file size to retain in memory.


multipartClass

java.lang.String multipartClass
The fully qualified Java class name of the MultipartRequestHandler class to be used.


nocache

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


pagePattern

java.lang.String pagePattern

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:

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.


processorClass

java.lang.String processorClass
The fully qualified class name of the RequestProcessor implementation class to be used for this module.


tempDir

java.lang.String tempDir
The temporary working directory to use for file uploads.

Class org.apache.struts.config.DataSourceConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Has this component been completely configured?


key

java.lang.String key
The servlet context attribute key under which this data source is stored and made available.


properties

java.util.HashMap properties
The custom configuration properties for this data source implementation.


type

java.lang.String type
The fully qualified class name of the javax.sql.DataSource implementation class.

Class org.apache.struts.config.ExceptionConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Has this component been completely configured?


bundle

java.lang.String bundle
The servlet context attribute under which the message resources bundle to be used for this exception is located. If not set, the default message resources for the current module is assumed.


handler

java.lang.String handler
The fully qualified Java class name of the exception handler class which should be instantiated to handle this exception.


key

java.lang.String key
The message resources key specifying the error message associated with this exception.


path

java.lang.String path
The module-relative path of the resource to forward to if this exception occurs during an Action.


scope

java.lang.String scope
The scope in which we should expose the ActionError for this exception handler.


type

java.lang.String type
The fully qualified Java class name of the exception that is to be handled by this handler.

Class org.apache.struts.config.FormBeanConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Has this component been completely configured?


formProperties

java.util.HashMap formProperties
The set of FormProperty elements defining dynamic form properties for this form bean, keyed by property name.


lock

java.lang.String lock

The lockable object we can synchronize on when creating DynaActionFormClass.


dynamic

boolean dynamic
Is the form bean class an instance of DynaActionForm with dynamic properties?


name

java.lang.String name
The unique identifier of this form bean, which is used to reference this bean in ActionMapping instances as well as for the name of the request or session attribute under which the corresponding form bean instance is created or accessed.


type

java.lang.String type
The fully qualified Java class name of the implementation class to be used or generated.


restricted

boolean restricted
Is this DynaClass currently restricted (for DynaBeans with a MutableDynaClass).

Class org.apache.struts.config.FormPropertyConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Has this component been completely configured?


initial

java.lang.String initial
String representation of the initial value for this property.


name

java.lang.String name
The JavaBean property name of the property described by this element.


size

int size

The size of the array to be created if this property is an array type and there is no specified initial value. This value must be non-negative.

Since:
Struts 1.1

type

java.lang.String type
The fully qualified Java class name of the implementation class of this bean property, optionally followed by [] to indicate that the property is indexed.

Class org.apache.struts.config.ForwardConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Has this component been completely configured?


contextRelative

boolean contextRelative
Deprecated. Use module property instead; will be removed in a release following 1.2.0.

Should the value of the path property be considered context-relative if it starts with a slash (and therefore not prefixed with the module prefix?


name

java.lang.String name
The unique identifier of this forward, which is used to reference it in Action classes.


path

java.lang.String path

The URL to which this ForwardConfig entry points, which must start with a slash ("/") character. It is interpreted according to the following rules:


module

java.lang.String module

The prefix of the module to which this ForwardConfig entry points, which must start with a slash ("/") character.


redirect

boolean redirect
Should a redirect be used to transfer control to the specified path?

Class org.apache.struts.config.MessageResourcesConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Has this component been completely configured?


factory

java.lang.String factory
Fully qualified Java class name of the MessageResourcesFactory class we should use.


key

java.lang.String key
The servlet context attributes key under which this MessageResources instance is stored.


nullValue

boolean nullValue
Should we return null for unknown message keys?


parameter

java.lang.String parameter
Parameter that is passed to the createResources() method of our MessageResourcesFactory implementation.

Class org.apache.struts.config.PlugInConfig extends java.lang.Object implements Serializable

Serialized Fields

configured

boolean configured
Has this component been completely configured?


properties

java.util.Map properties
A Map of the name-value pairs that will be used to configure the property values of a PlugIn instance.


className

java.lang.String className
The fully qualified Java class name of the PlugIn implementation class being configured.


Package org.apache.struts.config.impl

Class org.apache.struts.config.impl.DefaultModuleConfigFactory extends ModuleConfigFactory implements Serializable

Class org.apache.struts.config.impl.ModuleConfigImpl extends java.lang.Object implements Serializable

Serialized Fields

actionConfigs

java.util.HashMap actionConfigs
The set of action configurations for this module, if any, keyed by the path property.


actionConfigList

java.util.List actionConfigList
The set of action configurations for this module, if any, listed in the order in which they are added.


dataSources

java.util.HashMap dataSources
The set of JDBC data source configurations for this module, if any, keyed by the key property.


exceptions

java.util.HashMap exceptions
The set of exception handling configurations for this module, if any, keyed by the type property.


formBeans

java.util.HashMap formBeans
The set of form bean configurations for this module, if any, keyed by the name property.


forwards

java.util.HashMap forwards
The set of global forward configurations for this module, if any, keyed by the name property.


messageResources

java.util.HashMap messageResources
The set of message resources configurations for this module, if any, keyed by the key property.


plugIns

java.util.ArrayList plugIns
The set of configured plug-in Actions for this module, if any, in the order they were declared and configured.


configured

boolean configured
Has this module been completely configured yet. Once this flag has been set, any attempt to modify the configuration will return an IllegalStateException.


controllerConfig

ControllerConfig controllerConfig
The controller configuration object for this module.


prefix

java.lang.String prefix
The prefix of the context-relative portion of the request URI, used to select this configuration versus others supported by the controller servlet. A configuration with a prefix of a zero-length String is the default configuration for this web module.


actionFormBeanClass

java.lang.String actionFormBeanClass
The default class name to be used when creating action form bean instances.


actionMappingClass

java.lang.String actionMappingClass
The default class name to be used when creating action mapping instances.


actionForwardClass

java.lang.String actionForwardClass
The default class name to be used when creating action forward instances.


matcher

ActionConfigMatcher matcher
Matches action config paths against compiled wildcard patterns


Package org.apache.struts.taglib.bean

Class org.apache.struts.taglib.bean.CookieTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.CookieTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.DefineTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.bean.DefineTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.HeaderTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.HeaderTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.IncludeTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.IncludeTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.MessageTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.PageTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.PageTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.ParameterTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.ParameterTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.ResourceTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.ResourceTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.SizeTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.SizeTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.StrutsTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.bean.StrutsTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.bean.WriteTag extends TagSupport implements Serializable


Package org.apache.struts.taglib.html

Class org.apache.struts.taglib.html.BaseFieldTag extends BaseInputTag implements Serializable

Class org.apache.struts.taglib.html.BaseHandlerTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.html.BaseInputTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.BaseTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.html.ButtonTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.CancelTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.CheckboxTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.ErrorsTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.html.FileTag extends BaseFieldTag implements Serializable

Class org.apache.struts.taglib.html.FormTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.html.FrameTag extends LinkTag implements Serializable

Class org.apache.struts.taglib.html.HiddenTag extends BaseFieldTag implements Serializable

Class org.apache.struts.taglib.html.HtmlTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.html.ImageTag extends SubmitTag implements Serializable

Class org.apache.struts.taglib.html.ImgTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.JavascriptValidatorTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.html.LinkTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.MessagesTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.html.MessagesTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.html.MultiboxTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.OptionsCollectionTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.html.OptionsTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.html.OptionTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.html.PasswordTag extends BaseFieldTag implements Serializable

Class org.apache.struts.taglib.html.RadioTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.ResetTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.RewriteTag extends LinkTag implements Serializable

Class org.apache.struts.taglib.html.SelectTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.SubmitTag extends BaseHandlerTag implements Serializable

Class org.apache.struts.taglib.html.TextareaTag extends BaseInputTag implements Serializable

Class org.apache.struts.taglib.html.TextTag extends BaseFieldTag implements Serializable

Class org.apache.struts.taglib.html.XhtmlTag extends TagSupport implements Serializable


Package org.apache.struts.taglib.logic

Class org.apache.struts.taglib.logic.CompareTagBase extends ConditionalTagBase implements Serializable

Class org.apache.struts.taglib.logic.ConditionalTagBase extends TagSupport implements Serializable

Class org.apache.struts.taglib.logic.EmptyTag extends ConditionalTagBase implements Serializable

Class org.apache.struts.taglib.logic.EqualTag extends CompareTagBase implements Serializable

Class org.apache.struts.taglib.logic.ForwardTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.logic.GreaterEqualTag extends CompareTagBase implements Serializable

Class org.apache.struts.taglib.logic.GreaterThanTag extends CompareTagBase implements Serializable

Class org.apache.struts.taglib.logic.IterateTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.logic.IterateTei extends TagExtraInfo implements Serializable

Class org.apache.struts.taglib.logic.LessEqualTag extends CompareTagBase implements Serializable

Class org.apache.struts.taglib.logic.LessThanTag extends CompareTagBase implements Serializable

Class org.apache.struts.taglib.logic.MatchTag extends ConditionalTagBase implements Serializable

Class org.apache.struts.taglib.logic.MessagesNotPresentTag extends MessagesPresentTag implements Serializable

Class org.apache.struts.taglib.logic.MessagesPresentTag extends ConditionalTagBase implements Serializable

Class org.apache.struts.taglib.logic.NotEmptyTag extends EmptyTag implements Serializable

Class org.apache.struts.taglib.logic.NotEqualTag extends CompareTagBase implements Serializable

Class org.apache.struts.taglib.logic.NotMatchTag extends MatchTag implements Serializable

Class org.apache.struts.taglib.logic.NotPresentTag extends PresentTag implements Serializable

Class org.apache.struts.taglib.logic.PresentTag extends ConditionalTagBase implements Serializable

Class org.apache.struts.taglib.logic.RedirectTag extends TagSupport implements Serializable


Package org.apache.struts.taglib.nested

Class org.apache.struts.taglib.nested.NestedPropertyTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.nested.NestedReference extends java.lang.Object implements Serializable

Serialized Fields

beanName

java.lang.String beanName

property

java.lang.String property

Class org.apache.struts.taglib.nested.NestedRootTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.nested.NestedWriteNestingTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.nested.NestedWriteNestingTei extends TagExtraInfo implements Serializable


Package org.apache.struts.taglib.nested.bean

Class org.apache.struts.taglib.nested.bean.NestedDefineTag extends DefineTag implements Serializable

Class org.apache.struts.taglib.nested.bean.NestedDefineTei extends IterateTei implements Serializable

Class org.apache.struts.taglib.nested.bean.NestedMessageTag extends MessageTag implements Serializable

Class org.apache.struts.taglib.nested.bean.NestedSizeTag extends SizeTag implements Serializable

Class org.apache.struts.taglib.nested.bean.NestedWriteTag extends WriteTag implements Serializable


Package org.apache.struts.taglib.nested.html

Class org.apache.struts.taglib.nested.html.NestedCheckboxTag extends CheckboxTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedErrorsTag extends ErrorsTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedFileTag extends FileTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedFormTag extends FormTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedHiddenTag extends HiddenTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedImageTag extends ImageTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedImgTag extends ImgTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedLinkTag extends LinkTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedMessagesTag extends MessagesTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedMultiboxTag extends MultiboxTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedOptionsCollectionTag extends OptionsCollectionTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedOptionsTag extends OptionsTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedPasswordTag extends PasswordTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedRadioTag extends RadioTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedSelectTag extends SelectTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedSubmitTag extends SubmitTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedTextareaTag extends TextareaTag implements Serializable

Class org.apache.struts.taglib.nested.html.NestedTextTag extends TextTag implements Serializable


Package org.apache.struts.taglib.nested.logic

Class org.apache.struts.taglib.nested.logic.NestedEmptyTag extends EmptyTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedEqualTag extends EqualTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedGreaterEqualTag extends GreaterEqualTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedGreaterThanTag extends GreaterThanTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedIterateTag extends IterateTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedIterateTei extends IterateTei implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedLessEqualTag extends LessEqualTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedLessThanTag extends LessThanTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedMatchTag extends MatchTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedMessagesNotPresentTag extends MessagesNotPresentTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedMessagesPresentTag extends MessagesPresentTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedNotEmptyTag extends NotEmptyTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedNotEqualTag extends NotEqualTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedNotMatchTag extends NotMatchTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedNotPresentTag extends NotPresentTag implements Serializable

Class org.apache.struts.taglib.nested.logic.NestedPresentTag extends PresentTag implements Serializable


Package org.apache.struts.taglib.tiles

Class org.apache.struts.taglib.tiles.AddTag extends PutTag implements Serializable

Class org.apache.struts.taglib.tiles.AttributeToScopeTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.tiles.DefinitionTag extends DefinitionTagSupport implements Serializable

Class org.apache.struts.taglib.tiles.DefinitionTagSupport extends TagSupport implements Serializable

Class org.apache.struts.taglib.tiles.GetAttributeTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.tiles.GetTag extends InsertTag implements Serializable

Class org.apache.struts.taglib.tiles.ImportAttributeTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.tiles.InitDefinitionsTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.tiles.InsertTag extends DefinitionTagSupport implements Serializable

Class org.apache.struts.taglib.tiles.PutListTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.tiles.PutTag extends BodyTagSupport implements Serializable

Class org.apache.struts.taglib.tiles.UseAttributeTag extends TagSupport implements Serializable

Class org.apache.struts.taglib.tiles.UseAttributeTei extends TagExtraInfo implements Serializable


Package org.apache.struts.tiles

Class org.apache.struts.tiles.ComponentContext extends java.lang.Object implements Serializable

Serialized Fields

attributes

java.util.Map attributes
Component attributes.

Class org.apache.struts.tiles.ComponentDefinition extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
Definition name


path

java.lang.String path
Component / template path (URL).


attributes

java.util.Map attributes
Attributes defined for the component.


role

java.lang.String role
Role associated to definition.


controller

java.lang.String controller
Associated Controller URL or classname, if defined


controllerType

java.lang.String controllerType
Associated Controller typename, if controllerName defined. Can be CONTROLLER, ACTION or URL, or null.


controllerInstance

Controller controllerInstance
Controller associated to Definition. Lazy creation : only on first request

Class org.apache.struts.tiles.DefinitionAttribute extends UntypedAttribute implements Serializable

Class org.apache.struts.tiles.DefinitionNameAttribute extends UntypedAttribute implements Serializable

Class org.apache.struts.tiles.DefinitionsFactoryConfig extends java.lang.Object implements Serializable

Serialized Fields

factoryClassname

java.lang.String factoryClassname
Fully qualified classname of the factory to create. If no classname is set, a default factory is created (of class "org.apache.struts.tiles.xmlDefinition.I18nFactorySet").


parserValidate

boolean parserValidate
Specifies whether the parser will validate configuration files. Default value is true.


definitionConfigFiles

java.lang.String definitionConfigFiles
Definition configuration file specified by user.


moduleAware

boolean moduleAware
Specifies whether the factory is "module-aware".


factoryName

java.lang.String factoryName
The name associated to this factory.
With Struts 1.1, this name is the module name to which this factory belong. It is set by the system.
In prior versions, this property is not used.


extraAttributes

java.util.Map extraAttributes
Map of extra attribute available.

Class org.apache.struts.tiles.DefinitionsFactoryException extends TilesException implements Serializable

Serialized Fields

exception

java.lang.Exception exception
Any "wrapped" exception will be exposed when this is serialized.

 

Class org.apache.struts.tiles.DirectStringAttribute extends UntypedAttribute implements Serializable

Class org.apache.struts.tiles.FactoryNotFoundException extends DefinitionsFactoryException implements Serializable

Class org.apache.struts.tiles.NoSuchDefinitionException extends DefinitionsFactoryException implements Serializable

Class org.apache.struts.tiles.PathAttribute extends UntypedAttribute implements Serializable

Class org.apache.struts.tiles.TilesException extends java.lang.Exception implements Serializable

Serialized Fields

exception

java.lang.Exception exception
Any "wrapped" exception will be exposed when this is serialized.

 

Class org.apache.struts.tiles.TilesUtilImpl extends java.lang.Object implements Serializable

Serialized Fields

log

org.apache.commons.logging.Log log
Commons Logging instance.

Class org.apache.struts.tiles.TilesUtilStrutsImpl extends TilesUtilImpl implements Serializable

Class org.apache.struts.tiles.TilesUtilStrutsModulesImpl extends TilesUtilStrutsImpl implements Serializable

Class org.apache.struts.tiles.UntypedAttribute extends java.lang.Object implements Serializable

Serialized Fields

role

java.lang.String role
Role associated to this attribute.


value

java.lang.Object value


Package org.apache.struts.tiles.beans

Class org.apache.struts.tiles.beans.SimpleMenuItem extends java.lang.Object implements Serializable

Serialized Fields

value

java.lang.String value

link

java.lang.String link

icon

java.lang.String icon

tooltip

java.lang.String tooltip


Package org.apache.struts.tiles.definition

Class org.apache.struts.tiles.definition.ComponentDefinitionsFactoryWrapper extends java.lang.Object implements Serializable

Serialized Fields

factory

ComponentDefinitionsFactory factory
The underlying factory.


config

DefinitionsFactoryConfig config
Factory configuration,

Class org.apache.struts.tiles.definition.ReloadableDefinitionsFactory extends java.lang.Object implements Serializable

Serialized Fields

factory

ComponentDefinitionsFactory factory
The real factory instance.


properties

java.util.Map properties
Initialization parameters.


Package org.apache.struts.tiles.xmlDefinition

Class org.apache.struts.tiles.xmlDefinition.DefinitionsFactory extends java.lang.Object implements Serializable

Serialized Fields

definitions

java.util.Map definitions
Underlying map containing all definitions.

Class org.apache.struts.tiles.xmlDefinition.FactorySet extends java.lang.Object implements Serializable

Serialized Fields

factories

java.util.Map factories
Loaded factories

Class org.apache.struts.tiles.xmlDefinition.I18nFactorySet extends FactorySet implements Serializable

Serialized Fields

defaultFactory

DefinitionsFactory defaultFactory
Default factory.


isValidatingParser

boolean isValidatingParser
Do we want validating parser. Default is false. Can be set from servlet config file.


parserDetailLevel

int parserDetailLevel
Parser detail level. Default is 0. Can be set from servlet config file.


filenames

java.util.List filenames
Names of files containing instances descriptions.


loaded

java.util.Map loaded
Collection of already loaded definitions set, referenced by their suffix.

Class org.apache.struts.tiles.xmlDefinition.XmlDefinition extends ComponentDefinition implements Serializable

Serialized Fields

inherit

java.lang.String inherit
Extends attribute value.


isVisited

boolean isVisited
Used for resolving inheritance.


Package org.apache.struts.upload

Class org.apache.struts.upload.ContentLengthExceededException extends java.io.IOException implements Serializable

Serialized Fields

message

java.lang.String message
Deprecated. 

Class org.apache.struts.upload.MaxLengthExceededException extends java.io.IOException implements Serializable

Serialized Fields

message

java.lang.String message
Deprecated. 


Package org.apache.struts.util

Class org.apache.struts.util.ImageButtonBean extends java.lang.Object implements Serializable

Serialized Fields

x

java.lang.String x
The X coordinate of the button press.


y

java.lang.String y
The Y coordinate of the button press.

Class org.apache.struts.util.LabelValueBean extends java.lang.Object implements Serializable

Serialized Fields

label

java.lang.String label
The property which supplies the option label visible to the end user.


value

java.lang.String value
The property which supplies the value returned to the server.

Class org.apache.struts.util.MessageResources extends java.lang.Object implements Serializable

Serialized Fields

config

java.lang.String config
The configuration parameter used to initialize this MessageResources.


defaultLocale

java.util.Locale defaultLocale
The default Locale for our environment.


factory

MessageResourcesFactory factory
The MessageResourcesFactory that created this instance.


formats

java.util.HashMap formats
The set of previously created MessageFormat objects, keyed by the key computed in messageKey().


returnNull

boolean returnNull
Indicate is a null is returned instead of an error message string when an unknown Locale or key is requested.

Class org.apache.struts.util.MessageResourcesFactory extends java.lang.Object implements Serializable

Serialized Fields

returnNull

boolean returnNull
The "return null" property value to which newly created MessageResourcess should be initialized.

Class org.apache.struts.util.ModuleException extends java.lang.Exception implements Serializable

Serialized Fields

property

java.lang.String property

error

ActionError error
Deprecated. Use message instead.


message

ActionMessage message
The ActionMessage associated with this exception.

Since:
Struts 1.2

Class org.apache.struts.util.PropertyMessageResources extends MessageResources implements Serializable

Serialized Fields

locales

java.util.HashMap locales
The set of locale keys for which we have already loaded messages, keyed by the value calculated in localeKey().


messages

java.util.HashMap messages
The cache of messages we have accumulated over time, keyed by the value calculated in messageKey().

Class org.apache.struts.util.PropertyMessageResourcesFactory extends MessageResourcesFactory implements Serializable


Package org.apache.struts.validator

Class org.apache.struts.validator.BeanValidatorForm extends ValidatorForm implements Serializable

Serialized Fields

dynaBean

org.apache.commons.beanutils.DynaBean dynaBean
The DynaBean that this ActionForm is backed by.


pathValidation

boolean pathValidation
Indicates whether the ActionMapping's path should be used for the validation key.

Class org.apache.struts.validator.DynaValidatorActionForm extends DynaValidatorForm implements Serializable

Class org.apache.struts.validator.DynaValidatorForm extends DynaActionForm implements Serializable

Serialized Fields

validatorResults

org.apache.commons.validator.ValidatorResults validatorResults
The results returned from the validation performed by the Validator.


page

int page
Used to indicate the current page of a multi-page form.

Class org.apache.struts.validator.FieldChecks extends java.lang.Object implements Serializable

Class org.apache.struts.validator.ValidatorActionForm extends ValidatorForm implements Serializable

Class org.apache.struts.validator.ValidatorForm extends ActionForm implements Serializable

Serialized Fields

validatorResults

org.apache.commons.validator.ValidatorResults validatorResults
The results returned from the validation performed by the Validator.


page

int page
Used to indicate the current page of a multi-page form.



Copyright ? 2000-2006 - The Apache Software Foundation