
org.activiti.engine.ManagementService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activiti-engine Show documentation
Show all versions of activiti-engine Show documentation
workflow engine base on bboss and activiti.
The newest version!
/* 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.activiti.engine;
import java.sql.Connection;
import java.util.Map;
import org.activiti.engine.management.TableMetaData;
import org.activiti.engine.management.TablePage;
import org.activiti.engine.management.TablePageQuery;
import org.activiti.engine.runtime.JobQuery;
import org.activiti.engine.task.Task;
/**
* Service for admin and maintenance operations on the process engine.
*
* These operations will typically not be used in a workflow driven application,
* but are used in for example the operational console.
*
* @author Tom Baeyens
* @author Joram Barrez
* @author Falko Menge
*/
public interface ManagementService {
/**
* Get the mapping containing {table name, row count} entries of the
* Activiti database schema.
*/
Map getTableCount();
/**
* Gets the table name (including any configured prefix) for an Activiti entity like Task, Execution or the like.
*/
String getTableName(Class> activitiEntityClass);
/**
* Gets the metadata (column names, column types, etc.) of a certain table.
* Returns null when no table exists with the given name.
*/
TableMetaData getTableMetaData(String tableName);
/**
* Creates a {@link TablePageQuery} that can be used to fetch {@link TablePage}
* containing specific sections of table row data.
*/
TablePageQuery createTablePageQuery();
/**
* Returns a new JobQuery implementation, that can be used
* to dynamically query the jobs.
*/
JobQuery createJobQuery();
/**
* Forced synchronous execution of a job (eg. for administation or testing)
* The job will be executed, even if the process definition and/or the process instance
* is in suspended state.
*
* @param jobId id of the job to execute, cannot be null.
* @throws ActivitiObjectNotFoundException when there is no job with the given id.
*/
void executeJob(String jobId);
/**
* Delete the job with the provided id.
* @param jobId id of the job to execute, cannot be null.
* @throws ActivitiObjectNotFoundException when there is no job with the given id.
*/
void deleteJob(String jobId);
/**
* Sets the number of retries that a job has left.
*
* Whenever the JobExecutor fails to execute a job, this value is decremented.
* When it hits zero, the job is supposed to be dead and not retried again.
* In that case, this method can be used to increase the number of retries.
* @param jobId id of the job to modify, cannot be null.
* @param retries number of retries.
*/
void setJobRetries(String jobId, int retries);
/**
* Returns the full stacktrace of the exception that occurs when the job
* with the given id was last executed. Returns null when the job has no
* exception stacktrace.
* @param jobId id of the job, cannot be null.
* @throws ActivitiObjectNotFoundException when no job exists with the given id.
*/
String getJobExceptionStacktrace(String jobId);
/** get the list of properties. */
Map getProperties();
/** programmatic schema update on a given connection returning feedback about what happened */
String databaseSchemaUpgrade(Connection connection, String catalog, String schema);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy