...
TDB: Show Example of how inputs, resources, and outputs map to Java bean getters and setters
Input Type Reference
XAction inputs, outputs, and resources map to particular Java types. Here is a list of how these types get translated. In other words, you will need to use the Java types listed here in your IAction:
• for "content", use Java type InputStream (does not apply to input types ?)
• for "long", use Java type Long
• for "property-map", use Java type Map<String, String>
• for "property-map-list", use Java type List<Map<String, String>>
• for "string", use Java type String
• for "string-list", use Java type List<String>
• for "object", use the appropriate actual type or Object
Action Error Handling
FAQ
How are Actions different than POJO Components? I thought POJO Components already supported the ability to drop in a Java bean and have it work as a "component".