Package de.xima.fc.app
Class WebAppContext
- java.lang.Object
-
- de.xima.fc.app.WebAppContext
-
public class WebAppContext extends Object
Singleton model allowing access to information about the web app context.- Since:
- 8.0.1
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
destroy(javax.servlet.ServletContextEvent sce)
static WebAppContext
getInstance()
@NotNull IServletContextInfo
getServletContextInfo()
@NotNull IWebAppDescriptor
getWebAppDescriptor()
static void
init(javax.servlet.ServletContextEvent sce)
String
toString()
-
-
-
Method Detail
-
init
public static void init(javax.servlet.ServletContextEvent sce)
-
destroy
public static void destroy(javax.servlet.ServletContextEvent sce)
-
getInstance
public static WebAppContext getInstance()
- Returns:
- the current web app context.
-
getWebAppDescriptor
@NotNull public @NotNull IWebAppDescriptor getWebAppDescriptor()
- Returns:
- the
descriptor
of this web app.
-
getServletContextInfo
@NotNull public @NotNull IServletContextInfo getServletContextInfo()
- Returns:
- the
servlet context information
of this web app.
-
-