1 19 20 21 package org.apache.james.transport.matchers; 22 23 import org.apache.mailet.GenericMatcher; 24 25 public class HasMailAttributeTest extends AbstractHasMailAttributeTest { 26 27 public HasMailAttributeTest() { 28 super(); 29 } 30 31 protected GenericMatcher createMatcher() { 32 return new HasMailAttribute(); 33 } 34 35 protected String getHasMailAttribute() { 36 return MAIL_ATTRIBUTE_NAME; 37 } 38 39 protected String getConfigOption() { 40 return "HasMailAttribute="; 41 } 42 43 } 44 | Popular Tags |