This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Shipper2.xml
110 lines (94 loc) · 2.55 KB
/
Shipper2.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<Fleet shipperName="Shipper2"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="VehicleXMLSchema.xsd">
<Car id="car2">
<plate>BBB</plate>
<mark>Volkwagen</mark>
<model>M1</model>
<trim></trim>
<allestimento></allestimento>
<stato>NON_DISPONIBILE</stato>
<carryingCapacity>0.0</carryingCapacity>
<ptt>2</ptt>
<weight>0.0</weight>
<volume>0.0</volume>
<length>0.0</length>
<height>0.0</height>
<width>0.0</width>
<locazioneAttuale>Bari</locazioneAttuale>
</Car>
<Truck id="truck1">
<plate>DDD</plate>
<mark>Scania</mark>
<model>M3</model>
<trim></trim>
<allestimento>Cisterna</allestimento>
<stato>DISPONIBILE</stato>
<carryingCapacity>1.0</carryingCapacity>
<ptt>5</ptt>
<weight>2.0</weight>
<volume>3.0</volume>
<length>4.0</length>
<height>5.0</height>
<width>6.0</width>
<locazioneAttuale>Andria</locazioneAttuale>
</Truck>
<Trailer id="trailer1">
<plate>EEE</plate>
<mark>Scania</mark>
<model></model>
<trim></trim>
<allestimento>Frigo</allestimento>
<stato>NON_DISPONIBILE</stato>
<carryingCapacity>6.0</carryingCapacity>
<ptt>5</ptt>
<weight>7.0</weight>
<volume>8.0</volume>
<length>9.0</length>
<height>1.0</height>
<width>2.0</width>
<locazioneAttuale>Andria</locazioneAttuale>
</Trailer>
<RoadTractor id="roadtractor1">
<plate>FFF</plate>
<mark>Scania</mark>
<model></model>
<trim></trim>
<allestimento></allestimento>
<stato>DISPONIBILE</stato>
<carryingCapacity>0.0</carryingCapacity>
<ptt>5</ptt>
<weight>0.0</weight>
<volume>0.0</volume>
<length>0.0</length>
<height>0.0</height>
<width>0.0</width>
<locazioneAttuale>Andria</locazioneAttuale>
</RoadTractor>
<SemiTrailer id="semitrailer1">
<plate>GGG</plate>
<mark>Scania</mark>
<model></model>
<trim></trim>
<allestimento>Frigo</allestimento>
<stato>DISPONIBILE</stato>
<carryingCapacity>0.0</carryingCapacity>
<ptt>5</ptt>
<weight>0.0</weight>
<volume>0.0</volume>
<length>0.0</length>
<height>0.0</height>
<width>0.0</width>
<locazioneAttuale>Andria</locazioneAttuale>
</SemiTrailer>
<TrailerTruck id="trailerTruck1">
<Car refid="car1"/>
<Trailer refid="trailer1"/>
</TrailerTruck>
<SemiTrailerTruck id="semiTrailerTruck1">
<RoadTractor refid="roadtractor1"/>
<SemiTrailer refid="semitrailer1"/>
</SemiTrailerTruck>
</Fleet>