| org.objectweb.jonas.webapp.jonasadmin.deploy.BaseDeployAction org.objectweb.jonas.webapp.jonasadmin.service.container.BaseWebAppAction
All known Subclasses: org.objectweb.jonas.webapp.jonasadmin.service.container.EditWebAppCatalinaAction, org.objectweb.jonas.webapp.jonasadmin.service.container.EditWebAppAction, org.objectweb.jonas.webapp.jonasadmin.service.container.ApplyWebAppCatalinaAction, org.objectweb.jonas.webapp.jonasadmin.service.container.ApplyWebsConfirmAction, org.objectweb.jonas.webapp.jonasadmin.service.container.EditWebAppJettyAction, org.objectweb.jonas.webapp.jonasadmin.service.container.EditWarAction, org.objectweb.jonas.webapp.jonasadmin.service.container.ApplyWebAppJettyAction,
BaseWebAppAction | abstract public class BaseWebAppAction extends BaseDeployAction (Code) | | author: Michel-Ange ANTON |
Method Summary | |
protected WarForm | createWarForm(ActionMapping p_Mapping, HttpServletRequest p_Request) | protected WebAppForm | createWebAppForm(ActionMapping p_Mapping, HttpServletRequest p_Request) Create a new WebApp form in function of Web Server. | protected ObjectName | findJ2eeWebModuleMbean(String p_PathContext, String jonasServerName) Return the J2ee WebModule MBean. | protected ObjectName | findJonasMbeanWar(String p_PathContext, String jonasServerName) Return the JOnAS MBean War. | protected ObjectName | findWebAppMbean(String p_PathContext, String jonasServerName) Return the WebApp MBean. | protected boolean | initialize(ActionMapping p_Mapping, HttpServletRequest p_Request) Initialize the forms and parameters. | protected void | populateJettyWar(ObjectName p_ObjectName, WarForm p_Form, String jonasServerName) Populate a form with the JOnAS WebModule MBean given. | protected void | populateWar(ObjectName p_ObjectName, WarForm p_Form, String jonasServerName) Populate a form with the JOnAS WebModule MBean given. | protected void | populateWar(String p_Path, WarForm p_Form, String jonasServerName) Populate a form with the JOnAS War path given. | protected void | populateWebApp(String p_ObjectName, WebAppForm p_Form) Populate a WebApp form in function of Web Server. | protected void | populateWebAppCatalina(String p_ObjectName, WebAppCatalinaForm p_Form) Populate a form with the Catalina Context MBean
and with the JOnAS War MBean if it's found. | protected void | populateWebAppJetty(String p_ObjectName, WebAppJettyForm p_Form) |
createWarForm | protected WarForm createWarForm(ActionMapping p_Mapping, HttpServletRequest p_Request)(Code) | | Create a new War form
Parameters: p_Mapping - Mapping to reset form Parameters: p_Request - Http request used The new form or null if web server unknown |
createWebAppForm | protected WebAppForm createWebAppForm(ActionMapping p_Mapping, HttpServletRequest p_Request)(Code) | | Create a new WebApp form in function of Web Server.
Parameters: p_Mapping - Mapping to reset form Parameters: p_Request - Http request used The new form or null if web server unknown |
findJ2eeWebModuleMbean | protected ObjectName findJ2eeWebModuleMbean(String p_PathContext, String jonasServerName) throws Exception(Code) | | Return the J2ee WebModule MBean.
Parameters: p_PathContext - The path context to find The WebApplication (WebModule) MBean or null if not found throws: Exception - |
findJonasMbeanWar | protected ObjectName findJonasMbeanWar(String p_PathContext, String jonasServerName) throws Exception(Code) | | Return the JOnAS MBean War.
Parameters: p_PathContext - The path context to find The JOnAS MBean War or null if not found throws: Exception - |
findWebAppMbean | protected ObjectName findWebAppMbean(String p_PathContext, String jonasServerName) throws Exception(Code) | | Return the WebApp MBean.
Parameters: p_PathContext - The path context to find The WebApplication (WebModule) MBean or null if not found throws: Exception - |
initialize | protected boolean initialize(ActionMapping p_Mapping, HttpServletRequest p_Request)(Code) | | Initialize the forms and parameters.
Parameters: p_Mapping - Mapping to reset form Parameters: p_Request - Http request used true if the forms must be populated |
populateJettyWar | protected void populateJettyWar(ObjectName p_ObjectName, WarForm p_Form, String jonasServerName) throws Exception(Code) | | Populate a form with the JOnAS WebModule MBean given.
Parameters: p_ObjectName - The JOnAS WebModue MBean Parameters: p_Form - The form to populate throws: Exception - |
populateWar | protected void populateWar(ObjectName p_ObjectName, WarForm p_Form, String jonasServerName) throws Exception(Code) | | Populate a form with the JOnAS WebModule MBean given.
Parameters: p_ObjectName - The JOnAS WebModue MBean Parameters: p_Form - The form to populate throws: Exception - |
populateWar | protected void populateWar(String p_Path, WarForm p_Form, String jonasServerName) throws Exception(Code) | | Populate a form with the JOnAS War path given.
Parameters: p_Path - The JOnAS War MBean path Parameters: p_Form - The form to populate throws: Exception - |
populateWebApp | protected void populateWebApp(String p_ObjectName, WebAppForm p_Form) throws Exception(Code) | | Populate a WebApp form in function of Web Server.
Parameters: p_ObjectName - The MBean name Parameters: p_Form - The form to populate throws: Exception - |
populateWebAppCatalina | protected void populateWebAppCatalina(String p_ObjectName, WebAppCatalinaForm p_Form) throws Exception(Code) | | Populate a form with the Catalina Context MBean
and with the JOnAS War MBean if it's found.
Parameters: p_ObjectName - The MBean name Parameters: p_Form - The form to populate throws: Exception - |
populateWebAppJetty | protected void populateWebAppJetty(String p_ObjectName, WebAppJettyForm p_Form) throws Exception(Code) | | Populate a form with the Jetty Context MBean
Parameters: p_ObjectName - Jetty WebContainer+WebApplicationContext MBean Parameters: p_Form - The form to populate throws: Exception - |
|
|