1 //The contents of this file are subject to the Mozilla Public License Version 1.12 //(the "License"); you may not use this file except in compliance with the 3 //License. You may obtain a copy of the License at http://www.mozilla.org/MPL/4 //5 //Software distributed under the License is distributed on an "AS IS" basis,6 //WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 7 //for the specific language governing rights and8 //limitations under the License.9 //10 //The Original Code is "The Columba Project"11 //12 //The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.13 //Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003. 14 //15 //All Rights Reserved.16 package org.columba.mail.filter.plugins;17 18 import org.columba.api.command.ICommand;19 import org.columba.core.command.CommandProcessor;20 import org.columba.core.filter.AbstractFilterAction;21 import org.columba.core.filter.FilterAction;22 import org.columba.core.filter.IFilterAction;23 import org.columba.core.folder.api.IFolder;24 import org.columba.mail.command.MailFolderCommandReference;25 import org.columba.mail.folder.command.ExpungeFolderCommand;26 import org.columba.mail.folder.command.MarkMessageCommand;27 28 29 /**30 * @author freddy31 *32 * To change this generated comment edit the template variable "typecomment":33 * Window>Preferences>Java>Templates.34 * To enable and disable the creation of type comments go to35 * Window>Preferences>Java>Code Generation.36 */37 public class DeleteMessageAction extends AbstractFilterAction {38 /**39 * @see org.columba.modules.mail.filter.action.AbstractFilterAction#execute()40 */41 public ICommand getCommand(IFilterAction filterAction, IFolder srcFolder,42 Object [] uids) throws Exception {43 MailFolderCommandReference r = new MailFolderCommandReference(srcFolder, uids);44 r.setMarkVariant(MarkMessageCommand.MARK_AS_EXPUNGED);45 46 MarkMessageCommand c = new MarkMessageCommand(r);47 48 CommandProcessor.getInstance().addOp(c);49 50 51 r = new MailFolderCommandReference(srcFolder);52 53 return new ExpungeFolderCommand(r);54 }55 }56