1 6 package tests.jfun.parsec.rfc822; 7 8 import javax.naming.AuthenticationException ; 9 10 15 public class MultipleAuthentic extends Authentic { 16 private final Mailbox sender; 17 private final Mailbox[] from; 18 19 25 MultipleAuthentic(String type, final Mailbox sender, 26 final Mailbox[] from) { 27 super(type, false); 28 this.sender = sender; 29 this.from = from; 30 } 31 32 35 public Mailbox[] getFrom() { 36 return from; 37 } 38 41 public Mailbox getSender() { 42 return sender; 43 } 44 } 45 | Popular Tags |