{
servletSession.removeAttribute(this.portletScopeAttrNamePrefix + (String) args[0]);
}
else if ("getAttributeNames".equals(m.getName()) && args == null)
{
retval = new NamespacedNamesEnumeration(servletSession.getAttributeNames(), this.portletScopeAttrNamePrefix);
}
else if ("getValueNames".equals(m.getName()) && args == null)
{
final List<String> list = new ArrayList<String>();
Enumeration<String> e = new NamespacedNamesEnumeration(servletSession.getAttributeNames(), this.portletScopeAttrNamePrefix);
while (e.hasMoreElements())
{
list.add(e.nextElement());
}
retval = list.toArray(new String[list.size()]);
}
else
{