aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/IMAPCopyMessagesOperation.java
blob: 49faf4ae7b23087ab62cb7190a616b94e487060b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.libmailcore;

import java.util.Map;

/** Operation to copy IMAP messages. */
public class IMAPCopyMessagesOperation extends IMAPOperation {
    /**
        Returns a map of the UIDs of the messages in the source folder to the UIDs of
        the messages in the destination folder.
    */
    public native Map<Long,Long> uidMapping();
}