package flow; /** * This servlet is used to forward the request to the entry point of a * project callflow (subflow). * Last generated by Orchestration Designer at: 2021年11月22日 下午05时44分20秒 */ public class ERRORC2 extends com.avaya.sce.runtime.Subflow { //{{START:CLASS:FIELDS //}}END:CLASS:FIELDS /** * Default constructor * Last generated by Orchestration Designer at: 2021年11月22日 下午05时44分20秒 */ public ERRORC2() { //{{START:CLASS:CONSTRUCTOR super(); //}}END:CLASS:CONSTRUCTOR } /** * Returns the name of the subflow that is being invoked. This name is used for * determining the URL mapping for the the entry point of the subflow.. * * @return the name of the subflow * Last generated by Orchestration Designer at: 2022年3月3日 下午08时34分41秒 */ protected String getSubflowName() { return("ERRORHandle"); } /** * Returns the name of the mapping of sub flow exit points to the URL mappings * of the servlets to return back to in the calling flow. * * @return map of sub flow exit points to servlets in the calling flow. * Last generated by Orchestration Designer at: 2022年3月3日 下午08时34分41秒 */ protected java.util.Map getExitPoints() { java.util.Map exitPoints; exitPoints = new java.util.HashMap(); exitPoints.put("ERRORHandle-AgainInputS", "GetNumber6"); exitPoints.put("ERRORHandle-ENDS", "Show_callInfo"); return exitPoints; } }