Coverage Report - org.mule.impl.endpoint.UrlEndpointBuilder
 
Classes in this File Line Coverage Branch Coverage Complexity
UrlEndpointBuilder
0%
0/11
0%
0/8
5
 
 1  
 /*
 2  
  * $Id: UrlEndpointBuilder.java 7963 2007-08-21 08:53:15Z dirk.olmes $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.impl.endpoint;
 12  
 
 13  
 import org.mule.umo.endpoint.MalformedEndpointException;
 14  
 
 15  
 import java.net.URI;
 16  
 import java.util.Properties;
 17  
 
 18  
 /**
 19  
  * <code>UrlEndpointBuilder</code> is the default endpointUri strategy suitable for
 20  
  * most connectors
 21  
  */
 22  
 
 23  0
 public class UrlEndpointBuilder extends AbstractEndpointBuilder
 24  
 {
 25  
 
 26  
     protected void setEndpoint(URI uri, Properties props) throws MalformedEndpointException
 27  
     {
 28  0
         address = "";
 29  0
         if (uri.getHost() != null)
 30  
         {
 31  
             // set the endpointUri to be a proper url if host and port are set
 32  0
             this.address = uri.getScheme() + "://" + uri.getHost();
 33  0
             if (uri.getPort() != -1)
 34  
             {
 35  0
                 address += ":" + uri.getPort();
 36  
             }
 37  
         }
 38  0
         if (uri.getPath() != null)
 39  
         {
 40  0
             address += uri.getPath();
 41  
         }
 42  
 
 43  0
         if (uri.getQuery() != null)
 44  
         {
 45  0
             address += "?" + uri.getQuery();
 46  
         }
 47  0
     }
 48  
 }