All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.james.imap.message.request.MoveRequest Maven / Gradle / Ivy

There is a newer version: 3.8.1
Show newest version
package org.apache.james.imap.message.request;

import org.apache.james.imap.api.ImapCommand;
import org.apache.james.imap.api.message.IdRange;
import org.apache.james.imap.api.message.request.ImapRequest;

/**
 * {@link ImapRequest} which request the move of messages
 */
public class MoveRequest extends CopyRequest {

	public MoveRequest(ImapCommand command, IdRange[] idSet,
			String mailboxName, boolean useUids, String tag) {
		super(command, idSet, mailboxName, useUids, tag);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy