org.kie.kogito.internal.process.runtime.KogitoProcessContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kogito-api Show documentation
Show all versions of kogito-api Show documentation
The Kogito public API which is backwards compatible between releases.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.kie.kogito.internal.process.runtime;
import java.util.List;
import java.util.Map;
import org.kie.api.runtime.KieRuntime;
public interface KogitoProcessContext {
/**
* Returns the process instance that is currently being
* executed in this context.
*
* @return the process instance that is currently being
* executed in this context
*/
KogitoProcessInstance getProcessInstance();
/**
* Returns the node instance that is currently being
* executed in this context, or null
if no
* node instance is currently being executed.
*
* @return the node instance that is currently being
* executed in this context
*/
KogitoNodeInstance getNodeInstance();
default Map> getHeaders() {
return getProcessInstance().getHeaders();
}
/**
* Returns the value of the variable with the given name.
* Based on the current node instance, it will try to resolve
* the given variable, taking nested variable scopes into
* account. Returns null
if the variable could
* not be found.
*
* @param variableName the name of the variable
* @return the value of the variable
*/
Object getVariable(String variableName);
/**
* Sets the value of the variable with the given name.
* Based on the current node instance, it will try to resolve
* the given variable, taking nested variable scopes into
* account.
*
* If the variable cannot be resolved, it will set the value as
* a process-level variable. It is however recommended to only
* use this with caution, as it is always recommended to define
* the variables that are used inside a process.
*
* @param variableName the name of the variable
* @param value the value of the variable
*/
void setVariable(String variableName, Object value);
@Deprecated
KieRuntime getKieRuntime();
KogitoProcessRuntime getKogitoProcessRuntime();
Map getContextData();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy