clearPortletSessionAttr()

Removes the value that is associated with the given key from the specified scope of the PortletSession

Syntax

portalLib.clearPortletSessionAttr(
  key String in, 
  scope SessionScopeKind)  
key
A string variable or literal value that indicates the key of the PortletSession attribute to be removed
scope
A value of enumerated type SessionScopeKind that indicates the PortletSession scope where the attribute is stored.

Example

portalLib.clearPortletSessionAttr(“key”,
SessionScopeKind.applicationScope);

Feedback