Coverage Report - org.mule.examples.loanbroker.bpm.LoanBrokerApp
 
Classes in this File Line Coverage Branch Coverage Complexity
LoanBrokerApp
0%
0/6
N/A
1
 
 1  
 /*
 2  
  * $Id: LoanBrokerApp.java 7976 2007-08-21 14:26:13Z 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.examples.loanbroker.bpm;
 12  
 
 13  
 import org.mule.config.ConfigurationBuilder;
 14  
 import org.mule.examples.loanbroker.AbstractLoanBrokerApp;
 15  
 import org.mule.extras.spring.config.SpringConfigurationBuilder;
 16  
 import org.mule.umo.UMOException;
 17  
 
 18  
 /**
 19  
  * Executes the LoanBroker BPM example.
 20  
  */
 21  
 public class LoanBrokerApp extends AbstractLoanBrokerApp
 22  
 {
 23  
     public LoanBrokerApp(String config) throws Exception
 24  
     {
 25  0
         super(config);
 26  0
     }
 27  
 
 28  
     public static void main(String[] args) throws Exception
 29  
     {
 30  0
         LoanBrokerApp loanBrokerApp = new LoanBrokerApp("loan-broker-bpm-mule-config.xml");
 31  0
         loanBrokerApp.run(false);
 32  0
     }
 33  
 
 34  
     protected ConfigurationBuilder getConfigBuilder() throws UMOException
 35  
     {
 36  0
         return new SpringConfigurationBuilder();
 37  
     }
 38  
     
 39  
 }