1 58 package org.apache.ecs.vxml; 59 60 61 66 public class Property extends VXMLElement 67 { 68 69 73 public Property() 74 { 75 super("property"); 76 } 77 78 79 83 public Property setConfidencelevel(String confidencelevel) 84 { 85 addAttribute("name", "confidencelevel"); 86 addAttribute("value", confidencelevel); 87 return this; 88 } 89 90 91 95 public Property setSensitivity(String sensitivity) 96 { 97 addAttribute("name", "sensitivity"); 98 addAttribute("value", sensitivity); 99 return this; 100 } 101 102 106 public Property setSpeedvsaccuracy(String speedvsaccuracy) 107 { 108 addAttribute("name", "speedvsaccuracy"); 109 addAttribute("value", speedvsaccuracy); 110 return this; 111 } 112 113 117 public Property setCompletetimeout(String completetimeout) 118 { 119 addAttribute("name", "completetimeout"); 120 addAttribute("value", completetimeout); 121 return this; 122 } 123 124 128 public Property setIncompletetimeout(String incompletetimeout) 129 { 130 addAttribute("name", "incompletetimeout"); 131 addAttribute("value", incompletetimeout); 132 return this; 133 } 134 135 139 public Property setInterdigittimeout(String interdigittimeout) 140 { 141 addAttribute("name", "interdigittimeout"); 142 addAttribute("value", interdigittimeout); 143 return this; 144 } 145 146 150 public Property setTermtimeout(String termtimeout) 151 { 152 addAttribute("name", "termtimeout"); 153 addAttribute("value", termtimeout); 154 return this; 155 } 156 157 161 public Property setTermchar(String termchar) 162 { 163 addAttribute("name", "termchar"); 164 addAttribute("value", termchar); 165 return this; 166 } 167 168 172 public Property setBargein(String bargein) 173 { 174 addAttribute("name", "bargein"); 175 addAttribute("value", bargein); 176 return this; 177 } 178 179 183 public Property setTimeout(String timeout) 184 { 185 addAttribute("name", "timeout"); 186 addAttribute("value", timeout); 187 return this; 188 } 189 190 194 public Property setCaching(String caching) 195 { 196 addAttribute("name", "caching"); 197 addAttribute("value", caching); 198 return this; 199 } 200 201 205 public Property setAudiofetchhint(String audiofetchhint) 206 { 207 addAttribute("name", "audiofetchhint"); 208 addAttribute("value", audiofetchhint); 209 return this; 210 } 211 212 216 public Property setDocumentfetchhint(String documentfetchhint) 217 { 218 addAttribute("name", "documentfetchhint"); 219 addAttribute("value", documentfetchhint); 220 return this; 221 } 222 223 227 public Property setGrammarfetchint(String grammarfetchint) 228 { 229 addAttribute("name", "grammarfetchint"); 230 addAttribute("value", grammarfetchint); 231 return this; 232 } 233 234 238 public Property setObjectfetchint(String objectfetchint) 239 { 240 addAttribute("name", "objectfetchint"); 241 addAttribute("value", objectfetchint); 242 return this; 243 } 244 245 249 public Property setScriptfetchhint(String scriptfetchhint) 250 { 251 addAttribute("name", "scriptfetchhint"); 252 addAttribute("value", scriptfetchhint); 253 return this; 254 } 255 256 260 public Property setFetchaudio(String fetchaudio) 261 { 262 addAttribute("name", "fetchaudio"); 263 addAttribute("value", fetchaudio); 264 return this; 265 } 266 267 271 public Property setFetchtimeout(String fetchtimeout) 272 { 273 addAttribute("name", "fetchtimeout"); 274 addAttribute("value", fetchtimeout); 275 return this; 276 } 277 278 282 public Property setInputmodes(String inputmodes) 283 { 284 addAttribute("name", "inputmodes"); 285 addAttribute("value", inputmodes); 286 return this; 287 } 288 289 290 } 291 | Popular Tags |