File: testApplication.wadl

package info (click to toggle)
libnb-platform18-java 12.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 729,800 kB
  • sloc: java: 5,059,097; xml: 574,432; php: 78,788; javascript: 29,039; ansic: 10,278; sh: 6,386; cpp: 4,612; jsp: 3,643; sql: 1,097; makefile: 540; objc: 288; perl: 277; haskell: 93
file content (149 lines) | stat: -rw-r--r-- 6,228 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?xml version="1.0" encoding="UTF-8"?>
<application>
    <resources base="http://localhost:8080/WebApplication1/resources/">
        <resource path="/manufacturers/">
            <method name="GET">
                <request>
                    <param default="0" type="xs:int" style="query" name="start"/>
                    <param default="10" type="xs:int" style="query" name="max"/>
                </request>
                <response>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </response>
            </method>
            <method name="POST">
                <request>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </request>
                <response>
                    <representation mediaType="*/*"/>
                </response>
            </method>
            <resource path="{manufacturerId}/">
                <param type="xs:int" style="template" name="manufacturerId"/>
            </resource>
        </resource>
        <resource path="/customers/">
            <method name="GET">
                <request>
                    <param default="0" type="xs:int" style="query" name="start"/>
                    <param default="10" type="xs:int" style="query" name="max"/>
                </request>
                <response>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </response>
            </method>
            <method name="POST">
                <request>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </request>
                <response>
                    <representation mediaType="*/*"/>
                </response>
            </method>
            <resource path="{customerId}/">
                <param type="xs:int" style="template" name="customerId"/>
            </resource>
        </resource>
        <resource path="/products/">
            <method name="GET">
                <request>
                    <param default="0" type="xs:int" style="query" name="start"/>
                    <param default="10" type="xs:int" style="query" name="max"/>
                </request>
                <response>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </response>
            </method>
            <method name="POST">
                <request>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </request>
                <response>
                    <representation mediaType="*/*"/>
                </response>
            </method>
            <resource path="{productId}/">
                <param type="xs:int" style="template" name="productId"/>
            </resource>
        </resource>
        <resource path="/discountCodes/">
            <method name="GET">
                <request>
                    <param default="0" type="xs:int" style="query" name="start"/>
                    <param default="10" type="xs:int" style="query" name="max"/>
                </request>
                <response>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </response>
            </method>
            <method name="POST">
                <request>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </request>
                <response>
                    <representation mediaType="*/*"/>
                </response>
            </method>
            <resource path="{discountCode}/">
                <param type="xs:string" style="template" name="discountCode"/>
            </resource>
        </resource>
        <resource path="/productCodes/">
            <method name="GET">
                <request>
                    <param default="0" type="xs:int" style="query" name="start"/>
                    <param default="10" type="xs:int" style="query" name="max"/>
                </request>
                <response>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </response>
            </method>
            <method name="POST">
                <request>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </request>
                <response>
                    <representation mediaType="*/*"/>
                </response>
            </method>
            <resource path="{prodCode}/">
                <param type="xs:string" style="template" name="prodCode"/>
            </resource>
        </resource>
        <resource path="/purchaseOrders/">
            <method name="GET">
                <request>
                    <param default="0" type="xs:int" style="query" name="start"/>
                    <param default="10" type="xs:int" style="query" name="max"/>
                </request>
                <response>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </response>
            </method>
            <method name="POST">
                <request>
                    <representation mediaType="application/xml"/>
                    <representation mediaType="application/json"/>
                </request>
                <response>
                    <representation mediaType="*/*"/>
                </response>
            </method>
            <resource path="{orderNum}/">
                <param type="xs:int" style="template" name="orderNum"/>
            </resource>
        </resource>
    </resources>
</application>