/jbpm-flow/src/main/java/org/jbpm/process/instance/impl/RuleConstraintEvaluator.java
https://github.com/mariofusco/jbpm · Java · 119 lines · 74 code · 24 blank · 21 comment · 0 complexity · 8bd9e1c43ddc870dcfa4fe180b5435f7 MD5 · raw file
- /**
- * Copyright 2005 JBoss Inc
- *
- * 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.process.instance.impl;
- import java.io.Serializable;
- import org.drools.core.common.InternalAgenda;
- import org.jbpm.process.instance.ProcessInstance;
- import org.jbpm.workflow.core.Constraint;
- import org.jbpm.workflow.core.Node;
- import org.jbpm.workflow.instance.NodeInstance;
- import org.kie.api.definition.process.Connection;
- import org.kie.api.runtime.process.WorkflowProcessInstance;
- /**
- * Default implementation of a constraint.
- *
- * @author <a href="mailto:kris_verlaenen@hotmail.com">Kris Verlaenen</a>
- */
- public class RuleConstraintEvaluator implements Constraint,
- ConstraintEvaluator, Serializable {
- private static final long serialVersionUID = 510l;
- private String name;
- private String constraint;
- private int priority;
- private String dialect;
- private String type;
- private boolean isDefault;
-
- public String getConstraint() {
- return this.constraint;
- }
- public void setConstraint(final String constraint) {
- this.constraint = constraint;
- }
- public String getName() {
- return this.name;
- }
- public void setName(final String name) {
- this.name = name;
- }
- public String toString() {
- return this.name;
- }
- public int getPriority() {
- return this.priority;
- }
- public void setPriority(final int priority) {
- this.priority = priority;
- }
- public String getDialect() {
- return dialect;
- }
- public void setDialect(String dialect) {
- this.dialect = dialect;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
-
- public boolean isDefault() {
- return isDefault;
- }
- public void setDefault(boolean isDefault) {
- this.isDefault = isDefault;
- }
- public boolean evaluate(NodeInstance instance,
- Connection connection,
- Constraint constraint) {
- WorkflowProcessInstance processInstance = instance.getProcessInstance();
- InternalAgenda agenda = (InternalAgenda) ((ProcessInstance) processInstance).getKnowledgeRuntime().getAgenda();
- String rule = "RuleFlow-Split-" + processInstance.getProcessId() + "-" +
- ((Node) instance.getNode()).getUniqueId() + "-" +
- ((Node) connection.getTo()).getUniqueId() + "-" + connection.getToType();
- boolean isActive = agenda.isRuleActiveInRuleFlowGroup( "DROOLS_SYSTEM", rule, processInstance.getId() );
- return isActive;
- }
- public Object getMetaData(String name) {
- return null;
- }
- public void setMetaData(String name, Object value) {
- // Do nothing
- }
- }