1 /*2 * @(#)AppendUID.java 1.1 05/11/173 *4 * Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.5 * 6 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.7 * 8 */9 10 package com.sun.mail.imap;11 12 import com.sun.mail.iap.*;13 14 /**15 * Information from the APPENDUID response code16 * defined by the UIDPLUS extension -17 * <A HREF="http://www.ietf.org/rfc/rfc2359.txt">RFC 2359</A>.18 *19 * @version 1.1, 05/11/1720 * @author Bill Shannon21 */22 23 public class AppendUID { 24 public long uidvalidity = -1;25 public long uid = -1;26 27 public AppendUID(long uidvalidity, long uid) {28 this.uidvalidity = uidvalidity;29 this.uid = uid;30 }31 }32