ERRORC2.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package flow;
  2. /**
  3. * This servlet is used to forward the request to the entry point of a
  4. * project callflow (subflow).
  5. * Last generated by Orchestration Designer at: 2021年11月22日 下午05时44分20秒
  6. */
  7. public class ERRORC2 extends com.avaya.sce.runtime.Subflow {
  8. //{{START:CLASS:FIELDS
  9. //}}END:CLASS:FIELDS
  10. /**
  11. * Default constructor
  12. * Last generated by Orchestration Designer at: 2021年11月22日 下午05时44分20秒
  13. */
  14. public ERRORC2() {
  15. //{{START:CLASS:CONSTRUCTOR
  16. super();
  17. //}}END:CLASS:CONSTRUCTOR
  18. }
  19. /**
  20. * Returns the name of the subflow that is being invoked. This name is used for
  21. * determining the URL mapping for the the entry point of the subflow..
  22. *
  23. * @return the name of the subflow
  24. * Last generated by Orchestration Designer at: 2022年3月3日 下午08时34分41秒
  25. */
  26. protected String getSubflowName() {
  27. return("ERRORHandle");
  28. }
  29. /**
  30. * Returns the name of the mapping of sub flow exit points to the URL mappings
  31. * of the servlets to return back to in the calling flow.
  32. *
  33. * @return map of sub flow exit points to servlets in the calling flow.
  34. * Last generated by Orchestration Designer at: 2022年3月3日 下午08时34分41秒
  35. */
  36. protected java.util.Map<String,String> getExitPoints() {
  37. java.util.Map<String, String> exitPoints;
  38. exitPoints = new java.util.HashMap<String, String>();
  39. exitPoints.put("ERRORHandle-AgainInputS", "GetNumber6");
  40. exitPoints.put("ERRORHandle-ENDS", "Show_callInfo");
  41. return exitPoints;
  42. }
  43. }