1 16 package org.apache.myfaces.config.impl.digester.elements; 17 18 19 20 21 24 public class NavigationCase implements org.apache.myfaces.config.element.NavigationCase 25 { 26 27 private String fromAction; 28 private String fromOutcome; 29 private String toViewId; 30 private boolean redirect; 31 32 33 public String getFromAction() 34 { 35 return fromAction; 36 } 37 38 39 public void setFromAction(String fromAction) 40 { 41 this.fromAction = fromAction; 42 } 43 44 45 public String getFromOutcome() 46 { 47 return fromOutcome; 48 } 49 50 51 public void setFromOutcome(String fromOutcome) 52 { 53 this.fromOutcome = fromOutcome; 54 } 55 56 57 public String getToViewId() 58 { 59 return toViewId; 60 } 61 62 63 public void setToViewId(String toViewId) 64 { 65 this.toViewId = toViewId; 66 } 67 68 69 public void setRedirect() 70 { 71 this.redirect = true; 72 } 73 74 75 public boolean isRedirect() 76 { 77 return redirect; 78 } 79 } 80 | Popular Tags |