{
Iterator windows = this.windowAccessor.getPortletWindows().iterator();
while (windows.hasNext())
{
PortletWindow window = (PortletWindow)windows.next();
PortletDefinitionComposite pd = (PortletDefinitionComposite)window.getPortletEntity().getPortletDefinition();
for (int ix = 0; ix < fullPortletNames.size(); ix++)
{
if (pd.getUniqueName().equals(fullPortletNames.get(ix)))
{
putIntoService(window);
}
}
}