001/* 002 * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. 003 * 004 * All rights reserved. This program and the accompanying materials 005 * are made available under the terms of the Eclipse Public License v1.0 006 * which accompanies this distribution, and is available at 007 * http://www.eclipse.org/legal/epl-v10.html 008 * 009 * Contributors: 010 */ 011 012package org.nuxeo.ecm.automation.jsf.operations; 013 014import org.nuxeo.ecm.automation.OperationContext; 015import org.nuxeo.ecm.automation.core.Constants; 016import org.nuxeo.ecm.automation.core.annotations.Context; 017import org.nuxeo.ecm.automation.core.annotations.Operation; 018import org.nuxeo.ecm.automation.core.annotations.OperationMethod; 019import org.nuxeo.ecm.automation.jsf.OperationHelper; 020import org.nuxeo.ecm.webapp.documentsLists.DocumentsListsManager; 021import org.nuxeo.ecm.webapp.documentsLists.DocumentsListsPersistenceManager; 022 023/** 024 * @author Anahide Tchertchian 025 */ 026@Operation(id = ClearWorklist.ID, category = Constants.CAT_UI, requires = Constants.SEAM_CONTEXT, label = "Clear Worklist", description = "Clear the worklist content.", aliases = { "Seam.ClearWorklist" }) 027public class ClearWorklist { 028 029 public static final String ID = "WebUI.ClearWorklist"; 030 031 @Context 032 protected OperationContext ctx; 033 034 @OperationMethod 035 public void run() { 036 if (OperationHelper.isSeamContextAvailable()) { 037 OperationHelper.getDocumentListManager().resetWorkingList(DocumentsListsManager.DEFAULT_WORKING_LIST); 038 } else { 039 DocumentsListsPersistenceManager pm = new DocumentsListsPersistenceManager(); 040 pm.clearPersistentList(ctx.getPrincipal().getName(), DocumentsListsManager.DEFAULT_WORKING_LIST); 041 } 042 } 043 044}