@Override
public int doStartTag() throws JspException {
Object obj = pageContext.getRequest().getAttribute(Constants.PORTLET_RESPONSE);
if ((obj == null) || !(obj instanceof MimeResponse)) {
throw new JspException("Could not obtain MimeResponse to create the URL.");
}
MimeResponse resp = (MimeResponse) obj;
ActionURL aurl = null;
if (isCopyCurrentRenderParameters() == true) {
aurl = resp.createActionURL(Copy.ALL);
} else {
aurl = resp.createActionURL(Copy.NONE);
}
rparams = aurl.getRenderParameters();
aparams = aurl.getActionParameters();
setUrl(aurl);
handlePMandWS();
handleDefaultEscapeXML();
handleSecureFlag();
return EVAL_BODY_INCLUDE;
}
ActionURLTag362.java 文件源码
java
阅读 21
收藏 0
点赞 0
评论 0
项目:portals-pluto
作者:
评论列表
文章目录