summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/WSDL/FootballClient/build/generated-sources/jax-ws/https/footballpool_dataaccess/InfoSoapType.java
blob: adc801feed393f53cd34688e7a5b859e095c8027 (plain)
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
package https.footballpool_dataaccess;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.datatype.XMLGregorianCalendar;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;


/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.2.6-1b01 
 * Generated source version: 2.2
 * 
 */
@WebService(name = "InfoSoapType", targetNamespace = "https://footballpool.dataaccess.eu")
@XmlSeeAlso({
    ObjectFactory.class
})
public interface InfoSoapType {


    /**
     * Returns an array with the information about the given yellow and red cards in all games. What date, minute, teams that were playing and player name
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftAllCardsInfo
     */
    @WebMethod(operationName = "AllCardsInfo")
    @WebResult(name = "AllCardsInfoResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "AllCardsInfo", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllCardsInfo")
    @ResponseWrapper(localName = "AllCardsInfoResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllCardsInfoResponse")
    public ArrayOftAllCardsInfo allCardsInfo();

    /**
     * Returns an array with the id, name, country and flag reference of all players. Pass a 0 for all players and 1 for only the selected players.
     * 
     * @param bSelected
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftPlayerName
     */
    @WebMethod(operationName = "AllPlayerNames")
    @WebResult(name = "AllPlayerNamesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "AllPlayerNames", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllPlayerNames")
    @ResponseWrapper(localName = "AllPlayerNamesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllPlayerNamesResponse")
    public ArrayOftPlayerName allPlayerNames(
        @WebParam(name = "bSelected", targetNamespace = "https://footballpool.dataaccess.eu")
        boolean bSelected);

    /**
     * Returns an array with the names of all players that have a yellow or a red card. The number of yellow and red cards is returned.
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftTeamPlayerCardInfo
     */
    @WebMethod(operationName = "AllPlayersWithCards")
    @WebResult(name = "AllPlayersWithCardsResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "AllPlayersWithCards", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllPlayersWithCards")
    @ResponseWrapper(localName = "AllPlayersWithCardsResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllPlayersWithCardsResponse")
    public ArrayOftTeamPlayerCardInfo allPlayersWithCards();

    /**
     * Returns an array with the names of all players that have the passed player role. If you pass a team name the result will be filtered on that team. For possible team names call the function TeamNames. For possible role codes call the function PlayerRoles
     * 
     * @param sRoleCode
     * @param sTeamName
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftTeamPlayerName
     */
    @WebMethod(operationName = "AllPlayersWithRole")
    @WebResult(name = "AllPlayersWithRoleResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "AllPlayersWithRole", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllPlayersWithRole")
    @ResponseWrapper(localName = "AllPlayersWithRoleResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllPlayersWithRoleResponse")
    public ArrayOftTeamPlayerName allPlayersWithRole(
        @WebParam(name = "sTeamName", targetNamespace = "https://footballpool.dataaccess.eu")
        String sTeamName,
        @WebParam(name = "sRoleCode", targetNamespace = "https://footballpool.dataaccess.eu")
        String sRoleCode);

    /**
     * Returns an array with the information stored about all stadiums. The array contains the names, the city where the stadium can be found, the seat capacity, the google maps and wikipedia URLs
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftStadiumInfo
     */
    @WebMethod(operationName = "AllStadiumInfo")
    @WebResult(name = "AllStadiumInfoResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "AllStadiumInfo", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllStadiumInfo")
    @ResponseWrapper(localName = "AllStadiumInfoResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllStadiumInfoResponse")
    public ArrayOftStadiumInfo allStadiumInfo();

    /**
     * Returns an array with the names of all the coaches and the team name he/she is coaching
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftTeamCoachName
     */
    @WebMethod(operationName = "AllTeamCoachNames")
    @WebResult(name = "AllTeamCoachNamesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "AllTeamCoachNames", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllTeamCoachNames")
    @ResponseWrapper(localName = "AllTeamCoachNamesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.AllTeamCoachNamesResponse")
    public ArrayOftTeamCoachName allTeamCoachNames();

