blob: af27fb2e51daf1c2b79cde0e26abd0f38d08b1f2 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************
*/
package org.eclipse.openk.core.bpmn.base;
import org.eclipse.openk.core.bpmn.base.tasks.ServiceTask;
import org.eclipse.openk.core.exceptions.HttpStatusException;
public class ServiceTaskImpl extends ServiceTask<TestProcessSubject> {
public boolean leaveStepCalled = false;
public boolean enterStepCalled = false;
public ServiceTaskImpl(String description ) {
super(description);
}
@Override
protected void onLeaveStep(TestProcessSubject model) throws ProcessException {
this.leaveStepCalled = true;
}
@Override
public void enterStep(ProcessSubject model ) throws ProcessException, HttpStatusException {
super.enterStep(model);
this.enterStepCalled = true;
}
}