-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfiguration.xml
73 lines (61 loc) · 1.39 KB
/
Configuration.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
<?xml version="1.0" encoding="UTF-8"?>
<!--
The structure of this xml is the follwowing:
Firstly you will see the different accounts which are: clienteA and clienteB with their corresponding devices.
Afterwards, the configuration of each device is specified, per each device there is the type and its versions and pingtime.
And last but not least, the configuration for each cluster is defined:
-For which platform is it going to be used.
-Name.
-Weight.
-->
<info>
<account>
<type>clienteA</type>
<targetDevice>XBox</targetDevice>
<targetDevice>Panasonic</targetDevice>
</account>
<account>
<type>clienteB</type>
<targetDevice>osmf</targetDevice>
</account>
<device>
<type>XBox</type>
<pluginVersion>3.3.1</pluginVersion>
<pingTime>10</pingTime>
</device>
<device>
<type>Panasonic</type>
<pluginVersion>3.3.2</pluginVersion>
<pingTime>5</pingTime>
</device>
<device>
<type>osmf</type>
<pluginVersion>3.3.1</pluginVersion>
<pingTime>5</pingTime>
</device>
<cluster>
<from>XBox</from>
<name>clusterA.com</name>
<weight>7</weight>
</cluster>
<cluster>
<from>XBox</from>
<name>clusterB.com</name>
<weight>3</weight>
</cluster>
<cluster>
<from>Panasonic</from>
<name>clusterB.com</name>
<weight>10</weight>
</cluster>
<cluster>
<from>osmf</from>
<name>clusterA.com</name>
<weight>5</weight>
</cluster>
<cluster>
<from>osmf</from>
<name>clusterB.com</name>
<weight>5</weight>
</cluster>
</info>