/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This 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 2.1 of * the License, or (at your option) any later version. * * This software 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 this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.extension.distribution.internal.job; import org.xwiki.extension.distribution.internal.job.step.DistributionStep; /** * @version $Id: 99ef6221feb2931601532addf0ba8d4946e7daeb $ * @since 5.0M1 */ public class DistributionQuestion { public enum Action { /** * Skip the step. */ SKIP, /** * Cancel the step. */ CANCEL } private Action action; private DistributionStep step; public DistributionQuestion(DistributionStep step) { this.step = step; } public DistributionStep getStep() { return this.step; } public String getStepId() { return this.step.getId(); } public Action getAction() { return this.action; } public void setAction(Action action) { this.action = action; } }