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

import java.util.Map;

/** Operation to move IMAP messages. */
public class IMAPMoveMessagesOperation 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();
}