Package lumis.portal
Class PortalConfiguration
- java.lang.Object
-
- lumis.portal.PortalConfiguration
-
- All Implemented Interfaces:
EventListener
,ServletContextListener
public class PortalConfiguration extends Object implements ServletContextListener
Encapsulates the portal configuration read from the web.xml file. Has an alternative constructor (PortalConfiguration(String)
) to be used outside the web container.- Since:
- 4.0.2
- Version:
- $Revision: 24078 $ $Date: 2020-08-24 14:53:47 -0300 (Mon, 24 Aug 2020) $
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PortalConfiguration.SystemBean
Bean used as system variable in lumisDataPath EL evaluation.
-
Constructor Summary
Constructors Constructor Description PortalConfiguration()
Constructor for the web container to call it as a ServletContextListener.PortalConfiguration(String lumisDataDir)
Constructor for custom configuration outside a web container.PortalConfiguration(String lumisDataDir, boolean initialize)
Constructor for custom configuration outside a web container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
contextDestroyed(ServletContextEvent event)
Cleanup the current portal configuration, if initialized through the web.xml.void
contextInitialized(ServletContextEvent event)
Initializes the current portal configuration.static PortalConfiguration
getCurrentConfiguration()
Returns the current portal configuration.String
getLumisDataPath()
Returns the lumis data path.void
init(ServletContextEvent event)
boolean
isDevelopmentMode()
Indicates if the portal is running in development mode.static void
setCurrentConfiguration(PortalConfiguration currentConfiguration)
Method for setting a custom configuration outside a web container.
-
-
-
Constructor Detail
-
PortalConfiguration
public PortalConfiguration()
Constructor for the web container to call it as a ServletContextListener.
-
PortalConfiguration
public PortalConfiguration(String lumisDataDir)
Constructor for custom configuration outside a web container. The portal is initialized as a result of a call to this constructor.- See Also:
PortalConfiguration(String, boolean)
-
PortalConfiguration
public PortalConfiguration(String lumisDataDir, boolean initialize)
Constructor for custom configuration outside a web container.- Parameters:
lumisDataDir
- the path for the portal lumisdata directory.initialize
- if true, the portal will be initialized. Use false only when performing operations without an existing database, such as initializing the portal database.- Since:
- 4.0.7
-
-
Method Detail
-
contextInitialized
public void contextInitialized(ServletContextEvent event)
Initializes the current portal configuration.- Specified by:
contextInitialized
in interfaceServletContextListener
- Parameters:
event
- instance of ServletContextEvent- Since:
- 5.6.0
-
init
public void init(ServletContextEvent event)
-
contextDestroyed
public void contextDestroyed(ServletContextEvent event)
Cleanup the current portal configuration, if initialized through the web.xml.- Specified by:
contextDestroyed
in interfaceServletContextListener
-
getLumisDataPath
public String getLumisDataPath()
Returns the lumis data path.
-
isDevelopmentMode
public boolean isDevelopmentMode()
Indicates if the portal is running in development mode.- Since:
- 4.2.0
-
getCurrentConfiguration
public static PortalConfiguration getCurrentConfiguration()
Returns the current portal configuration.
-
setCurrentConfiguration
public static void setCurrentConfiguration(PortalConfiguration currentConfiguration)
Method for setting a custom configuration outside a web container.
-
-