
org.camunda.bpm.engine.impl.incident.FailedJobIncidentHandler Maven / Gradle / Ivy
/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.camunda.bpm.engine.impl.incident;
import java.util.List;
import org.camunda.bpm.engine.impl.context.Context;
import org.camunda.bpm.engine.impl.persistence.entity.IncidentEntity;
import org.camunda.bpm.engine.runtime.Incident;
/**
* A incident handler that logs incidents of type failedJob
* as instances of {@link Incident} to the engine database.
*
*
*
* This incident handler is active by default and must be disabled
* via {@link org.camunda.bpm.engine.ProcessEngineConfiguration#setCreateIncidentOnFailedJobEnabled(boolean)}.
*
* @see IncidentHandler
*
* @author nico.rehwaldt
* @author roman.smirnow
*/
public class FailedJobIncidentHandler implements IncidentHandler {
public final static String INCIDENT_HANDLER_TYPE = "failedJob";
public String getIncidentHandlerType() {
return INCIDENT_HANDLER_TYPE;
}
public void handleIncident(String processDefinitionId, String activityId, String executionId, String jobId, String message) {
if(executionId != null) {
IncidentEntity newIncident = IncidentEntity.createAndInsertIncident(INCIDENT_HANDLER_TYPE, executionId, jobId, message);
newIncident.createRecursiveIncidents();
} else {
IncidentEntity.createAndInsertIncident(INCIDENT_HANDLER_TYPE, processDefinitionId, activityId, jobId, message);
}
}
public void resolveIncident(String processDefinitionId, String activityId, String executionId, String jobId) {
List incidents = Context
.getCommandContext()
.getIncidentManager()
.findIncidentByConfiguration(jobId);
for (Incident currentIncident : incidents) {
IncidentEntity incident = (IncidentEntity) currentIncident;
incident.delete();
}
}
}