Mercurial > hg > Members > nobuyasu > Consensus
annotate target/scala-2.9.1/src_managed/main/routes_reverseRouting.scala @ 40:1d5c086e069b
create getAllUsers() action.
author | one |
---|---|
date | Thu, 04 Oct 2012 01:59:21 +0900 |
parents | bc3ac73320f9 |
children | 4321d97da830 |
rev | line source |
---|---|
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
1 // @SOURCE:/Users/aotokage/workspace/Consensus/conf/routes |
40 | 2 // @HASH:0d161c51591c2cc11bf38fb7f107b713d79cc370 |
3 // @DATE:Thu Oct 04 01:56:05 JST 2012 | |
0 | 4 |
5 import play.core._ | |
6 import play.core.Router._ | |
7 import play.core.j._ | |
8 | |
9 import play.api.mvc._ | |
10 import play.libs.F | |
11 | |
12 import Router.queryString | |
13 | |
14 | |
40 | 15 // @LINE:30 |
16 // @LINE:26 | |
17 // @LINE:25 | |
18 // @LINE:21 | |
19 // @LINE:20 | |
37 | 20 // @LINE:19 |
30 | 21 // @LINE:16 |
40 | 22 // @LINE:15 |
26 | 23 // @LINE:14 |
17 | 24 // @LINE:13 |
40 | 25 // @LINE:12 |
11 | 26 // @LINE:11 |
27 // @LINE:10 | |
9 | 28 // @LINE:9 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
29 // @LINE:8 |
0 | 30 // @LINE:7 |
31 // @LINE:6 | |
32 package controllers { | |
33 | |
40 | 34 // @LINE:21 |
35 // @LINE:20 | |
37 | 36 // @LINE:19 |
30 | 37 // @LINE:16 |
40 | 38 // @LINE:15 |
26 | 39 // @LINE:14 |
17 | 40 // @LINE:13 |
41 class ReverseClaim { | |
42 | |
43 | |
44 | |
45 | |
40 | 46 // @LINE:19 |
17 | 47 def crateClaim() = { |
48 Call("POST", "/claims/create") | |
49 } | |
50 | |
26 | 51 |
40 | 52 // @LINE:21 |
37 | 53 def editClaim(id:String) = { |
54 Call("POST", "/claims/edit/" + implicitly[PathBindable[String]].unbind("id", id)) | |
30 | 55 } |
56 | |
57 | |
40 | 58 // @LINE:20 |
26 | 59 def createMention(mentionType:String, id:String) = { |
60 Call("POST", "/claims/" + implicitly[PathBindable[String]].unbind("mentionType", mentionType) + "/" + implicitly[PathBindable[String]].unbind("id", id) + "/create") | |
61 } | |
62 | |
30 | 63 |
40 | 64 // @LINE:16 |
65 def getUserConsensusStatus(id:String, name:String) = { | |
66 Call("GET", "/claims/answer/" + implicitly[PathBindable[String]].unbind("id", id) + "/" + implicitly[PathBindable[String]].unbind("name", name)) | |
67 } | |
68 | |
69 | |
30 | 70 // @LINE:13 |
71 def getClaimInfo(id:String) = { | |
72 Call("GET", "/claims/browse/" + implicitly[PathBindable[String]].unbind("id", id)) | |
73 } | |
74 | |
37 | 75 |
40 | 76 // @LINE:15 |
37 | 77 // @LINE:14 |
78 def getClaimTree(id:String) = { | |
79 (id) match { | |
80 // @LINE:14 | |
81 case (id) if true => Call("GET", "/claims/consensus/" + implicitly[PathBindable[String]].unbind("id", id)) | |
82 | |
40 | 83 // @LINE:15 |
37 | 84 case (id) if true => Call("GET", "/consensus/browse/" + implicitly[PathBindable[String]].unbind("id", id)) |
85 | |
86 } | |
87 } | |
88 | |
17 | 89 |
90 | |
91 | |
92 } | |
93 | |
94 | |
40 | 95 // @LINE:26 |
96 // @LINE:25 | |
0 | 97 // @LINE:6 |
98 class ReverseApplication { | |
99 | |
100 | |
101 | |
102 | |
40 | 103 // @LINE:26 |
9 | 104 def test() = { |
105 Call("GET", "/test") | |
106 } | |
107 | |
108 | |
0 | 109 // @LINE:6 |
110 def index() = { | |
111 Call("GET", "/") | |
112 } | |
113 | |
114 | |
40 | 115 // @LINE:25 |
0 | 116 def hello() = { |
9 | 117 Call("POST", "/hello") |
0 | 118 } |
119 | |
120 | |
121 | |
122 | |
123 } | |
124 | |
125 | |
40 | 126 // @LINE:30 |
0 | 127 class ReverseAssets { |
128 | |
129 | |
130 | |
131 | |
40 | 132 // @LINE:30 |
0 | 133 def at(file:String) = { |
134 Call("GET", "/assets/" + implicitly[PathBindable[String]].unbind("file", file)) | |
135 } | |
136 | |
137 | |
138 | |
139 | |
140 } | |
141 | |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
142 |
40 | 143 // @LINE:12 |
11 | 144 // @LINE:11 |
145 // @LINE:10 | |
9 | 146 // @LINE:9 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
147 // @LINE:8 |
9 | 148 // @LINE:7 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
149 class ReverseUser { |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
150 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
151 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
152 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
153 |
40 | 154 // @LINE:8 |
14 | 155 def createUser(name:String) = { |
156 Call("PUT", "/users/create/" + implicitly[PathBindable[String]].unbind("name", name)) | |
157 } | |
158 | |
159 | |
40 | 160 // @LINE:10 |
9 | 161 def getUserRequests(name:String) = { |
162 Call("GET", "/users/requests/" + implicitly[PathBindable[String]].unbind("name", name)) | |
163 } | |
164 | |
165 | |
40 | 166 // @LINE:9 |
9 | 167 def getUser(name:String) = { |
168 Call("GET", "/users/browse/" + implicitly[PathBindable[String]].unbind("name", name)) | |
169 } | |
170 | |
171 | |
40 | 172 // @LINE:7 |
173 def getAllUsers() = { | |
174 Call("GET", "/users/all") | |
175 } | |
176 | |
177 | |
178 // @LINE:11 | |
11 | 179 def getUserConsensus(name:String) = { |
180 Call("GET", "/users/consensus/" + implicitly[PathBindable[String]].unbind("name", name)) | |
181 } | |
182 | |
183 | |
40 | 184 // @LINE:12 |
11 | 185 def getUserClaims(name:String) = { |
186 Call("GET", "/users/claims/" + implicitly[PathBindable[String]].unbind("name", name)) | |
187 } | |
188 | |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
189 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
190 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
191 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
192 } |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
193 |
0 | 194 } |
195 | |
196 | |
197 | |
40 | 198 // @LINE:30 |
199 // @LINE:26 | |
200 // @LINE:25 | |
201 // @LINE:21 | |
202 // @LINE:20 | |
37 | 203 // @LINE:19 |
30 | 204 // @LINE:16 |
40 | 205 // @LINE:15 |
26 | 206 // @LINE:14 |
17 | 207 // @LINE:13 |
40 | 208 // @LINE:12 |
11 | 209 // @LINE:11 |
210 // @LINE:10 | |
9 | 211 // @LINE:9 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
212 // @LINE:8 |
0 | 213 // @LINE:7 |
214 // @LINE:6 | |
215 package controllers.javascript { | |
216 | |
40 | 217 // @LINE:21 |
218 // @LINE:20 | |
37 | 219 // @LINE:19 |
30 | 220 // @LINE:16 |
40 | 221 // @LINE:15 |
26 | 222 // @LINE:14 |
17 | 223 // @LINE:13 |
224 class ReverseClaim { | |
225 | |
226 | |
227 | |
228 | |
40 | 229 // @LINE:19 |
17 | 230 def crateClaim = JavascriptReverseRoute( |
231 "controllers.Claim.crateClaim", | |
232 """ | |
233 function() { | |
234 return _wA({method:"POST", url:"/claims/create"}) | |
235 } | |
236 """ | |
237 ) | |
238 | |
26 | 239 |
40 | 240 // @LINE:21 |
37 | 241 def editClaim = JavascriptReverseRoute( |
242 "controllers.Claim.editClaim", | |
30 | 243 """ |
244 function(id) { | |
37 | 245 return _wA({method:"POST", url:"/claims/edit/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("id", id)}) |
32 | 246 } |
30 | 247 """ |
248 ) | |
249 | |
250 | |
40 | 251 // @LINE:20 |
26 | 252 def createMention = JavascriptReverseRoute( |
253 "controllers.Claim.createMention", | |
254 """ | |
255 function(mentionType,id) { | |
256 return _wA({method:"POST", url:"/claims/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("mentionType", mentionType) + "/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("id", id) + "/create"}) | |
257 } | |
258 """ | |
259 ) | |
260 | |
30 | 261 |
40 | 262 // @LINE:16 |
263 def getUserConsensusStatus = JavascriptReverseRoute( | |
264 "controllers.Claim.getUserConsensusStatus", | |
265 """ | |
266 function(id,name) { | |
267 return _wA({method:"GET", url:"/claims/answer/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("id", id) + "/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("name", name)}) | |
268 } | |
269 """ | |
270 ) | |
271 | |
272 | |
30 | 273 // @LINE:13 |
274 def getClaimInfo = JavascriptReverseRoute( | |
275 "controllers.Claim.getClaimInfo", | |
276 """ | |
277 function(id) { | |
278 return _wA({method:"GET", url:"/claims/browse/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("id", id)}) | |
279 } | |
280 """ | |
281 ) | |
282 | |
37 | 283 |
40 | 284 // @LINE:15 |
37 | 285 // @LINE:14 |
286 def getClaimTree = JavascriptReverseRoute( | |
287 "controllers.Claim.getClaimTree", | |
288 """ | |
289 function(id) { | |
290 if (true) { | |
291 return _wA({method:"GET", url:"/claims/consensus/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("id", id)}) | |
292 } | |
293 if (true) { | |
294 return _wA({method:"GET", url:"/consensus/browse/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("id", id)}) | |
295 } | |
296 } | |
297 """ | |
298 ) | |
299 | |
17 | 300 |
301 | |
302 | |
303 } | |
304 | |
305 | |
40 | 306 // @LINE:26 |
307 // @LINE:25 | |
0 | 308 // @LINE:6 |
309 class ReverseApplication { | |
310 | |
311 | |
312 | |
313 | |
40 | 314 // @LINE:26 |
9 | 315 def test = JavascriptReverseRoute( |
316 "controllers.Application.test", | |
317 """ | |
318 function() { | |
319 return _wA({method:"GET", url:"/test"}) | |
320 } | |
321 """ | |
322 ) | |
323 | |
324 | |
0 | 325 // @LINE:6 |
326 def index = JavascriptReverseRoute( | |
327 "controllers.Application.index", | |
328 """ | |
329 function() { | |
330 return _wA({method:"GET", url:"/"}) | |
331 } | |
332 """ | |
333 ) | |
334 | |
335 | |
40 | 336 // @LINE:25 |
0 | 337 def hello = JavascriptReverseRoute( |
338 "controllers.Application.hello", | |
339 """ | |
340 function() { | |
9 | 341 return _wA({method:"POST", url:"/hello"}) |
0 | 342 } |
343 """ | |
344 ) | |
345 | |
346 | |
347 | |
348 | |
349 } | |
350 | |
351 | |
40 | 352 // @LINE:30 |
0 | 353 class ReverseAssets { |
354 | |
355 | |
356 | |
357 | |
40 | 358 // @LINE:30 |
0 | 359 def at = JavascriptReverseRoute( |
360 "controllers.Assets.at", | |
361 """ | |
362 function(file) { | |
363 return _wA({method:"GET", url:"/assets/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("file", file)}) | |
364 } | |
365 """ | |
366 ) | |
367 | |
368 | |
369 | |
370 | |
371 } | |
372 | |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
373 |
40 | 374 // @LINE:12 |
11 | 375 // @LINE:11 |
376 // @LINE:10 | |
9 | 377 // @LINE:9 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
378 // @LINE:8 |
9 | 379 // @LINE:7 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
380 class ReverseUser { |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
381 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
382 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
383 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
384 |
40 | 385 // @LINE:8 |
14 | 386 def createUser = JavascriptReverseRoute( |
387 "controllers.User.createUser", | |
388 """ | |
389 function(name) { | |
390 return _wA({method:"PUT", url:"/users/create/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("name", name)}) | |
391 } | |
392 """ | |
393 ) | |
394 | |
395 | |
40 | 396 // @LINE:10 |
9 | 397 def getUserRequests = JavascriptReverseRoute( |
398 "controllers.User.getUserRequests", | |
399 """ | |
400 function(name) { | |
401 return _wA({method:"GET", url:"/users/requests/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("name", name)}) | |
402 } | |
403 """ | |
404 ) | |
405 | |
406 | |
40 | 407 // @LINE:9 |
9 | 408 def getUser = JavascriptReverseRoute( |
409 "controllers.User.getUser", | |
410 """ | |
411 function(name) { | |
412 return _wA({method:"GET", url:"/users/browse/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("name", name)}) | |
413 } | |
414 """ | |
415 ) | |
416 | |
417 | |
40 | 418 // @LINE:7 |
419 def getAllUsers = JavascriptReverseRoute( | |
420 "controllers.User.getAllUsers", | |
421 """ | |
422 function() { | |
423 return _wA({method:"GET", url:"/users/all"}) | |
424 } | |
425 """ | |
426 ) | |
427 | |
428 | |
429 // @LINE:11 | |
11 | 430 def getUserConsensus = JavascriptReverseRoute( |
431 "controllers.User.getUserConsensus", | |
432 """ | |
433 function(name) { | |
434 return _wA({method:"GET", url:"/users/consensus/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("name", name)}) | |
435 } | |
436 """ | |
437 ) | |
438 | |
439 | |
40 | 440 // @LINE:12 |
11 | 441 def getUserClaims = JavascriptReverseRoute( |
442 "controllers.User.getUserClaims", | |
443 """ | |
444 function(name) { | |
445 return _wA({method:"GET", url:"/users/claims/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("name", name)}) | |
446 } | |
447 """ | |
448 ) | |
449 | |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
450 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
451 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
452 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
453 } |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
454 |
0 | 455 } |
456 | |
457 | |
458 | |
40 | 459 // @LINE:30 |
460 // @LINE:26 | |
461 // @LINE:25 | |
462 // @LINE:21 | |
463 // @LINE:20 | |
37 | 464 // @LINE:19 |
30 | 465 // @LINE:16 |
40 | 466 // @LINE:15 |
26 | 467 // @LINE:14 |
17 | 468 // @LINE:13 |
40 | 469 // @LINE:12 |
11 | 470 // @LINE:11 |
471 // @LINE:10 | |
9 | 472 // @LINE:9 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
473 // @LINE:8 |
0 | 474 // @LINE:7 |
475 // @LINE:6 | |
476 package controllers.ref { | |
477 | |
40 | 478 // @LINE:21 |
479 // @LINE:20 | |
37 | 480 // @LINE:19 |
30 | 481 // @LINE:16 |
40 | 482 // @LINE:15 |
26 | 483 // @LINE:14 |
17 | 484 // @LINE:13 |
485 class ReverseClaim { | |
486 | |
487 | |
488 | |
489 | |
40 | 490 // @LINE:19 |
17 | 491 def crateClaim() = new play.api.mvc.HandlerRef( |
492 controllers.Claim.crateClaim(), HandlerDef(this, "controllers.Claim", "crateClaim", Seq()) | |
493 ) | |
494 | |
26 | 495 |
40 | 496 // @LINE:21 |
37 | 497 def editClaim(id:String) = new play.api.mvc.HandlerRef( |
498 controllers.Claim.editClaim(id), HandlerDef(this, "controllers.Claim", "editClaim", Seq(classOf[String])) | |
30 | 499 ) |
500 | |
501 | |
40 | 502 // @LINE:20 |
26 | 503 def createMention(mentionType:String, id:String) = new play.api.mvc.HandlerRef( |
504 controllers.Claim.createMention(mentionType, id), HandlerDef(this, "controllers.Claim", "createMention", Seq(classOf[String], classOf[String])) | |
505 ) | |
506 | |
30 | 507 |
40 | 508 // @LINE:16 |
509 def getUserConsensusStatus(id:String, name:String) = new play.api.mvc.HandlerRef( | |
510 controllers.Claim.getUserConsensusStatus(id, name), HandlerDef(this, "controllers.Claim", "getUserConsensusStatus", Seq(classOf[String], classOf[String])) | |
511 ) | |
512 | |
513 | |
30 | 514 // @LINE:13 |
515 def getClaimInfo(id:String) = new play.api.mvc.HandlerRef( | |
516 controllers.Claim.getClaimInfo(id), HandlerDef(this, "controllers.Claim", "getClaimInfo", Seq(classOf[String])) | |
517 ) | |
518 | |
37 | 519 |
520 // @LINE:14 | |
521 def getClaimTree(id:String) = new play.api.mvc.HandlerRef( | |
522 controllers.Claim.getClaimTree(id), HandlerDef(this, "controllers.Claim", "getClaimTree", Seq(classOf[String])) | |
523 ) | |
524 | |
17 | 525 |
526 | |
527 | |
528 } | |
529 | |
530 | |
40 | 531 // @LINE:26 |
532 // @LINE:25 | |
0 | 533 // @LINE:6 |
534 class ReverseApplication { | |
535 | |
536 | |
537 | |
538 | |
40 | 539 // @LINE:26 |
9 | 540 def test() = new play.api.mvc.HandlerRef( |
541 controllers.Application.test(), HandlerDef(this, "controllers.Application", "test", Seq()) | |
542 ) | |
543 | |
544 | |
0 | 545 // @LINE:6 |
546 def index() = new play.api.mvc.HandlerRef( | |
547 controllers.Application.index(), HandlerDef(this, "controllers.Application", "index", Seq()) | |
548 ) | |
549 | |
550 | |
40 | 551 // @LINE:25 |
0 | 552 def hello() = new play.api.mvc.HandlerRef( |
553 controllers.Application.hello(), HandlerDef(this, "controllers.Application", "hello", Seq()) | |
554 ) | |
555 | |
556 | |
557 | |
558 | |
559 } | |
560 | |
561 | |
40 | 562 // @LINE:30 |
0 | 563 class ReverseAssets { |
564 | |
565 | |
566 | |
567 | |
40 | 568 // @LINE:30 |
0 | 569 def at(path:String, file:String) = new play.api.mvc.HandlerRef( |
570 controllers.Assets.at(path, file), HandlerDef(this, "controllers.Assets", "at", Seq(classOf[String], classOf[String])) | |
571 ) | |
572 | |
573 | |
574 | |
575 | |
576 } | |
577 | |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
578 |
40 | 579 // @LINE:12 |
11 | 580 // @LINE:11 |
581 // @LINE:10 | |
9 | 582 // @LINE:9 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
583 // @LINE:8 |
9 | 584 // @LINE:7 |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
585 class ReverseUser { |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
586 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
587 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
588 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
589 |
40 | 590 // @LINE:8 |
14 | 591 def createUser(name:String) = new play.api.mvc.HandlerRef( |
592 controllers.User.createUser(name), HandlerDef(this, "controllers.User", "createUser", Seq(classOf[String])) | |
593 ) | |
594 | |
595 | |
40 | 596 // @LINE:10 |
9 | 597 def getUserRequests(name:String) = new play.api.mvc.HandlerRef( |
598 controllers.User.getUserRequests(name), HandlerDef(this, "controllers.User", "getUserRequests", Seq(classOf[String])) | |
599 ) | |
600 | |
601 | |
40 | 602 // @LINE:9 |
9 | 603 def getUser(name:String) = new play.api.mvc.HandlerRef( |
604 controllers.User.getUser(name), HandlerDef(this, "controllers.User", "getUser", Seq(classOf[String])) | |
605 ) | |
606 | |
607 | |
40 | 608 // @LINE:7 |
609 def getAllUsers() = new play.api.mvc.HandlerRef( | |
610 controllers.User.getAllUsers(), HandlerDef(this, "controllers.User", "getAllUsers", Seq()) | |
611 ) | |
612 | |
613 | |
614 // @LINE:11 | |
11 | 615 def getUserConsensus(name:String) = new play.api.mvc.HandlerRef( |
616 controllers.User.getUserConsensus(name), HandlerDef(this, "controllers.User", "getUserConsensus", Seq(classOf[String])) | |
617 ) | |
618 | |
619 | |
40 | 620 // @LINE:12 |
11 | 621 def getUserClaims(name:String) = new play.api.mvc.HandlerRef( |
622 controllers.User.getUserClaims(name), HandlerDef(this, "controllers.User", "getUserClaims", Seq(classOf[String])) | |
623 ) | |
624 | |
6
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
625 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
626 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
627 |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
628 } |
d6afc58ce3f5
remove target/
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
629 |
0 | 630 } |
631 | |
632 |