public PortalContext getPortalContext()
{
return portalContext;
}
java类javax.portlet.PortalContext的实例源码
SakaiPortletContainerServices.java 文件源码
项目:sakai
阅读 16
收藏 0
点赞 0
评论 0
SakaiPortletContainerServices.java 文件源码
项目:sakai
阅读 19
收藏 0
点赞 0
评论 0
public void setPortalContext(PortalContext portalContext)
{
this.portalContext = portalContext;
}
ApplicationPortletImpl.java 文件源码
项目:GridSphere
阅读 17
收藏 0
点赞 0
评论 0
public PortalContext getPortalContext() {
return portalContext;
}
MockPortletURL.java 文件源码
项目:spring4-understanding
阅读 19
收藏 0
点赞 0
评论 0
/**
* Create a new MockPortletURL for the given URL type.
* @param portalContext the PortalContext defining the supported
* PortletModes and WindowStates
* @param urlType the URL type, for example "render" or "action"
* @see #URL_TYPE_RENDER
* @see #URL_TYPE_ACTION
*/
public MockPortletURL(PortalContext portalContext, String urlType) {
Assert.notNull(portalContext, "PortalContext is required");
this.portalContext = portalContext;
this.urlType = urlType;
}
MockClientDataRequest.java 文件源码
项目:spring4-understanding
阅读 19
收藏 0
点赞 0
评论 0
/**
* Create a new MockClientDataRequest.
* @param portalContext the PortalContext that the request runs in
* @param portletContext the PortletContext that the request runs in
*/
public MockClientDataRequest(PortalContext portalContext, PortletContext portletContext) {
super(portalContext, portletContext);
}
MockResourceRequest.java 文件源码
项目:spring4-understanding
阅读 18
收藏 0
点赞 0
评论 0
/**
* Create a new MockResourceRequest.
* @param portalContext the PortalContext that the request runs in
* @param portletContext the PortletContext that the request runs in
*/
public MockResourceRequest(PortalContext portalContext, PortletContext portletContext) {
super(portalContext, portletContext);
}
MockEventRequest.java 文件源码
项目:spring4-understanding
阅读 20
收藏 0
点赞 0
评论 0
/**
* Create a new MockEventRequest.
* @param event the event that this request wraps
* @param portalContext the PortletContext that the request runs in
* @param portletContext the PortletContext that the request runs in
*/
public MockEventRequest(Event event, PortalContext portalContext, PortletContext portletContext) {
super(portalContext, portletContext);
this.event = event;
}
MockPortletResponse.java 文件源码
项目:spring4-understanding
阅读 17
收藏 0
点赞 0
评论 0
/**
* Create a new MockPortletResponse.
* @param portalContext the PortalContext defining the supported
* PortletModes and WindowStates
*/
public MockPortletResponse(PortalContext portalContext) {
this.portalContext = (portalContext != null ? portalContext : new MockPortalContext());
}
MockPortletResponse.java 文件源码
项目:spring4-understanding
阅读 17
收藏 0
点赞 0
评论 0
/**
* Return the PortalContext that this MockPortletResponse runs in,
* defining the supported PortletModes and WindowStates.
*/
public PortalContext getPortalContext() {
return this.portalContext;
}
MockRenderResponse.java 文件源码
项目:spring4-understanding
阅读 17
收藏 0
点赞 0
评论 0
/**
* Create a new MockRenderResponse.
* @param portalContext the PortalContext defining the supported
* PortletModes and WindowStates
*/
public MockRenderResponse(PortalContext portalContext) {
super(portalContext);
}