View Javadoc

1   /*
2    * $Id: XmppFromContainsFilter.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.providers.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          super();
25      }
26  
27      public XmppFromContainsFilter(String pattern)
28      {
29          this.pattern = pattern;
30      }
31  
32      public String getPattern()
33      {
34          return pattern;
35      }
36  
37      public void setPattern(String pattern)
38      {
39          this.pattern = pattern;
40      }
41  
42      protected PacketFilter createFilter()
43      {
44          return new XmppFromContainsFilter(pattern);
45      }
46  }