com.bstek.urule.model.flow.Connection Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2017 Bstek
*
* 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 com.bstek.urule.model.flow;
import java.util.List;
import org.codehaus.jackson.annotate.JsonIgnore;
import com.bstek.urule.model.flow.ins.FlowContext;
import com.bstek.urule.model.flow.ins.FlowInstance;
import com.bstek.urule.model.rule.Library;
import com.bstek.urule.model.rule.LibraryType;
import com.bstek.urule.runtime.KnowledgePackageWrapper;
import com.bstek.urule.runtime.KnowledgeSession;
import com.bstek.urule.runtime.KnowledgeSessionFactory;
/**
* @author Jacky.gao
* @since 2015年2月28日
*/
public class Connection {
public static final String RETURN_VALUE_KEY="return_value__";
private String name;
private String toName;
private String script;
private String g;
private KnowledgePackageWrapper knowledgePackageWrapper;
@JsonIgnore
private FlowNode to;
public boolean evaluate(FlowContext context){
if(knowledgePackageWrapper==null){
return true;
}
KnowledgeSession parentSession=(KnowledgeSession)context.getWorkingMemory();
List