/*
* $Id: XmppEndpointURIBuilder.java 20321 2010-11-24 15:21:24Z dfeist $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.transport.xmpp;
import org.mule.api.endpoint.MalformedEndpointException;
import org.mule.endpoint.UserInfoEndpointURIBuilder;
import org.mule.transport.xmpp.i18n.XmppMessages;
import java.net.URI;
import java.util.Properties;
/**
* This endpoint builder ensures that a path is set on the URI as the path is the message type.
*
*/
public class XmppEndpointURIBuilder extends UserInfoEndpointURIBuilder
{
@Override
protected void setEndpoint(URI uri, Properties props) throws MalformedEndpointException
{
checkXmppMessageType(uri);
checkRecipient(uri);
super.setEndpoint(uri, props);
}
private void checkXmppMessageType(URI uri) throws MalformedEndpointException
{
// the XMPP message type is stored in the host of the URL
String host = uri.getHost();
if (host.length() == 0)
{
throw new MalformedEndpointException(XmppMessages.noMessageTypeInUri(), uri.toString());
}
try
{
XmppMessageType.valueOf(host);
}
catch (IllegalArgumentException e)
{
throw new MalformedEndpointException(XmppMessages.invalidMessageTypeInUri(),
uri.toString());
}
}
private void checkRecipient(URI uri) throws MalformedEndpointException
{
// the recipient is stored in the path of the URL
if (uri.getPath().length() == 0)
{
throw new MalformedEndpointException(XmppMessages.noRecipientInUri(), uri.toString());
}
}
}