/** * Copyright 2010 Red Hat, Inc. and/or its affiliates. * * 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.jbpm.workflow.core; import java.util.List; import java.util.Map; import java.util.Set; import org.jbpm.process.core.Process; /** * Represents a RuleFlow process. * */ public interface WorkflowProcess extends org.kie.api.definition.process.WorkflowProcess, Process, NodeContainer { public static final int PROCESS_TYPE = 1; public static final int CASE_TYPE = 2; /** * Returns the imports of this RuleFlow process. * They are defined as a List of fully qualified class names. * * @return the imports of this RuleFlow process */ Set<String> getImports(); /** * Returns the function imports of this RuleFlow process. * They are defined as a List of fully qualified class names. * * @return the function imports of this RuleFlow process */ List<String> getFunctionImports(); /** * Sets the imports of this RuleFlow process * * @param imports the imports as a List of fully qualified class names */ void setImports(Set<String> imports); /** * Sets the imports of this RuleFlow process * * @param functionImports the imports as a List of fully qualified class names */ void setFunctionImports(List<String> functionImports); /** * Returns the globals of this RuleFlow process. * They are defined as a Map with the name as key and the type as value. * * @return the imports of this RuleFlow process */ Map<String, String> getGlobals(); /** * Sets the imports of this RuleFlow process * * @param globals the globals as a Map with the name as key and the type as value */ void setGlobals(Map<String, String> globals); /** * Returns the names of the globals used in this RuleFlow process * * @return the names of the globals of this RuleFlow process */ String[] getGlobalNames(); /** * Returns whether this process will automatically complete if it * contains no active node instances anymore * * @return the names of the globals of this RuleFlow process */ boolean isAutoComplete(); boolean isDynamic(); Integer getProcessType(); }