Coverage Report - org.mule.routing.AbstractCatchAllStrategy
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractCatchAllStrategy
88%
7/8
N/A
1
 
 1  
 /*
 2  
  * $Id: AbstractCatchAllStrategy.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.routing;
 12  
 
 13  
 import org.mule.management.stats.RouterStatistics;
 14  
 import org.mule.umo.endpoint.UMOEndpoint;
 15  
 import org.mule.umo.routing.UMORouterCatchAllStrategy;
 16  
 
 17  
 import org.apache.commons.logging.Log;
 18  
 import org.apache.commons.logging.LogFactory;
 19  
 
 20  
 /**
 21  
  * <code>ForwardingCatchAllStrategy</code> acts as a catch and forward router for any
 22  
  * events not caught by the router this strategy is associated with. Users can assign an
 23  
  * endpoint to this strategy to forward all events to. This is similar to a dead letter
 24  
  * queue in messaging.
 25  
  */
 26  
 
 27  42
 public abstract class AbstractCatchAllStrategy implements UMORouterCatchAllStrategy
 28  
 {
 29  
     /**
 30  
      * logger used by this class
 31  
      */
 32  42
     protected transient Log logger = LogFactory.getLog(getClass());
 33  
 
 34  
     protected UMOEndpoint endpoint;
 35  
 
 36  
     protected RouterStatistics statistics;
 37  
 
 38  
     public void setEndpoint(UMOEndpoint endpoint)
 39  
     {
 40  6
         this.endpoint = endpoint;
 41  6
     }
 42  
 
 43  
     public UMOEndpoint getEndpoint()
 44  
     {
 45  16
         return endpoint;
 46  
     }
 47  
 
 48  
     public RouterStatistics getStatistics()
 49  
     {
 50  0
         return statistics;
 51  
     }
 52  
 
 53  
     public void setStatistics(RouterStatistics statistics)
 54  
     {
 55  34
         this.statistics = statistics;
 56  34
     }
 57  
 
 58  
 }