Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 16 17 package org.directwebremoting.spring; 18 19 import java.util.ArrayList ; 20 import java.util.HashMap ; 21 import java.util.List ; 22 import java.util.Map ; 23 24 34 abstract class AbstractConfig 35 { 36 37 42 public List getIncludes() 43 { 44 return includes; 45 } 46 47 52 public void setIncludes(List includes) 53 { 54 this.includes = includes; 55 } 56 57 62 public List getExcludes() 63 { 64 return excludes; 65 } 66 67 72 public void setExcludes(List excludes) 73 { 74 this.excludes = excludes; 75 } 76 77 82 public void addInclude(String method) 83 { 84 includes.add(method); 85 } 86 87 92 public void addExclude(String method) 93 { 94 excludes.add(method); 95 } 96 97 103 public Map getParams() 104 { 105 return params; 106 } 107 108 114 public void setParams(Map params) 115 { 116 this.params = params; 117 } 118 119 122 private List includes = new ArrayList (); 123 124 127 private List excludes = new ArrayList (); 128 129 132 private Map params = new HashMap (); 133 } 134
| Popular Tags
|