1 16 package org.springframework.webflow.execution; 17 18 import java.io.ObjectStreamException ; 19 import java.io.Serializable ; 20 21 37 public abstract class ViewSelection implements Serializable { 38 39 43 public static final ViewSelection NULL_VIEW = new NullView(); 44 45 49 private static final class NullView extends ViewSelection { 50 51 private Object readResolve() throws ObjectStreamException { 53 return NULL_VIEW; 54 } 55 56 public String toString() { 57 return "null"; 58 } 59 } 60 } | Popular Tags |