Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

root/branches/1_5/sample/soapheader/soapext_basicauth/mms_MizGIS.rb

Revision 1843, 18.1 kB (checked in by nahi, 2 years ago)
  • reorganize sampless
Line 
1 require 'xsd/qname'
2
3 # {urn:mms_MizGIS}ArrayOfint
4 class ArrayOfint < ::Array
5 end
6
7 # {urn:mms_MizGIS}ArrayOfstring
8 class ArrayOfstring < ::Array
9 end
10
11 # {urn:mms_MizGIS}AccessCredentialsType
12 class AccessCredentialsType
13   attr_accessor :name
14   attr_accessor :password
15
16   def initialize(name = nil, password = nil)
17     @name = name
18     @password = password
19   end
20 end
21
22 # {urn:mms_MizGIS}AddressSearchType
23 class AddressSearchType
24   attr_accessor :languageCode
25   attr_accessor :countryCode
26   attr_accessor :place
27   attr_accessor :street
28   attr_accessor :houseNumber
29
30   def initialize(languageCode = nil, countryCode = nil, place = nil, street = nil, houseNumber = nil)
31     @languageCode = languageCode
32     @countryCode = countryCode
33     @place = place
34     @street = street
35     @houseNumber = houseNumber
36   end
37 end
38
39 # {urn:mms_MizGIS}CoordinatesType
40 class CoordinatesType
41   attr_accessor :longitude
42   attr_accessor :latitude
43
44   def initialize(longitude = nil, latitude = nil)
45     @longitude = longitude
46     @latitude = latitude
47   end
48 end
49
50 # {urn:mms_MizGIS}BoxType
51 class BoxType
52   attr_accessor :bottomLeft
53   attr_accessor :topRight
54
55   def initialize(bottomLeft = nil, topRight = nil)
56     @bottomLeft = bottomLeft
57     @topRight = topRight
58   end
59 end
60
61 # {urn:mms_MizGIS}AreaType
62 class AreaType
63   attr_accessor :center
64   attr_accessor :radius
65
66   def initialize(center = nil, radius = nil)
67     @center = center
68     @radius = radius
69   end
70 end
71
72 # {urn:mms_MizGIS}ArrayOfAreaType
73 class ArrayOfAreaType < ::Array
74 end
75
76 # {urn:mms_MizGIS}GeocodeType
77 class GeocodeType
78   attr_accessor :areaId
79   attr_accessor :streetNameId
80   attr_accessor :lineId
81   attr_accessor :position
82   attr_accessor :direction
83   attr_accessor :highway
84
85   def initialize(areaId = nil, streetNameId = nil, lineId = nil, position = nil, direction = nil, highway = nil)
86     @areaId = areaId
87     @streetNameId = streetNameId
88     @lineId = lineId
89     @position = position
90     @direction = direction
91     @highway = highway
92   end
93 end
94
95 # {urn:mms_MizGIS}ArrayOfGeocodeType
96 class ArrayOfGeocodeType < ::Array
97 end
98
99 # {urn:mms_MizGIS}AddressType
100 class AddressType
101   attr_accessor :countryCode
102   attr_accessor :languageCode
103   attr_accessor :countryName
104   attr_accessor :region
105   attr_accessor :municipality
106   attr_accessor :languageCodeDistrict
107   attr_accessor :district
108   attr_accessor :languageCodeStreetName
109   attr_accessor :streetName
110   attr_accessor :houseNumber
111   attr_accessor :postCode
112   attr_accessor :coordinates
113   attr_accessor :geocode
114
115   def initialize(countryCode = nil, languageCode = nil, countryName = nil, region = nil, municipality = nil, languageCodeDistrict = nil, district = nil, languageCodeStreetName = nil, streetName = nil, houseNumber = nil, postCode = nil, coordinates = nil, geocode = nil)
116     @countryCode = countryCode
117     @languageCode = languageCode
118     @countryName = countryName
119     @region = region
120     @municipality = municipality
121     @languageCodeDistrict = languageCodeDistrict
122     @district = district
123     @languageCodeStreetName = languageCodeStreetName
124     @streetName = streetName
125     @houseNumber = houseNumber
126     @postCode = postCode
127     @coordinates = coordinates
128     @geocode = geocode
129   end
130 end
131
132 # {urn:mms_MizGIS}ArrayOfAddressType
133 class ArrayOfAddressType < ::Array
134 end
135
136 # {urn:mms_MizGIS}PoiMacrocategoryType
137 class PoiMacrocategoryType
138   attr_accessor :macrocategoryId
139   attr_accessor :description
140
141   def initialize(macrocategoryId = nil, description = nil)
142     @macrocategoryId = macrocategoryId
143     @description = description
144   end
145 end
146
147 # {urn:mms_MizGIS}ArrayOfPoiMacrocategoryType
148 class ArrayOfPoiMacrocategoryType < ::Array
149 end
150
151 # {urn:mms_MizGIS}PoiCategoryType
152 class PoiCategoryType
153   attr_accessor :categoryId
154   attr_accessor :macrocategoryId
155   attr_accessor :description
156   attr_accessor :populated
157
158   def initialize(categoryId = nil, macrocategoryId = nil, description = nil, populated = nil)
159     @categoryId = categoryId
160     @macrocategoryId = macrocategoryId
161     @description = description
162     @populated = populated
163   end
164 end
165
166 # {urn:mms_MizGIS}ArrayOfPoiCategoryType
167 class ArrayOfPoiCategoryType < ::Array
168 end
169
170 # {urn:mms_MizGIS}PoiInfoType
171 class PoiInfoType
172   attr_accessor :type
173   attr_accessor :value
174
175   def initialize(type = nil, value = nil)
176     @type = type
177     @value = value
178   end
179 end
180
181 # {urn:mms_MizGIS}ArrayOfPoiInfoType
182 class ArrayOfPoiInfoType < ::Array
183 end
184
185 # {urn:mms_MizGIS}PoiType
186 class PoiType
187   attr_accessor :poiId
188   attr_accessor :categories
189   attr_accessor :name
190   attr_accessor :coordinates
191   attr_accessor :geocode
192   attr_accessor :address
193   attr_accessor :postCode
194   attr_accessor :place
195   attr_accessor :country
196   attr_accessor :info
197   attr_accessor :distance
198
199   def initialize(poiId = nil, categories = nil, name = nil, coordinates = nil, geocode = nil, address = nil, postCode = nil, place = nil, country = nil, info = nil, distance = nil)
200     @poiId = poiId
201     @categories = categories
202     @name = name
203     @coordinates = coordinates
204     @geocode = geocode
205     @address = address
206     @postCode = postCode
207     @place = place
208     @country = country
209     @info = info
210     @distance = distance
211   end
212 end
213
214 # {urn:mms_MizGIS}ArrayOfPoiType
215 class ArrayOfPoiType < ::Array
216 end
217
218 # {urn:mms_MizGIS}TmcIdType
219 class TmcIdType
220   attr_accessor :cid
221   attr_accessor :tabCd
222   attr_accessor :lcd
223
224   def initialize(cid = nil, tabCd = nil, lcd = nil)
225     @cid = cid
226     @tabCd = tabCd
227     @lcd = lcd
228   end
229 end
230
231 # {urn:mms_MizGIS}ArrayOfTmcIdType
232 class ArrayOfTmcIdType < ::Array
233 end
234
235 # {urn:mms_MizGIS}TmcRoadQueryType
236 class TmcRoadQueryType
237   attr_accessor :cid
238   attr_accessor :tabCd
239   attr_accessor :roadLcds
240   attr_accessor :roadCodes
241   attr_accessor :roadTypes
242   attr_accessor :roadName
243   attr_accessor :status
244
245   def initialize(cid = nil, tabCd = nil, roadLcds = nil, roadCodes = nil, roadTypes = nil, roadName = nil, status = nil)
246     @cid = cid
247     @tabCd = tabCd
248     @roadLcds = roadLcds
249     @roadCodes = roadCodes
250     @roadTypes = roadTypes
251     @roadName = roadName
252     @status = status
253   end
254 end
255
256 # {urn:mms_MizGIS}ArrayOfTmcRoadQueryType
257 class ArrayOfTmcRoadQueryType < ::Array
258 end
259
260 # {urn:mms_MizGIS}TmcRoadOptionsType
261 class TmcRoadOptionsType
262   attr_accessor :provideBox
263   attr_accessor :nameDirections
264   attr_accessor :listPoints
265   attr_accessor :minPointImportance
266
267   def initialize(provideBox = nil, nameDirections = nil, listPoints = nil, minPointImportance = nil)
268     @provideBox = provideBox
269     @nameDirections = nameDirections
270     @listPoints = listPoints
271     @minPointImportance = minPointImportance
272   end
273 end
274
275 # {urn:mms_MizGIS}TmcPointType
276 class TmcPointType
277   attr_accessor :pointId
278   attr_accessor :roadLcd
279   attr_accessor :segmentLcd
280   attr_accessor :areaLcd
281   attr_accessor :coordinates
282   attr_accessor :pointName
283   attr_accessor :importance
284
285   def initialize(pointId = nil, roadLcd = nil, segmentLcd = nil, areaLcd = nil, coordinates = nil, pointName = nil, importance = nil)
286     @pointId = pointId
287     @roadLcd = roadLcd
288     @segmentLcd = segmentLcd
289     @areaLcd = areaLcd
290     @coordinates = coordinates
291     @pointName = pointName
292     @importance = importance
293   end
294 end
295
296 # {urn:mms_MizGIS}ArrayOfTmcPointType
297 class ArrayOfTmcPointType < ::Array
298 end
299
300 # {urn:mms_MizGIS}TmcRoadType
301 class TmcRoadType
302   attr_accessor :roadId
303   attr_accessor :roadType
304   attr_accessor :roadCode
305   attr_accessor :roadName
306   attr_accessor :box
307   attr_accessor :status
308   attr_accessor :positiveDirName
309   attr_accessor :negativeDirName
310   attr_accessor :points
311
312   def initialize(roadId = nil, roadType = nil, roadCode = nil, roadName = nil, box = nil, status = nil, positiveDirName = nil, negativeDirName = nil, points = nil)
313     @roadId = roadId
314     @roadType = roadType
315     @roadCode = roadCode
316     @roadName = roadName
317     @box = box
318     @status = status
319     @positiveDirName = positiveDirName
320     @negativeDirName = negativeDirName
321     @points = points
322   end
323 end
324
325 # {urn:mms_MizGIS}ArrayOfTmcRoadType
326 class ArrayOfTmcRoadType < ::Array
327 end
328
329 # {urn:mms_MizGIS}TmcTrafficQueryType
330 class TmcTrafficQueryType
331   attr_accessor :area
332   attr_accessor :box
333   attr_accessor :roadIds
334   attr_accessor :fromPoint
335   attr_accessor :toPoint
336   attr_accessor :traffIds
337
338   def initialize(area = nil, box = nil, roadIds = nil, fromPoint = nil, toPoint = nil, traffIds = nil)
339     @area = area
340     @box = box
341     @roadIds = roadIds
342     @fromPoint = fromPoint
343     @toPoint = toPoint
344     @traffIds = traffIds
345   end
346 end
347
348 # {urn:mms_MizGIS}ArrayOfTmcTrafficQueryType
349 class ArrayOfTmcTrafficQueryType < ::Array
350 end
351
352 # {urn:mms_MizGIS}TmcTrafficOptionsType
353 class TmcTrafficOptionsType
354   attr_accessor :languageCode
355   attr_accessor :maxResults
356   attr_accessor :orderBySeverity
357
358   def initialize(languageCode = nil, maxResults = nil, orderBySeverity = nil)
359     @languageCode = languageCode
360     @maxResults = maxResults
361     @orderBySeverity = orderBySeverity
362   end
363 end
364
365 # {urn:mms_MizGIS}TrafficInfoType
366 class TrafficInfoType
367   attr_accessor :id
368   attr_accessor :cat
369   attr_accessor :dob
370   attr_accessor :dob2
371   attr_accessor :dateTime
372   attr_accessor :coordinates
373   attr_accessor :distance
374   attr_accessor :road
375   attr_accessor :roadName
376   attr_accessor :directionName
377   attr_accessor :segmentName
378   attr_accessor :areaName
379   attr_accessor :place
380   attr_accessor :extraPlace
381   attr_accessor :text
382   attr_accessor :extraText
383   attr_accessor :source
384
385   def initialize(id = nil, cat = nil, dob = nil, dob2 = nil, dateTime = nil, coordinates = nil, distance = nil, road = nil, roadName = nil, directionName = nil, segmentName = nil, areaName = nil, place = nil, extraPlace = nil, text = nil, extraText = nil, source = nil)
386     @id = id
387     @cat = cat
388     @dob = dob
389     @dob2 = dob2
390     @dateTime = dateTime
391     @coordinates = coordinates
392     @distance = distance
393     @road = road
394     @roadName = roadName
395     @directionName = directionName
396     @segmentName = segmentName
397     @areaName = areaName
398     @place = place
399     @extraPlace = extraPlace
400     @text = text
401     @extraText = extraText
402     @source = source
403   end
404 end
405
406 # {urn:mms_MizGIS}ArrayOfTrafficInfoType
407 class ArrayOfTrafficInfoType < ::Array
408 end
409
410 # {urn:mms_MizGIS}RouteParametersType
411 class RouteParametersType
412   attr_accessor :startingTime
413   attr_accessor :arrivalTime
414   attr_accessor :mode
415   attr_accessor :optimization
416   attr_accessor :realTime
417   attr_accessor :descriptionLevel
418   attr_accessor :descriptionLanguageCode
419   attr_accessor :providePath
420   attr_accessor :providePathPoints
421
422   def initialize(startingTime = nil, arrivalTime = nil, mode = nil, optimization = nil, realTime = nil, descriptionLevel = nil, descriptionLanguageCode = nil, providePath = nil, providePathPoints = nil)
423     @startingTime = startingTime
424     @arrivalTime = arrivalTime
425     @mode = mode
426     @optimization = optimization
427     @realTime = realTime
428     @descriptionLevel = descriptionLevel
429     @descriptionLanguageCode = descriptionLanguageCode
430     @providePath = providePath
431     @providePathPoints = providePathPoints
432   end
433 end
434
435 # {urn:mms_MizGIS}RouteStepType
436 class RouteStepType
437   attr_accessor :time
438   attr_accessor :duration
439   attr_accessor :distance
440   attr_accessor :action
441   attr_accessor :description
442
443   def initialize(time = nil, duration = nil, distance = nil, action = nil, description = nil)
444     @time = time
445     @duration = duration
446     @distance = distance
447     @action = action
448     @description = description
449   end
450 end
451
452 # {urn:mms_MizGIS}ArrayOfRouteStepType
453 class ArrayOfRouteStepType < ::Array
454 end
455
456 # {urn:mms_MizGIS}RouteSegmentType
457 class RouteSegmentType
458   attr_accessor :origin
459   attr_accessor :destination
460   attr_accessor :startingTime
461   attr_accessor :duration
462   attr_accessor :distance
463   attr_accessor :vehicle
464   attr_accessor :steps
465   attr_accessor :path
466
467   def initialize(origin = nil, destination = nil, startingTime = nil, duration = nil, distance = nil, vehicle = nil, steps = nil, path = nil)
468     @origin = origin
469     @destination = destination
470     @startingTime = startingTime
471     @duration = duration
472     @distance = distance
473     @vehicle = vehicle
474     @steps = steps
475     @path = path
476   end
477 end
478
479 # {urn:mms_MizGIS}ArrayOfRouteSegmentType
480 class ArrayOfRouteSegmentType < ::Array
481 end
482
483 # {urn:mms_MizGIS}RoutePartType
484 class RoutePartType
485   attr_accessor :origin
486   attr_accessor :destination
487   attr_accessor :startingTime
488   attr_accessor :duration
489   attr_accessor :distance
490   attr_accessor :segments
491
492   def initialize(origin = nil, destination = nil, startingTime = nil, duration = nil, distance = nil, segments = nil)
493     @origin = origin
494     @destination = destination
495     @startingTime = startingTime
496     @duration = duration
497     @distance = distance
498     @segments = segments
499   end
500 end
501
502 # {urn:mms_MizGIS}ArrayOfRoutePartType
503 class ArrayOfRoutePartType < ::Array
504 end
505
506 # {urn:mms_MizGIS}RouteType
507 class RouteType
508   attr_accessor :routeId
509   attr_accessor :origin
510   attr_accessor :destination
511   attr_accessor :startingTime
512   attr_accessor :duration
513   attr_accessor :distance
514   attr_accessor :parts
515
516   def initialize(routeId = nil, origin = nil, destination = nil, startingTime = nil, duration = nil, distance = nil, parts = nil)
517     @routeId = routeId
518     @origin = origin
519     @destination = destination
520     @startingTime = startingTime
521     @duration = duration
522     @distance = distance
523     @parts = parts
524   end
525 end
526
527 # {urn:mms_MizGIS}ArrayOfRouteType
528 class ArrayOfRouteType < ::Array
529 end
530
531 # {urn:mms_MizGIS}ImagePointType
532 class ImagePointType
533   attr_accessor :x
534   attr_accessor :y
535
536   def initialize(x = nil, y = nil)
537     @x = x
538     @y = y
539   end
540 end
541
542 # {urn:mms_MizGIS}ImageSizeType
543 class ImageSizeType
544   attr_accessor :width
545   attr_accessor :height
546
547   def initialize(width = nil, height = nil)
548     @width = width
549     @height = height
550   end
551 end
552
553 # {urn:mms_MizGIS}MapIconType
554 class MapIconType
555   attr_accessor :iconId
556   attr_accessor :iconType
557   attr_accessor :description
558   attr_accessor :dimmed
559   attr_accessor :minimize
560   attr_accessor :coordinates
561   attr_accessor :point
562
563   def initialize(iconId = nil, iconType = nil, description = nil, dimmed = nil, minimize = nil, coordinates = nil, point = nil)
564     @iconId = iconId
565     @iconType = iconType
566     @description = description
567     @dimmed = dimmed
568     @minimize = minimize
569     @coordinates = coordinates
570     @point = point
571   end
572 end
573
574 # {urn:mms_MizGIS}ArrayOfMapIconType
575 class ArrayOfMapIconType < ::Array
576 end
577
578 # {urn:mms_MizGIS}MapOptionsType
579 class MapOptionsType
580   attr_accessor :format
581   attr_accessor :showTrafficEvents
582   attr_accessor :trafficIconPrefix
583   attr_accessor :trafficIconsDimmed
584   attr_accessor :roadId
585   attr_accessor :routeId
586   attr_accessor :poiIds
587   attr_accessor :trafficInfoIds
588   attr_accessor :icons
589   attr_accessor :routeIds
590   attr_accessor :showBasicPois
591
592   def initialize(format = nil, showTrafficEvents = nil, trafficIconPrefix = nil, trafficIconsDimmed = nil, roadId = nil, routeId = nil, poiIds = nil, trafficInfoIds = nil, icons = nil, routeIds = nil, showBasicPois = nil)
593     @format = format
594     @showTrafficEvents = showTrafficEvents
595     @trafficIconPrefix = trafficIconPrefix
596     @trafficIconsDimmed = trafficIconsDimmed
597     @roadId = roadId
598     @routeId = routeId
599     @poiIds = poiIds
600     @trafficInfoIds = trafficInfoIds
601     @icons = icons
602     @routeIds = routeIds
603     @showBasicPois = showBasicPois
604   end
605 end
606
607 # {urn:mms_MizGIS}MapType
608 class MapType
609   attr_accessor :imageSize
610   attr_accessor :box
611   attr_accessor :width
612   attr_accessor :height
613   attr_accessor :imageUrl
614   attr_accessor :icons
615
616   def initialize(imageSize = nil, box = nil, width = nil, height = nil, imageUrl = nil, icons = nil)
617     @imageSize = imageSize
618     @box = box
619     @width = width
620     @height = height
621     @imageUrl = imageUrl
622     @icons = icons
623   end
624 end
625
626 # {urn:mms_MizGIS}ModeType
627 class ModeType < ::String
628   RmCAR = ModeType.new("rmCAR")
629   RmONFOOT = ModeType.new("rmONFOOT")
630   RmPT = ModeType.new("rmPT")
631 end
632
633 # {urn:mms_MizGIS}VehicleType
634 class VehicleType < ::String
635   VtAIRPLANE = VehicleType.new("vtAIRPLANE")
636   VtANY = VehicleType.new("vtANY")
637   VtBICYCLE = VehicleType.new("vtBICYCLE")
638   VtBUS = VehicleType.new("vtBUS")
639   VtCAR = VehicleType.new("vtCAR")
640   VtDELIVERYTRUCK = VehicleType.new("vtDELIVERY-TRUCK")
641   VtEMERGENCYVEHICLE = VehicleType.new("vtEMERGENCY-VEHICLE")
642   VtMETRO = VehicleType.new("vtMETRO")
643   VtNULL = VehicleType.new("vtNULL")
644   VtPEDESTRIAN = VehicleType.new("vtPEDESTRIAN")
645   VtPUBLICBUS = VehicleType.new("vtPUBLIC-BUS")
646   VtRESIDENTIALVEHICLE = VehicleType.new("vtRESIDENTIAL-VEHICLE")
647   VtTAXI = VehicleType.new("vtTAXI")
648   VtTRAIN = VehicleType.new("vtTRAIN")
649   VtTRAM = VehicleType.new("vtTRAM")
650 end
651
652 # {urn:mms_MizGIS}OptimizationType
653 class OptimizationType < ::String
654   OtCHEAPEST = OptimizationType.new("otCHEAPEST")
655   OtFASTEST = OptimizationType.new("otFASTEST")
656   OtSHORTEST = OptimizationType.new("otSHORTEST")
657 end
658
659 # {urn:mms_MizGIS}DescriptionLevelType
660 class DescriptionLevelType < ::String
661   DlBRIEF = DescriptionLevelType.new("dlBRIEF")
662   DlNONE = DescriptionLevelType.new("dlNONE")
663   DlNORMAL = DescriptionLevelType.new("dlNORMAL")
664 end
665
666 # {urn:mms_MizGIS}StepActionType
667 class StepActionType < ::String
668   SaARRIVE = StepActionType.new("saARRIVE")
669   SaCHANGECOUNTRY = StepActionType.new("saCHANGECOUNTRY")
670   SaCONTINUE = StepActionType.new("saCONTINUE")
671   SaFERRY = StepActionType.new("saFERRY")
672   SaMOTORWAYBEGIN = StepActionType.new("saMOTORWAYBEGIN")
673   SaMOTORWAYCHANGE = StepActionType.new("saMOTORWAYCHANGE")
674   SaMOTORWAYCONTINUE = StepActionType.new("saMOTORWAYCONTINUE")
675   SaMOTORWAYEND = StepActionType.new("saMOTORWAYEND")
676   SaMOTORWAYENTER = StepActionType.new("saMOTORWAYENTER")
677   SaMOTORWAYLEAVE = StepActionType.new("saMOTORWAYLEAVE")
678   SaNULL = StepActionType.new("saNULL")
679   SaONFOOTARRIVE = StepActionType.new("saONFOOTARRIVE")
680   SaONFOOTSTART = StepActionType.new("saONFOOTSTART")
681   SaPTTRAVEL = StepActionType.new("saPTTRAVEL")
682   SaPTWAIT = StepActionType.new("saPTWAIT")
683   SaSTART = StepActionType.new("saSTART")
684   SaSTOP = StepActionType.new("saSTOP")
685   SaTURNLEFT = StepActionType.new("saTURNLEFT")
686   SaTURNRIGHT = StepActionType.new("saTURNRIGHT")
687 end
688
689 # {urn:mms_MizGIS}TmcRoadTypeType
690 class TmcRoadTypeType < ::String
691   RtITAAUTOS = TmcRoadTypeType.new("rtITA-AUTOS")
692   RtITADIR = TmcRoadTypeType.new("rtITA-DIR")
693   RtITARACC = TmcRoadTypeType.new("rtITA-RACC")
694   RtITASGC = TmcRoadTypeType.new("rtITA-SGC")
695   RtITASS = TmcRoadTypeType.new("rtITA-SS")
696   RtITATANG = TmcRoadTypeType.new("rtITA-TANG")
697   RtITATRAF = TmcRoadTypeType.new("rtITA-TRAF")
698   RtNLDA = TmcRoadTypeType.new("rtNLD-A")
699   RtNLDN = TmcRoadTypeType.new("rtNLD-N")
700   RtUNDEF = TmcRoadTypeType.new("rtUNDEF")
701 end
Note: See TracBrowser for help on using the browser.