KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > mail > imap > AppendUID


1 /*
2  * @(#)AppendUID.java 1.1 05/11/17
3  *
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 code
16  * 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/17
20  * @author Bill Shannon
21  */

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
Popular Tags