Collection list = null;
PortletApplicationEntityImpl app = getApplication(appId);
Collection plets = app.getCastorPortlets();
Iterator iter = plets.iterator();
while(iter.hasNext()) {
PortletEntityImpl plet = (PortletEntityImpl)iter.next();
if (plet.getCastorId().equalsIgnoreCase(portletId)) {
list = plet.getCastorPreferences();
break;
}
}
return list;
}