1 6 package tests.jfun.parsec.rfc822; 7 8 13 public final class AuthenticatedAddress { 14 private final Authentic auth; 15 private final Address[] reply_to; 16 17 21 AuthenticatedAddress(final Authentic auth, final Address[] reply_to) { 22 super(); 23 this.auth = auth; 24 this.reply_to = reply_to; 25 } 26 29 public Authentic getAuth() { 30 return auth; 31 } 32 35 public Address[] getReplyTo() { 36 return reply_to; 37 } 38 } 39 | Popular Tags |