fcac773d82ecbd0c8b140c600f7a77efcb5712a4
[iec.git] / src / foundation / api / apiserver / app / routes / routes.go
1 // GENERATED CODE - DO NOT EDIT
2 // This file provides a way of creating URL's based on all the actions
3 // found in all the controllers.
4 package routes
5
6 import "github.com/revel/revel"
7
8
9 type tApp struct {}
10 var App tApp
11
12
13 func (_ tApp) Index(
14                 ) string {
15         args := make(map[string]string)
16         
17         return revel.MainRouter.Reverse("App.Index", args).URL
18 }
19
20 func (_ tApp) GetStatus(
21                 ) string {
22         args := make(map[string]string)
23         
24         return revel.MainRouter.Reverse("App.GetStatus", args).URL
25 }
26
27
28 type tStatic struct {}
29 var Static tStatic
30
31
32 func (_ tStatic) Serve(
33                 prefix string,
34                 filepath string,
35                 ) string {
36         args := make(map[string]string)
37         
38         revel.Unbind(args, "prefix", prefix)
39         revel.Unbind(args, "filepath", filepath)
40         return revel.MainRouter.Reverse("Static.Serve", args).URL
41 }
42
43 func (_ tStatic) ServeDir(
44                 prefix string,
45                 filepath string,
46                 ) string {
47         args := make(map[string]string)
48         
49         revel.Unbind(args, "prefix", prefix)
50         revel.Unbind(args, "filepath", filepath)
51         return revel.MainRouter.Reverse("Static.ServeDir", args).URL
52 }
53
54 func (_ tStatic) ServeModule(
55                 moduleName string,
56                 prefix string,
57                 filepath string,
58                 ) string {
59         args := make(map[string]string)
60         
61         revel.Unbind(args, "moduleName", moduleName)
62         revel.Unbind(args, "prefix", prefix)
63         revel.Unbind(args, "filepath", filepath)
64         return revel.MainRouter.Reverse("Static.ServeModule", args).URL
65 }
66
67 func (_ tStatic) ServeModuleDir(
68                 moduleName string,
69                 prefix string,
70                 filepath string,
71                 ) string {
72         args := make(map[string]string)
73         
74         revel.Unbind(args, "moduleName", moduleName)
75         revel.Unbind(args, "prefix", prefix)
76         revel.Unbind(args, "filepath", filepath)
77         return revel.MainRouter.Reverse("Static.ServeModuleDir", args).URL
78 }
79
80
81 type tTestRunner struct {}
82 var TestRunner tTestRunner
83
84
85 func (_ tTestRunner) Index(
86                 ) string {
87         args := make(map[string]string)
88         
89         return revel.MainRouter.Reverse("TestRunner.Index", args).URL
90 }
91
92 func (_ tTestRunner) Suite(
93                 suite string,
94                 ) string {
95         args := make(map[string]string)
96         
97         revel.Unbind(args, "suite", suite)
98         return revel.MainRouter.Reverse("TestRunner.Suite", args).URL
99 }
100
101 func (_ tTestRunner) Run(
102                 suite string,
103                 test string,
104                 ) string {
105         args := make(map[string]string)
106         
107         revel.Unbind(args, "suite", suite)
108         revel.Unbind(args, "test", test)
109         return revel.MainRouter.Reverse("TestRunner.Run", args).URL
110 }
111
112 func (_ tTestRunner) List(
113                 ) string {
114         args := make(map[string]string)
115         
116         return revel.MainRouter.Reverse("TestRunner.List", args).URL
117 }
118
119