001 /**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.rice.kew.engine;
017
018 import org.kuali.rice.kew.engine.node.Branch;
019 import org.kuali.rice.kew.engine.node.RouteNode;
020 import org.kuali.rice.kew.engine.node.RouteNodeInstance;
021 import org.kuali.rice.kew.service.KEWServiceLocator;
022
023
024 /**
025 * Provides factory methods for creating {@link Branch} objects and {@link RouteNodeInstance} object.
026 *
027 * @author Kuali Rice Team (rice.collab@kuali.org)
028 */
029 public class RoutingNodeFactory {
030
031 public Branch createBranch(String name, Branch parentBranch, RouteNodeInstance initialNodeInstance) {
032 Branch branch = new Branch();
033 branch.setName(name);
034 branch.setParentBranch(parentBranch);
035 branch.setInitialNode(initialNodeInstance);
036 initialNodeInstance.setBranch(branch);
037 return branch;
038 }
039
040 public RouteNodeInstance createRouteNodeInstance(String documentId, RouteNode node) {
041 RouteNodeInstance nodeInstance = new RouteNodeInstance();
042 nodeInstance.setActive(false);
043 nodeInstance.setComplete(false);
044 nodeInstance.setRouteNode(node);
045 nodeInstance.setDocumentId(documentId);
046 return nodeInstance;
047 }
048
049 public RouteNode getRouteNode(RouteContext context, String name) {
050 return KEWServiceLocator.getRouteNodeService().findRouteNodeByName(context.getDocument().getDocumentType().getDocumentTypeId(), name);
051 }
052
053 }