blob: 16e5a5310a38cfe271f343a659d2e06d84d2b4b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
package com.libmailcore;
public class POPSession extends NativeObject {
public POPSession()
{
setupNative();
}
protected void finalize() throws Throwable
{
finalizeNative();
super.finalize();
}
/** Sets the POP server hostname. */
public native void setHostname(String hostname);
/** Returns the POP server hostname. */
public native String hostname();
/** Sets the port. */
public native void setPort(int port);
/** Returns the port. */
public native int port();
/** Sets the username. */
public native void setUsername(String username);
/** Returns the username. */
public native String username();
/** Sets the password. */
public native void setPassword(String password);
/** Returns the password. */
public native String password();
/**
Sets the authentication type.
@see com.libmailcore.AuthType
*/
public native void setAuthType(int authType);
/**
Returns authentication type.
@see com.libmailcore.AuthType
*/
public native int authType();
/**
Set connection type (clear-text, SSL or STARTTLS).
@see com.libmailcore.ConnectionType
*/
public native void setConnectionType(int connectionType);
/**
Returns connection type (clear-text, SSL or STARTTLS).
@see com.libmailcore.ConnectionType
*/
public native int connectionType();
/** Sets network timeout in seconds. */
public native void setTimeout(long seconds);
/** Returns network timeout in seconds. */
public native long timeout();
/** Sets whether the certificate of the server should be checked. */
public native void setCheckCertificateEnabled(boolean enabled);
/** Returns whether the certificate of the server should be checked. */
public native boolean isCheckCertificateEnabled();
/** Sets the connection logger. */
public void setConnectionLogger(ConnectionLogger logger)
{
connectionLogger = logger;
setupNativeConnectionLogger();
}
/** Returns the connection logger. */
public ConnectionLogger connectionLogger()
{
return connectionLogger;
}
/** Sets the IMAP operations queue listener. */
public void setOperationQueueListener(OperationQueueListener listener)
{
operationQueueListener = listener;
setupNativeOperationQueueListener();
}
/** Returns the IMAP operations queue listener. */
public OperationQueueListener operationQueueListener()
{
return operationQueueListener;
}
/** Returns whether the operation queue is running. */
public native boolean isOperationQueueRunning();
/** Cancels all queued operations. */
public native void cancelAllOperations();
/** Returns an operation to fetch the list of messages. */
public native POPFetchMessagesOperation fetchMessagesOperation();
/** Returns an operation to fetch headers of a given message. */
public native POPFetchHeaderOperation fetchHeaderOperation(int index);
/** Returns an operation to fetch the content of a given message. */
public native POPFetchMessageOperation fetchMessageOperation(int index);
/** Returns an operation to delete messages. */
public native POPOperation deleteMessagesOperation(IndexSet indexes);
/** Returns an operation to disconnect. */
public native POPOperation disconnectOperation();
/** Returns an operation to check credentials. */
public native POPOperation checkAccountOperation();
/** Returns a POP NOOP operation. */
public native POPOperation noopOperation();
private native void setupNative();
private native void finalizeNative();
private ConnectionLogger connectionLogger;
private OperationQueueListener operationQueueListener;
private native void setupNativeOperationQueueListener();
private native void setupNativeConnectionLogger();
}
|