1 /*2 * Created on Dec 20, 20043 *4 * Author Ben Yu5 */6 package tests.jfun.parsec.rfc822;7 8 /**9 * @author Ben Yu10 *11 * Dec 20, 200412 */13 public class SingleAuthentic extends Authentic{14 private final Mailbox from;15 16 /**17 * @param type18 * @param single19 * @param mailbox20 */21 SingleAuthentic(String type, final Mailbox from) {22 super(type, true);23 this.from = from;24 }25 /**26 * @return Returns the from mailbox.27 */28 public Mailbox getFrom() {29 return from;30 }31 }32