return new URL(stack, req, res);
super.populateParams(); URL url = (URL) component; url.setIncludeParams(includeParams); url.setScheme(scheme); url.setValue(value); url.setMethod(method); url.setNamespace(namespace); url.setAction(action); url.setPortletMode(portletMode); url.setPortletUrlType(portletUrlType); url.setWindowState(windowState); url.setAnchor(anchor); if (encode != null) { url.setEncode(Boolean.valueOf(encode).booleanValue()); } if (includeContext != null) { url.setIncludeContext(Boolean.valueOf(includeContext).booleanValue()); }
this.action = action;
this.anchor = anchor;
this.encode = encode;
this.includeContext = includeContext;
includeParams = name;
this.method = method;
this.namespace = namespace;
this.portletMode = portletMode;
this.portletUrlType = portletUrlType;
this.scheme = scheme;
this.value = value;
this.windowState = windowState;