Package org.apache.struts2.config.entities
package org.apache.struts2.config.entities
Configuration entity classes. All objects ending in "Config" are immutable and must be constructed using their inner "Builder" class. For example, a PackageConfig object can be created via:
PackageConfig config = new PackageConfig.Builder("myPackage").build();
The methods on the builder object are chainable to support constructions like this:
ResultConfig config = new ResultConfig.Builder("success", "myapp.MyResult") .addParam("location", "/foo.jsp") .build();
-
ClassDescriptionContains everything needed to configure and execute an action: methodName - the method name to execute on the action.The builder for this object.Configuration for exception mapping.The builder for this object.Configuration for Interceptors.The builder for this object.InterceptorListHolderDefines an object that can be used to retrieve interceptor configuration
InterceptorMapping
Configuration for InterceptorStack.The builder for this object.Configuration for Package.The builder for this object.Configuration for Result.The builder for this object.Configuration class for result types.The builder for this object.