    /**
     * Returns the total number of red or yellow cards given for all games (iGameNumber < 1) or a specific game. For the game numbers call the function ResultsAllGames
     * 
     * @param bYellow
     * @param iGameNumber
     * @return
     *     returns int
     */
    @WebMethod(operationName = "Cards")
    @WebResult(name = "CardsResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "Cards", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.Cards")
    @ResponseWrapper(localName = "CardsResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.CardsResponse")
    public int cards(
        @WebParam(name = "bYellow", targetNamespace = "https://footballpool.dataaccess.eu")
        boolean bYellow,
        @WebParam(name = "iGameNumber", targetNamespace = "https://footballpool.dataaccess.eu")
        int iGameNumber);

    /**
     * Returns an array with all the city names where games are played
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOfString
     */
    @WebMethod(operationName = "CityNames")
    @WebResult(name = "CityNamesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "CityNames", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.CityNames")
    @ResponseWrapper(localName = "CityNamesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.CityNamesResponse")
    public ArrayOfString cityNames();

    /**
     * Get the top 25 countries starting with or containing the value of sName
     * 
     * @param sCountryName
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftCountry
     */
    @WebMethod(operationName = "Countries")
    @WebResult(name = "CountriesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "Countries", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.Countries")
    @ResponseWrapper(localName = "CountriesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.CountriesResponse")
    public ArrayOftCountry countries(
        @WebParam(name = "sCountryName", targetNamespace = "https://footballpool.dataaccess.eu")
        String sCountryName);

    /**
     * Returns an array with a play levels and per level the start and end game date and ID
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftGameLevelInfo
     */
    @WebMethod(operationName = "FirstLastGamesEachLevel")
    @WebResult(name = "FirstLastGamesEachLevelResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "FirstLastGamesEachLevel", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.FirstLastGamesEachLevel")
    @ResponseWrapper(localName = "FirstLastGamesEachLevelResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.FirstLastGamesEachLevelResponse")
    public ArrayOftGameLevelInfo firstLastGamesEachLevel();

    /**
     * Returns an array of Game IDs grouped by City Name
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftGameIDsPerCity
     */
    @WebMethod(operationName = "GameIDsGroupedByCity")
    @WebResult(name = "GameIDsGroupedByCityResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "GameIDsGroupedByCity", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GameIDsGroupedByCity")
    @ResponseWrapper(localName = "GameIDsGroupedByCityResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GameIDsGroupedByCityResponse")
    public ArrayOftGameIDsPerCity gameIDsGroupedByCity();

    /**
     * Returns the results of a given game (pass the game ID). For the game numbers call the function ResultsAllGames
     * 
     * @param iGameNumber
     * @return
     *     returns https.footballpool_dataaccess.TGameResult
     */
    @WebMethod(operationName = "GameScore")
    @WebResult(name = "GameScoreResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "GameScore", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GameScore")
    @ResponseWrapper(localName = "GameScoreResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GameScoreResponse")
    public TGameResult gameScore(
        @WebParam(name = "iGameNumber", targetNamespace = "https://footballpool.dataaccess.eu")
        int iGameNumber);

    /**
     * Returns the score for a team in a game. For the game numbers call the function ResultsAllGames. For the team ID call the function Teams
     * 
     * @param iTeamId
     * @param iGameNumber
     * @return
     *     returns int
     */
    @WebMethod(operationName = "GameTeamScore")
    @WebResult(name = "GameTeamScoreResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "GameTeamScore", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GameTeamScore")
    @ResponseWrapper(localName = "GameTeamScoreResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GameTeamScoreResponse")
    public int gameTeamScore(
        @WebParam(name = "iGameNumber", targetNamespace = "https://footballpool.dataaccess.eu")
        int iGameNumber,
        @WebParam(name = "iTeamId", targetNamespace = "https://footballpool.dataaccess.eu")
        int iTeamId);

    /**
     * Returns the total number of goals scored
     * 
     * @return
     *     returns int
     */
    @WebMethod(operationName = "GoalsScored")
    @WebResult(name = "GoalsScoredResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "GoalsScored", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GoalsScored")
    @ResponseWrapper(localName = "GoalsScoredResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GoalsScoredResponse")
    public int goalsScored();

