Package mireka.pop
Class Session
- Object
-
- mireka.pop.Session
-
public class Session extends ObjectThe Session class represents a POP3 session, it stores information collected during the session and provides access to other classes related to the session.
-
-
Constructor Summary
Constructors Constructor Description Session(PopServer server, SessionThread sessionThread)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MaildropgetMaildrop()PopServergetServer()SessionStategetSessionState()SessionThreadgetThread()booleanisTlsStarted()voidsetMaildrop(Maildrop maildrop)voidsetSessionState(SessionState sessionState)voidsetTlsStarted(boolean started)
-
-
-
Constructor Detail
-
Session
public Session(PopServer server, SessionThread sessionThread)
-
-
Method Detail
-
getServer
public PopServer getServer()
- Category:
- GETSET
-
getSessionState
public SessionState getSessionState()
- Category:
- GETSET
-
setSessionState
public void setSessionState(SessionState sessionState)
- Category:
- GETSET
-
getMaildrop
public Maildrop getMaildrop()
- Category:
- GETSET
-
setMaildrop
public void setMaildrop(Maildrop maildrop)
- Category:
- GETSET
-
getThread
public SessionThread getThread()
- Category:
- GETSET
-
isTlsStarted
public boolean isTlsStarted()
- Category:
- GETSET
-
setTlsStarted
public void setTlsStarted(boolean started)
- Category:
- GETSET
-
-