1 16 package org.directwebremoting.annotations; 17 18 import org.directwebremoting.extend.Creator; 19 20 26 public enum ScriptScope 27 { 28 31 APPLICATION(Creator.APPLICATION), 32 33 36 SESSION(Creator.SESSION), 37 38 41 SCRIPT(Creator.SCRIPT), 42 43 46 REQUEST(Creator.REQUEST), 47 48 51 PAGE(Creator.PAGE); 52 53 57 private ScriptScope(String value) 58 { 59 this.value = value; 60 } 61 62 66 String getValue() 67 { 68 return value; 69 } 70 71 74 private String value; 75 } 76 | Popular Tags |