1 17 18 package org.apache.james.core; 19 20 import org.apache.mailet.MailetContext; 21 import org.apache.mailet.MatcherConfig; 22 23 27 public class MatcherConfigImpl implements MatcherConfig { 28 29 32 private String condition; 33 34 37 private String name; 38 39 42 private MailetContext context; 43 44 50 public String getCondition() { 51 return condition; 52 } 53 54 57 public void setCondition(String newCondition) { 58 condition = newCondition; 59 } 60 61 69 public String getMatcherName() { 70 return name; 71 } 72 73 78 public void setMatcherName(String newName) { 79 name = newName; 80 } 81 82 88 public MailetContext getMailetContext() { 89 return context; 90 } 91 92 98 public void setMailetContext(MailetContext newContext) { 99 context = newContext; 100 } 101 } 102 | Popular Tags |