return true;
}
if (!(object instanceof IPortletWindow)) {
return false;
}
IPortletWindow rhs = (IPortletWindow) object;
return new EqualsBuilder()
.append(this.portletWindowId, rhs.getId())
.append(this.contextPath, rhs.getContextPath())
.append(this.portletName, rhs.getPortletName())
.append(this.windowState, rhs.getWindowState())
.append(this.portletMode, rhs.getPortletMode())
.append(this.expirationCache, rhs.getExpirationCache())
.append(this.requestParameters, rhs.getRequestParameters())
.append(this.delegationParent, rhs.getDelegationParent())
.isEquals();
}