Package org.xwiki.container
Interface Container
-
@Role public interface Container
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ApplicationContextgetApplicationContext()Deprecated.use the notion ofEnvironmentinsteadRequestgetRequest()ResponsegetResponse()SessiongetSession()voidpopRequest()voidpopResponse()voidpopSession()voidpushRequest(Request request)voidpushResponse(Response response)voidpushSession(Session session)voidremoveRequest()voidremoveResponse()voidremoveSession()voidsetApplicationContext(ApplicationContext context)Deprecated.use the notion ofEnvironmentinsteadvoidsetRequest(Request request)voidsetResponse(Response response)voidsetSession(Session session)
-
-
-
Method Detail
-
getApplicationContext
@Deprecated(since="3.5M1") ApplicationContext getApplicationContext()
Deprecated.use the notion ofEnvironmentinstead
-
setApplicationContext
@Deprecated(since="3.5M1") void setApplicationContext(ApplicationContext context)
Deprecated.use the notion ofEnvironmentinstead
-
getRequest
Request getRequest()
-
setRequest
void setRequest(Request request)
-
removeRequest
void removeRequest()
-
pushRequest
void pushRequest(Request request)
-
popRequest
void popRequest()
-
getResponse
Response getResponse()
-
setResponse
void setResponse(Response response)
-
removeResponse
void removeResponse()
-
pushResponse
void pushResponse(Response response)
-
popResponse
void popResponse()
-
getSession
Session getSession()
-
setSession
void setSession(Session session)
-
removeSession
void removeSession()
-
pushSession
void pushSession(Session session)
-
popSession
void popSession()
-
-