    /**
     * Returns the date of the first game in this group
     * 
     * @param sGroupCode
     * @return
     *     returns javax.xml.datatype.XMLGregorianCalendar
     */
    @WebMethod(operationName = "GroupFirstGameDate")
    @WebResult(name = "GroupFirstGameDateResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "GroupFirstGameDate", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GroupFirstGameDate")
    @ResponseWrapper(localName = "GroupFirstGameDateResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GroupFirstGameDateResponse")
    public XMLGregorianCalendar groupFirstGameDate(
        @WebParam(name = "sGroupCode", targetNamespace = "https://footballpool.dataaccess.eu")
        String sGroupCode);

    /**
     * Returns a list of groups (poule phase and later round of 16 etc) and the information such as name and date first and last game
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftGroupInfo
     */
    @WebMethod(operationName = "GroupInfo")
    @WebResult(name = "GroupInfoResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "GroupInfo", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GroupInfo")
    @ResponseWrapper(localName = "GroupInfoResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GroupInfoResponse")
    public ArrayOftGroupInfo groupInfo();

    /**
     * Returns the date of the last game in this group. For the group code call the function GroupInfo
     * 
     * @param sGroupCode
     * @return
     *     returns javax.xml.datatype.XMLGregorianCalendar
     */
    @WebMethod(operationName = "GroupLastGameDate")
    @WebResult(name = "GroupLastGameDateResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "GroupLastGameDate", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GroupLastGameDate")
    @ResponseWrapper(localName = "GroupLastGameDateResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GroupLastGameDateResponse")
    public XMLGregorianCalendar groupLastGameDate(
        @WebParam(name = "sGroupCode", targetNamespace = "https://footballpool.dataaccess.eu")
        String sGroupCode);

    /**
     * Returns an the standings in each group by passing the group ID. For the group ID call the function GroupInfo
     * 
     * @param iGroupId
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftGroupStanding
     */
    @WebMethod(operationName = "GroupStandings")
    @WebResult(name = "GroupStandingsResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "GroupStandings", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GroupStandings")
    @ResponseWrapper(localName = "GroupStandingsResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.GroupStandingsResponse")
    public ArrayOftGroupStanding groupStandings(
        @WebParam(name = "iGroupId", targetNamespace = "https://footballpool.dataaccess.eu")
        int iGroupId);

    /**
     * Returns the date of the first game in this level. For a level Number call the Levels Function.
     * 
     * @param iLevel
     * @return
     *     returns javax.xml.datatype.XMLGregorianCalendar
     */
    @WebMethod(operationName = "LevelFirstGameDate")
    @WebResult(name = "LevelFirstGameDateResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "LevelFirstGameDate", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.LevelFirstGameDate")
    @ResponseWrapper(localName = "LevelFirstGameDateResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.LevelFirstGameDateResponse")
    public XMLGregorianCalendar levelFirstGameDate(
        @WebParam(name = "iLevel", targetNamespace = "https://footballpool.dataaccess.eu")
        int iLevel);

    /**
     * Returns the date of the last game in this level For a level number call the Levels function. For a level Number call the Levels Function.
     * 
     * @param iLevel
     * @return
     *     returns javax.xml.datatype.XMLGregorianCalendar
     */
    @WebMethod(operationName = "LevelLastGameDate")
    @WebResult(name = "LevelLastGameDateResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "LevelLastGameDate", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.LevelLastGameDate")
    @ResponseWrapper(localName = "LevelLastGameDateResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.LevelLastGameDateResponse")
    public XMLGregorianCalendar levelLastGameDate(
        @WebParam(name = "iLevel", targetNamespace = "https://footballpool.dataaccess.eu")
        int iLevel);

    /**
     * Returns a array with level numbers. The numbers can be used in functions that require or offer an option to pass a level number such as LevelFirstGameDate
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOfInt
     */
    @WebMethod(operationName = "Levels")
    @WebResult(name = "LevelsResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "Levels", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.Levels")
    @ResponseWrapper(localName = "LevelsResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.LevelsResponse")
    public ArrayOfInt levels();

