1 18 package org.apache.beehive.netui.pageflow; 19 20 21 26 public abstract class IllegalOutputFormException extends PageFlowException 27 { 28 private String _forwardName; 29 private String _outputFormType; 30 31 32 38 public IllegalOutputFormException( String forwardName, String actionName, FlowController flowController, 39 String outputFormType ) 40 { 41 super( actionName, flowController ); 42 _forwardName = forwardName; 43 _outputFormType = outputFormType; 44 } 45 46 51 public String getForwardName() 52 { 53 return _forwardName; 54 } 55 56 61 public void setForwardName( String forwardName ) 62 { 63 _forwardName = forwardName; 64 } 65 66 71 public String getOutputFormType() 72 { 73 return _outputFormType; 74 } 75 76 81 public void setOutputFormType( String outputFormType ) 82 { 83 _outputFormType = outputFormType; 84 } 85 86 90 public boolean causeMayBeSessionExpiration() 91 { 92 return false; 93 } 94 } 95 | Popular Tags |