Coverage Report - org.mule.transport.xmpp.filters.XmppFromContainsFilter
 
Classes in this File Line Coverage Branch Coverage Complexity
XmppFromContainsFilter
0%
0/9
N/A
1
 
 1  
 /*
 2  
  * $Id: XmppFromContainsFilter.java 10489 2008-01-23 17:53:38Z 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.transport.xmpp.filters;
 12  
 
 13  
 import org.jivesoftware.smack.filter.PacketFilter;
 14  
 
 15  
 /**
 16  
  * <code>XmppFromContainsFilter</code> is an Xmpp FromContainsfilter adapter.
 17  
  */
 18  
 public class XmppFromContainsFilter extends AbstractXmppFilter
 19  
 {
 20  
     protected volatile String pattern;
 21  
 
 22  
     public XmppFromContainsFilter()
 23  
     {
 24  0
         super();
 25  0
     }
 26  
 
 27  
     public XmppFromContainsFilter(String pattern)
 28  0
     {
 29  0
         this.pattern = pattern;
 30  0
     }
 31  
 
 32  
     public String getPattern()
 33  
     {
 34  0
         return pattern;
 35  
     }
 36  
 
 37  
     public void setPattern(String pattern)
 38  
     {
 39  0
         this.pattern = pattern;
 40  0
     }
 41  
 
 42  
     protected PacketFilter createFilter()
 43  
     {
 44  0
         return new XmppFromContainsFilter(pattern);
 45  
     }
 46  
 }