    /**
     * Returns a list with tournament dates
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOfdate
     */
    @WebMethod(operationName = "MatchDates")
    @WebResult(name = "MatchDatesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "MatchDates", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.MatchDates")
    @ResponseWrapper(localName = "MatchDatesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.MatchDatesResponse")
    public ArrayOfdate matchDates();

    /**
     * Returns an array with the next games of date that is greater than or equal to today. Only games of one day are returned.
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftNextGame
     */
    @WebMethod(operationName = "NextGames")
    @WebResult(name = "NextGamesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "NextGames", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.NextGames")
    @ResponseWrapper(localName = "NextGamesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.NextGamesResponse")
    public ArrayOftNextGame nextGames();

    /**
     * Get the top 10 players where name, fullname, firstname or lastname contains the value of sName
     * 
     * @param sName
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftPlayer
     */
    @WebMethod(operationName = "Players")
    @WebResult(name = "PlayersResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "Players", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.Players")
    @ResponseWrapper(localName = "PlayersResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.PlayersResponse")
    public ArrayOftPlayer players(
        @WebParam(name = "sName", targetNamespace = "https://footballpool.dataaccess.eu")
        String sName);

    /**
     * Returns an array with the roles a player can have (defender etc)
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftPlayerRole
     */
    @WebMethod(operationName = "PlayerRoles")
    @WebResult(name = "PlayerRolesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "PlayerRoles", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.PlayerRoles")
    @ResponseWrapper(localName = "PlayerRolesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.PlayerRolesResponse")
    public ArrayOftPlayerRole playerRoles();

    /**
     * Returns an array with the names of all players that have a yellow or a red card. The number of yellow and red cards is returned.
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftTeamPlayerCardRankInfo
     */
    @WebMethod(operationName = "PlayersWithCardsRanked")
    @WebResult(name = "PlayersWithCardsRankedResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "PlayersWithCardsRanked", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.PlayersWithCardsRanked")
    @ResponseWrapper(localName = "PlayersWithCardsRankedResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.PlayersWithCardsRankedResponse")
    public ArrayOftTeamPlayerCardRankInfo playersWithCardsRanked();

    /**
     * Returns an array with the names of all players that have scored a goal.
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftTeamPlayerGoalsRankInfo
     */
    @WebMethod(operationName = "PlayersWithGoalsRanked")
    @WebResult(name = "PlayersWithGoalsRankedResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "PlayersWithGoalsRanked", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.PlayersWithGoalsRanked")
    @ResponseWrapper(localName = "PlayersWithGoalsRankedResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.PlayersWithGoalsRankedResponse")
    public ArrayOftTeamPlayerGoalsRankInfo playersWithGoalsRanked();

    /**
     * Returns game result of all games overall, in one group or at one level. When groupid < 1 All games are processed (optionally filtered by level). A Group ID or level can be retrieved via GroupInfo.
     * 
     * @param iGroupId
     * @param iLevel
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftGameResult
     */
    @WebMethod(operationName = "ResultsAllGames")
    @WebResult(name = "ResultsAllGamesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "ResultsAllGames", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.ResultsAllGames")
    @ResponseWrapper(localName = "ResultsAllGamesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.ResultsAllGamesResponse")
    public ArrayOftGameResult resultsAllGames(
        @WebParam(name = "iGroupId", targetNamespace = "https://footballpool.dataaccess.eu")
        int iGroupId,
        @WebParam(name = "iLevel", targetNamespace = "https://footballpool.dataaccess.eu")
        int iLevel);

    /**
     * Returns a URL that can be used to show a small map of the stadium. For the name of the stadium call the funciton StadiumNames
     * 
     * @param sStadiumName
     * @return
     *     returns java.lang.String
     */
    @WebMethod(operationName = "StadiumGoogleMapsURL")
    @WebResult(name = "StadiumGoogleMapsURLResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "StadiumGoogleMapsURL", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.StadiumGoogleMapsURL")
    @ResponseWrapper(localName = "StadiumGoogleMapsURLResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.StadiumGoogleMapsURLResponse")
    public String stadiumGoogleMapsURL(
        @WebParam(name = "sStadiumName", targetNamespace = "https://footballpool.dataaccess.eu")
        String sStadiumName);

