Coverage Report - org.mule.config.spring.factories.OutboundEndpointFactoryBean
 
Classes in this File Line Coverage Branch Coverage Complexity
OutboundEndpointFactoryBean
0%
0/6
N/A
1
 
 1  
 /*
 2  
  * $Id: OutboundEndpointFactoryBean.java 10961 2008-02-22 19:01:02Z dfeist $
 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.config.spring.factories;
 12  
 
 13  
 import org.mule.api.endpoint.EndpointException;
 14  
 import org.mule.api.endpoint.OutboundEndpoint;
 15  
 import org.mule.endpoint.EndpointURIEndpointBuilder;
 16  
 
 17  
 /**
 18  
  * Spring FactoryBean used to create concrete instances of outbound endpoints
 19  
  */
 20  
 public class OutboundEndpointFactoryBean extends AbstractEndpointFactoryBean
 21  
 {
 22  
 
 23  
     public OutboundEndpointFactoryBean(EndpointURIEndpointBuilder global) throws EndpointException
 24  
     {
 25  0
         super(global);
 26  0
     }
 27  
 
 28  
     public OutboundEndpointFactoryBean()
 29  
     {
 30  0
         super();
 31  0
     }
 32  
     
 33  
     public Class getObjectType()
 34  
     {
 35  0
         return OutboundEndpoint.class;
 36  
     }
 37  
 
 38  
     public Object doGetObject() throws Exception
 39  
     {
 40  0
         return muleContext.getRegistry().lookupEndpointFactory().getOutboundEndpoint(this);
 41  
     }
 42  
 
 43  
 }