com.opensymphony.xwork2.config.entities.package.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwork Show documentation
Show all versions of xwork Show documentation
XWork is an command-pattern framework that is used to power WebWork
as well as other applications. XWork provides an Inversion of Control
container, a powerful expression language, data type conversion,
validation, and pluggable configuration.
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();