|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object info.magnolia.context.MgnlContext
public class MgnlContext
This class allows obtaining of the current Request without passing the request around the world. A ThreadLocal variable is used to manage the request and to make sure it doesn't escape to another processing.
In a later version this class should not depend on servlets. The core should use the context to get and set attributes instead of using the request or session object directly. Magnolia could run then in a neutral and configurable context.
Nested Class Summary | |
---|---|
static interface |
MgnlContext.Op<T,E extends Throwable>
A simple execution interface to be used with the doInSystemContext method. |
static interface |
MgnlContext.SystemContextOperation
Deprecated. since 4.2 - use the Op interface, which can return values, or extend VoidOp. |
static class |
MgnlContext.VoidOp
An Op that does not return values and can only throw RuntimeExceptions. |
Constructor Summary | |
---|---|
MgnlContext()
Do not instantiate this class. |
Method Summary | ||
---|---|---|
static
|
doInSystemContext(MgnlContext.Op<T,E> op)
Executes the given operation in the system context and sets it back to the original once done (also if an exception is thrown). |
|
static
|
doInSystemContext(MgnlContext.Op<T,E> op,
boolean releaseAfterExecution)
Executes the given operation in the system context and sets it back to the original once done (also if an exception is thrown). |
|
static void |
doInSystemContext(MgnlContext.SystemContextOperation op)
Deprecated. since 4.2 - use the Op interface, which can return values, or extend VoidOp. |
|
static void |
doInSystemContext(MgnlContext.SystemContextOperation op,
boolean releaseAfterExecution)
Deprecated. since 4.2 - use the Op interface, which can return values, or extend VoidOp. |
|
static AccessManager |
getAccessManager(String repositoryId)
Get access manager for the specified repository on default workspace. |
|
static AccessManager |
getAccessManager(String repositoryId,
String workspaceId)
Get access manager for the specified repository on the specified workspace. |
|
static AggregationState |
getAggregationState()
Returns the AggregationState if we're in a WebContext, throws an IllegalStateException otherwise. |
|
static Object |
getAttribute(String name)
Get attribute value. |
|
static Object |
getAttribute(String name,
int scope)
Get the attribute from the specified scope. |
|
static String |
getContextPath()
|
|
static HierarchyManager |
getHierarchyManager(String repositoryId)
Get hierarchy manager initialized for this user. |
|
static HierarchyManager |
getHierarchyManager(String repositoryId,
String workspaceId)
Get hierarchy manager initialized for this user. |
|
static Context |
getInstance()
Get the current context of this thread. |
|
static Locale |
getLocale()
Get the context's locale object. |
|
static Messages |
getMessages()
|
|
static Messages |
getMessages(String basename)
|
|
static String |
getParameter(String name)
Get parameter value as string. |
|
static Map<String,String> |
getParameters()
Get parameter value as a Map<String, String>. |
|
static String[] |
getParameterValues(String name)
|
|
static MultipartForm |
getPostedForm()
Get form object assembled by MultipartRequestFilter . |
|
static QueryManager |
getQueryManager(String repositoryId)
Get QueryManager created for this user on the specified repository. |
|
static QueryManager |
getQueryManager(String repositoryId,
String workspaceId)
Get QueryManager created for this user on the specified repository and workspace. |
|
static SystemContext |
getSystemContext()
Get Magnolia system context. |
|
static User |
getUser()
A short cut for the current user. |
|
static WebContext |
getWebContext()
Throws an IllegalStateException if the current context is not set, or if it is not an instance of WebContext. |
|
static WebContext |
getWebContext(String exceptionMessage)
Throws an IllegalStateException if the current context is not set, or if it is not an instance of WebContext. |
|
static WebContext |
getWebContextOrNull()
Returns the current context if it is set and is an instance of WebContext, returns null otherwise. |
|
static boolean |
hasAttribute(String name)
Check if this attribute exists in the local scope. |
|
static boolean |
hasInstance()
Used to check if an instance is already set since getInstance() will always return a context. |
|
static void |
initAsWebContext(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
javax.servlet.ServletContext servletContext)
Sets this context as a web context. |
|
static boolean |
isSystemInstance()
|
|
static boolean |
isWebContext()
Returns true if the current context is set and is an instance of WebContext. |
|
static void |
login(User user)
|
|
static void |
pop()
|
|
static void |
push(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
|
static void |
release()
Releases the current thread (if not a system context) and calls the releaseThread() method of the system context. |
|
static void |
removeAttribute(String name)
Remove an attribute in the local scope. |
|
static void |
resetAggregationState()
Resets the current aggregation state if we're in a WebContext, throws an IllegalStateException otherwise. |
|
static void |
setAttribute(String name,
Object value)
Set attribute value, scope of the attribute is defined. |
|
static void |
setAttribute(String name,
Object value,
int scope)
Set attribute value, scope of the attribute is defined. |
|
static void |
setInstance(Context context)
Set context implementation instance. |
|
static void |
setLocale(Locale locale)
Set the locale for the current context. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MgnlContext()
Method Detail |
---|
public static User getUser()
public static void setLocale(Locale locale)
public static Locale getLocale()
public static Messages getMessages()
public static Messages getMessages(String basename)
public static void login(User user)
public static HierarchyManager getHierarchyManager(String repositoryId)
public static HierarchyManager getHierarchyManager(String repositoryId, String workspaceId)
public static AccessManager getAccessManager(String repositoryId)
public static AccessManager getAccessManager(String repositoryId, String workspaceId)
public static QueryManager getQueryManager(String repositoryId)
public static QueryManager getQueryManager(String repositoryId, String workspaceId)
public static MultipartForm getPostedForm()
MultipartRequestFilter
.
public static String getParameter(String name)
public static String[] getParameterValues(String name)
public static Map<String,String> getParameters()
public static String getContextPath()
public static AggregationState getAggregationState()
public static void resetAggregationState()
public static void setAttribute(String name, Object value)
public static void setAttribute(String name, Object value, int scope)
scope
- , highest level of scope from which this attribute is visible.public static Object getAttribute(String name)
public static Object getAttribute(String name, int scope)
public static boolean hasAttribute(String name)
public static void removeAttribute(String name)
public static void setInstance(Context context)
public static Context getInstance()
public static WebContext getWebContext()
getWebContext(String)
public static WebContext getWebContext(String exceptionMessage)
getWebContext()
public static WebContext getWebContextOrNull()
public static boolean hasInstance()
public static boolean isSystemInstance()
public static boolean isWebContext()
public static SystemContext getSystemContext()
public static void doInSystemContext(MgnlContext.SystemContextOperation op)
public static <T,E extends Throwable> T doInSystemContext(MgnlContext.Op<T,E> op) throws E extends Throwable
E extends Throwable
public static void doInSystemContext(MgnlContext.SystemContextOperation op, boolean releaseAfterExecution)
public static <T,E extends Throwable> T doInSystemContext(MgnlContext.Op<T,E> op, boolean releaseAfterExecution) throws E extends Throwable
releaseAfterExecution
- TODO document this parameter
E extends Throwable
public static void initAsWebContext(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, javax.servlet.ServletContext servletContext)
request
- HttpServletRequestresponse
- HttpServletResponseservletContext
- ServletContext instancepublic static void release()
public static void push(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
public static void pop()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |