-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
79 lines (74 loc) · 1.77 KB
/
README
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
Feedback is a common xml exchange format for generic results.
e.g the following results:
+ Result-1 (SUCCEED)
|- Message-1
|~ Key-1: Value-1
+ Result-1 (WARNING)
|- Message-1
|- Message-2
|~ Key-1: Value-1
|~ Key-2: Value-2
+ Result-2 (WARNING)
|- Message-1
|- Message-2
|~ Key-1: Value-1
|~ Key-2: Value-2
will be serialized as:
<Feedback>
<version>0.2.0</version>
<results>
<Result>
<name>Result-1</name>
<values>
<string>Message-1</string>
</values>
<properties>
<entry>
<string>Key-1</string>
<string>Value-1</string>
</entry>
</properties>
<status>SUCCEED</status>
<results>
<Result>
<name>Result-1</name>
<values>
<string>Message-1</string>
<string>Message-2</string>
</values>
<properties>
<entry>
<string>Key-1</string>
<string>Value-1</string>
</entry>
<entry>
<string>Key-2</string>
<string>Value-2</string>
</entry>
</properties>
<status>WARNING</status>
<results/>
</Result>
<Result>
<name>Result-2</name>
<values>
<string>Message-1</string>
<string>Message-2</string>
</values>
<properties>
<entry>
<string>Key-1</string>
<string>Value-1</string>
</entry>
<entry>
<string>Key-2</string>
<string>Value-2</string>
</entry>
</properties>
<status>WARNING</status>
<results/>
</Result>
</results>
</Result>
</results>
</Feedback>