1 4 package com.inversoft.verge.mvc.controller.actionflow.config; 5 6 7 import com.inversoft.verge.mvc.controller.actionflow.NodeExecutor; 8 9 10 30 public interface Node { 31 32 37 String getName(); 38 39 44 String getType(); 45 46 51 Namespace getNamespace(); 52 53 69 String getClassName(); 70 71 86 String getRepositoryId(); 87 88 95 boolean isDefaultEntry(); 96 97 116 boolean acceptEntry(String name); 117 118 128 boolean isExitPoint(); 129 130 135 Link [] getLinks(); 136 137 150 Link findLink(Object action); 151 152 161 163 169 NodeExecutor getExecutor(); 170 171 176 178 185 boolean isLongTxnEnabled(); 186 187 194 String getLongTxnStartURL(); 195 196 203 String getLongTxnEndURL(); 204 205 212 String getLongTxnCategory(); 213 } | Popular Tags |