Package org.apache.commons.net.pop3
Class POP3MessageInfo
- java.lang.Object
-
- org.apache.commons.net.pop3.POP3MessageInfo
-
public final class POP3MessageInfo extends java.lang.Object
POP3MessageInfo is used to return information about messages stored on a POP3 server. Its fields are used to mean slightly different things depending on the information being returned.In response to a status command,
number
contains the number of messages in the mailbox,size
contains the size of the mailbox in bytes, andidentifier
is null.In response to a message listings,
number
contains the message number,size
contains the size of the message in bytes, andidentifier
is null.In response to unique identifier listings,
number
contains the message number,size
is undefined, andidentifier
contains the message's unique identifier.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
identifier
int
number
int
size
-
Constructor Summary
Constructors Constructor Description POP3MessageInfo()
Creates a POP3MessageInfo instance withnumber
andsize
set to 0, andidentifier
set to null.POP3MessageInfo(int num, int octets)
Creates a POP3MessageInfo instance withnumber
set tonum
,size
set tooctets
, andidentifier
set to null.POP3MessageInfo(int num, java.lang.String uid)
Creates a POP3MessageInfo instance withnumber
set tonum
,size
undefined, andidentifier
set touid
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Constructor Detail
-
POP3MessageInfo
public POP3MessageInfo()
Creates a POP3MessageInfo instance withnumber
andsize
set to 0, andidentifier
set to null.
-
POP3MessageInfo
public POP3MessageInfo(int num, int octets)
Creates a POP3MessageInfo instance withnumber
set tonum
,size
set tooctets
, andidentifier
set to null.- Parameters:
num
- the numberoctets
- the size
-
POP3MessageInfo
public POP3MessageInfo(int num, java.lang.String uid)
Creates a POP3MessageInfo instance withnumber
set tonum
,size
undefined, andidentifier
set touid
.- Parameters:
num
- the numberuid
- the UID
-
-