{
Iterator iterComponents = component.getFacetsAndChildren();
while (iterComponents.hasNext())
{
Object child = iterComponents.next();
AbstractConversationComponent conversation;
if (child instanceof UIEndConversation)
{
conversation = (AbstractConversationComponent) child;
if (conversation.getName().equals(conversationName))
{
return conversation;
}
}
else if (child instanceof UIComponent)