/*
* Copyright (C) 2005-2010 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see .
*/
package org.alfresco.wcm.actions;
import java.util.List;
import org.alfresco.repo.action.ParameterDefinitionImpl;
import org.alfresco.repo.action.executer.ActionExecuterAbstractBase;
import org.alfresco.service.cmr.action.Action;
import org.alfresco.service.cmr.action.ParameterDefinition;
import org.alfresco.service.cmr.dictionary.DataTypeDefinition;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.wcm.sandbox.SandboxService;
/**
* WCM Submit example action (supercedes SimpleAVMSubmitAction)
*
* Submit changed assets from a user sandbox to corresponding staging sandbox - either all or a list
*
* The actionedUponNodeRef is a dummy and can be null.
*
* @author janv
*/
public class WCMSandboxSubmitAction extends ActionExecuterAbstractBase
{
public static String NAME = "wcm-submit";
public static final String PARAM_PATH_LIST = "path-list"; // list of paths (relative to sandbox store)
public static final String PARAM_SANDBOX_ID = "sandbox-id"; // sandbox store id
/**
* The WCM SandboxService
*/
private SandboxService sbService;
public void setSandboxService(SandboxService sbService)
{
this.sbService = sbService;
}
/* (non-Javadoc)
* @see org.alfresco.repo.action.executer.ActionExecuterAbstractBase#executeImpl(org.alfresco.service.cmr.action.Action, org.alfresco.service.cmr.repository.NodeRef)
*/
@SuppressWarnings("unchecked")
@Override
protected void executeImpl(Action action, NodeRef actionedUponNodeRef)
{
String sbStoreId = (String)action.getParameterValue(PARAM_SANDBOX_ID);
List relativePaths = (List)action.getParameterValue(PARAM_PATH_LIST);
if ((relativePaths == null) || (relativePaths.size() == 0))
{
sbService.submitAll(sbStoreId, "Submit Action", "Submit all changed items in sandbox: " + sbStoreId);
}
else
{
sbService.submitList(sbStoreId, relativePaths, "Submit Action", "Submit list of changed items in sandbox: " + sbStoreId);
}
}
/* (non-Javadoc)
* @see org.alfresco.repo.action.ParameterizedItemAbstractBase#addParameterDefinitions(java.util.List)
*/
@Override
protected void addParameterDefinitions(List paramList)
{
paramList.add(
new ParameterDefinitionImpl(PARAM_PATH_LIST,
DataTypeDefinition.ANY,
false,
getParamDisplayLabel(PARAM_PATH_LIST)));
paramList.add(
new ParameterDefinitionImpl(PARAM_SANDBOX_ID,
DataTypeDefinition.TEXT,
true,
getParamDisplayLabel(PARAM_SANDBOX_ID)));
}
}