org.camunda.bpm.engine.impl.DeploymentStatisticsQueryImpl Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. Camunda licenses this file to you under the Apache License,
* Version 2.0; 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;
import java.util.ArrayList;
import java.util.List;
import org.camunda.bpm.engine.ProcessEngineException;
import org.camunda.bpm.engine.impl.db.PermissionCheck;
import org.camunda.bpm.engine.impl.interceptor.CommandContext;
import org.camunda.bpm.engine.impl.interceptor.CommandExecutor;
import org.camunda.bpm.engine.management.DeploymentStatistics;
import org.camunda.bpm.engine.management.DeploymentStatisticsQuery;
public class DeploymentStatisticsQueryImpl extends AbstractQuery
implements DeploymentStatisticsQuery {
protected static final long serialVersionUID = 1L;
protected boolean includeFailedJobs = false;
protected boolean includeIncidents = false;
protected String includeIncidentsForType;
// for internal use
protected List processInstancePermissionChecks = new ArrayList();
protected List jobPermissionChecks = new ArrayList();
protected List incidentPermissionChecks = new ArrayList();
public DeploymentStatisticsQueryImpl(CommandExecutor executor) {
super(executor);
}
public DeploymentStatisticsQuery includeFailedJobs() {
includeFailedJobs = true;
return this;
}
public DeploymentStatisticsQuery includeIncidents() {
includeIncidents = true;
return this;
}
public DeploymentStatisticsQuery includeIncidentsForType(String incidentType) {
this.includeIncidentsForType = incidentType;
return this;
}
public long executeCount(CommandContext commandContext) {
checkQueryOk();
return
commandContext
.getStatisticsManager()
.getStatisticsCountGroupedByDeployment(this);
}
@Override
public List executeList(CommandContext commandContext,
Page page) {
checkQueryOk();
return
commandContext
.getStatisticsManager()
.getStatisticsGroupedByDeployment(this, page);
}
public boolean isFailedJobsToInclude() {
return includeFailedJobs;
}
public boolean isIncidentsToInclude() {
return includeIncidents || includeIncidentsForType != null;
}
protected void checkQueryOk() {
super.checkQueryOk();
if (includeIncidents && includeIncidentsForType != null) {
throw new ProcessEngineException("Invalid query: It is not possible to use includeIncident() and includeIncidentForType() to execute one query.");
}
}
// getter/setter for authorization check
public List getProcessInstancePermissionChecks() {
return processInstancePermissionChecks;
}
public void setProcessInstancePermissionChecks(List processInstancePermissionChecks) {
this.processInstancePermissionChecks = processInstancePermissionChecks;
}
public void addProcessInstancePermissionCheck(List permissionChecks) {
processInstancePermissionChecks.addAll(permissionChecks);
}
public List getJobPermissionChecks() {
return jobPermissionChecks;
}
public void setJobPermissionChecks(List jobPermissionChecks) {
this.jobPermissionChecks = jobPermissionChecks;
}
public void addJobPermissionCheck(List permissionChecks) {
jobPermissionChecks.addAll(permissionChecks);
}
public List getIncidentPermissionChecks() {
return incidentPermissionChecks;
}
public void setIncidentPermissionChecks(List incidentPermissionChecks) {
this.incidentPermissionChecks = incidentPermissionChecks;
}
public void addIncidentPermissionCheck(List permissionChecks) {
incidentPermissionChecks.addAll(permissionChecks);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy