KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gnu > mail > providers > imap4 > MailboxStatus


1 /*
2  * MailboxStatus.java
3  * Copyright (C) 2003 Chris Burdess <dog@gnu.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * You also have permission to link it with the Sun Microsystems, Inc.
11  * JavaMail(tm) extension and run that combination.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  */

22
23 package gnu.mail.providers.imap4;
24
25 import java.util.List JavaDoc;
26
27 /**
28  * Represents the state of a mailbox.
29  *
30  * @author <a HREF='mailto:dog@gnu.org'>Chris Burdess</a>
31  * @version 0.1
32  */

33 public class MailboxStatus
34 {
35
36   public int messageCount = -1;
37
38   public int newMessageCount = -1;
39
40   public int firstUnreadMessage = -1;
41
42   public int uidNext = -1;
43   
44   public int uidValidity = -1;
45
46   public List JavaDoc flags;
47
48   public List JavaDoc permanentFlags;
49
50   public boolean readWrite;
51
52 }
53
Popular Tags