public void setEvent(String name, Serializable value) {
((StateAwareResponse)response).setEvent(name, value);
}
java类javax.portlet.StateAwareResponse的实例源码
StateAwareResponseWrapper.java 文件源码
项目:portals-pluto
阅读 23
收藏 0
点赞 0
评论 0
StateAwareResponseWrapper.java 文件源码
项目:portals-pluto
阅读 20
收藏 0
点赞 0
评论 0
@Deprecated
public Map<String, String[]> getRenderParameterMap() {
return ((StateAwareResponse)response).getRenderParameterMap();
}
StateAwareResponseWrapper.java 文件源码
项目:portals-pluto
阅读 22
收藏 0
点赞 0
评论 0
@Deprecated
public void removePublicRenderParameter(String name) {
((StateAwareResponse)response).removePublicRenderParameter(name);
}
StateAwareResponseWrapper.java 文件源码
项目:portals-pluto
阅读 20
收藏 0
点赞 0
评论 0
/**
* Return the wrapped response object.
*
* @return the wrapped response
*/
public StateAwareResponse getResponse() {
return (StateAwareResponse) response;
}
StateAwareResponseWrapper.java 文件源码
项目:portals-pluto
阅读 17
收藏 0
点赞 0
评论 0
/**
* Sets the response object being wrapped.
*
* @param response the response to set
* @throws java.lang.IllegalArgumentException if the response is null.
*/
public void setResponse(StateAwareResponse response) {
super.setResponse(response);
}