    /**
     * Returns the information stored about a particular stadium. For that pass the exact name of the stadium. For the name of the stadium call the funciton StadiumNames
     * 
     * @param sStadiumName
     * @return
     *     returns https.footballpool_dataaccess.TStadiumInfo
     */
    @WebMethod(operationName = "StadiumInfo")
    @WebResult(name = "StadiumInfoResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "StadiumInfo", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.StadiumInfo")
    @ResponseWrapper(localName = "StadiumInfoResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.StadiumInfoResponse")
    public TStadiumInfo stadiumInfo(
        @WebParam(name = "sStadiumName", targetNamespace = "https://footballpool.dataaccess.eu")
        String sStadiumName);

    /**
     * Returns an array of stadium names where the games are played
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOfString
     */
    @WebMethod(operationName = "StadiumNames")
    @WebResult(name = "StadiumNamesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "StadiumNames", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.StadiumNames")
    @ResponseWrapper(localName = "StadiumNamesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.StadiumNamesResponse")
    public ArrayOfString stadiumNames();

    /**
     * Returns a list of team IDs based on passed GroupCode (e.g A or H). For the group code call the function GroupInfo
     * 
     * @param sGroupCode
     * @return
     *     returns https.footballpool_dataaccess.ArrayOfInt
     */
    @WebMethod(operationName = "TeamIDsByGroup")
    @WebResult(name = "TeamIDsByGroupResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "TeamIDsByGroup", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TeamIDsByGroup")
    @ResponseWrapper(localName = "TeamIDsByGroupResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TeamIDsByGroupResponse")
    public ArrayOfInt teamIDsByGroup(
        @WebParam(name = "sGroupCode", targetNamespace = "https://footballpool.dataaccess.eu")
        String sGroupCode);

    /**
     * Get the players of a team. This is the current squad. For the team name call the function TeamNames. Pass a 1 for selected players only or 0 for all registered players that belong to the team (now and in the past)
     * 
     * @param sTeamName
     * @param bSelected
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftPlayer
     */
    @WebMethod(operationName = "TeamPlayers")
    @WebResult(name = "TeamPlayersResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "TeamPlayers", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TeamPlayers")
    @ResponseWrapper(localName = "TeamPlayersResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TeamPlayersResponse")
    public ArrayOftPlayer teamPlayers(
        @WebParam(name = "sTeamName", targetNamespace = "https://footballpool.dataaccess.eu")
        String sTeamName,
        @WebParam(name = "bSelected", targetNamespace = "https://footballpool.dataaccess.eu")
        boolean bSelected);

    /**
     * Returns an array with team names. The names can be used in functions that require or offer an option to pass a teamname
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOfString
     */
    @WebMethod(operationName = "TeamNames")
    @WebResult(name = "TeamNamesResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "TeamNames", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TeamNames")
    @ResponseWrapper(localName = "TeamNamesResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TeamNamesResponse")
    public ArrayOfString teamNames();

    /**
     * Get the top 10 teams starting with or containing the value of sTeamName. For the team name call the function TeamNames
     * 
     * @param sTeamName
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftTeam
     */
    @WebMethod(operationName = "Teams")
    @WebResult(name = "TeamsResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "Teams", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.Teams")
    @ResponseWrapper(localName = "TeamsResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TeamsResponse")
    public ArrayOftTeam teams(
        @WebParam(name = "sTeamName", targetNamespace = "https://footballpool.dataaccess.eu")
        String sTeamName);

    /**
     * Returns an array with the 5 best performing players.
     * 
     * @return
     *     returns https.footballpool_dataaccess.ArrayOftTopScorerTop5
     */
    @WebMethod(operationName = "TopScorersList")
    @WebResult(name = "TopScorersListResult", targetNamespace = "https://footballpool.dataaccess.eu")
    @RequestWrapper(localName = "TopScorersList", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TopScorersList")
    @ResponseWrapper(localName = "TopScorersListResponse", targetNamespace = "https://footballpool.dataaccess.eu", className = "https.footballpool_dataaccess.TopScorersListResponse")
    public ArrayOftTopScorerTop5 topScorersList();

}