/** * Copyright 2010 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.drools.workflow.core; import org.drools.definition.process.Node; import org.drools.process.core.Context; /** * * @author <a href="mailto:kris_verlaenen@hotmail.com">Kris Verlaenen</a> */ public interface NodeContainer extends org.drools.definition.process.NodeContainer { /** * Method for adding a node to this node container. * Note that the node will get an id unique for this node container. * * @param node the node to be added * @throws IllegalArgumentException if <code>node</code> is null */ void addNode(Node node); /** * Method for removing a node from this node container * * @param node the node to be removed * @throws IllegalArgumentException if <code>node</code> is null or unknown */ void removeNode(Node node); Context resolveContext(String contextId, Object param); Node internalGetNode(long id); }