com.alveole.studio.web.managers.struts2
Class Struts2CustomObject

java.lang.Object
  extended by com.alveole.studio.web.managers.struts2.Struts2CustomObject

public class Struts2CustomObject
extends java.lang.Object

This class contains all struts2 specific attributes for an Action.

Author:
sylvain

Field Summary
 java.lang.String className
          The action class name.
 java.util.ArrayList<Struts2ExceptionMapping> exceptionMappings
          List of configured exception-mappings for this action.
 java.util.ArrayList<Struts2InterceptorRef> interceptors
          List of configured interceptors for this action.
 java.lang.String methodName
          The action metod.
 java.lang.String packageName
          Associated package name.
 java.lang.String path
          The action path.
 
Constructor Summary
Struts2CustomObject()
          Constructor.
Struts2CustomObject(Struts2CustomObject src)
          Constructor for copy.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

className

public java.lang.String className
The action class name.


methodName

public java.lang.String methodName
The action metod.


path

public java.lang.String path
The action path.


packageName

public java.lang.String packageName
Associated package name.


interceptors

public java.util.ArrayList<Struts2InterceptorRef> interceptors
List of configured interceptors for this action.


exceptionMappings

public java.util.ArrayList<Struts2ExceptionMapping> exceptionMappings
List of configured exception-mappings for this action.

Constructor Detail

Struts2CustomObject

public Struts2CustomObject()
Constructor.


Struts2CustomObject

public Struts2CustomObject(Struts2CustomObject src)
Constructor for copy.

Parameters:
src - The original object to copy.