Skip to main content
summaryrefslogtreecommitdiffstats
blob: 90b9b26e560601b235b297dd3609bf3a89307444 (plain) (blame)
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"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
           xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
           xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
           jaxb:extensionBindingPrefixes="xjc"
           jaxb:version="1.0">

    <xsd:annotation>
       <xsd:appinfo>
          <jaxb:globalBindings>
           <xjc:superClass name="org.eclipse.osee.framework.messaging.event.res.RemoteEvent"/>
          </jaxb:globalBindings>
       </xsd:appinfo>
    </xsd:annotation>

<xsd:complexType name="RemotePersistEvent1">
  <xsd:sequence>
    <xsd:element name="branchGuid" type="xsd:string"/>
    <xsd:element name="transactionId" type="xsd:int"/>
    <xsd:element name="artifacts" type="RemoteBasicGuidArtifact1" maxOccurs="unbounded" minOccurs="1"/>
    <xsd:element name="relations" type="RemoteBasicGuidRelation1" maxOccurs="unbounded" minOccurs="1"/>
    <xsd:element name="networkSender" type="RemoteNetworkSender1" maxOccurs="1" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="RemoteBranchEvent1">
  <xsd:sequence>
    <xsd:element name="eventTypeGuid" type="xsd:string"/>
    <xsd:element name="branchGuid" type="xsd:string"/>
    <xsd:element name="networkSender" type="RemoteNetworkSender1" maxOccurs="1" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="RemoteBroadcastEvent1">
  <xsd:sequence>
    <xsd:element name="eventTypeGuid" type="xsd:string"/>
    <xsd:element name="userIds" type="xsd:string" maxOccurs="unbounded" minOccurs="1"/>
    <xsd:element name="message" type="xsd:string"/>
    <xsd:element name="networkSender" type="RemoteNetworkSender1" maxOccurs="1" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="RemoteTransactionEvent1">
  <xsd:sequence>
    <xsd:element name="eventTypeGuid" type="xsd:string"/>
    <xsd:element name="transactions" type="RemoteTransactionChange1" maxOccurs="unbounded" minOccurs="1"/>
    <xsd:element name="networkSender" type="RemoteNetworkSender1" maxOccurs="1" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>


<xsd:complexType name="RemoteTransactionChange1">
  <xsd:sequence>
    <xsd:element name="branchGuid" type="xsd:string" maxOccurs="1" minOccurs="1"/>
    <xsd:element name="transactionId" type="xsd:int" maxOccurs="1" minOccurs="1"/>
    <xsd:element name="artifacts" type="RemoteBasicGuidArtifact1" maxOccurs="unbounded" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="RemoteBasicGuidRelation1">
  <xsd:sequence>
    <xsd:element name="modTypeGuid" type="xsd:string"/>
    <xsd:element name="branchGuid" type="xsd:string"/>
    <xsd:element name="relTypeGuid" type="xsd:string"/>
    <xsd:element name="relationId" type="xsd:int"/>
    <xsd:element name="gammaId" type="xsd:int"/>
    <xsd:element name="artAId" type="xsd:int"/>
    <xsd:element name="artA" type="RemoteBasicGuidArtifact1" maxOccurs="1" minOccurs="1"/>
    <xsd:element name="artBId" type="xsd:int"/>
    <xsd:element name="artB" type="RemoteBasicGuidArtifact1" maxOccurs="1" minOccurs="1"/>
    <xsd:element name="rationale" type="xsd:string"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="RemoteBasicGuidArtifact1">
  <xsd:sequence>
    <xsd:element name="modTypeGuid" type="xsd:string"/>
    <xsd:element name="branchGuid" type="xsd:string"/>
    <xsd:element name="artTypeGuid" type="xsd:string"/>
    <xsd:element name="artGuid" type="xsd:string"/>
    <xsd:element name="attributes" type="RemoteAttributeChange1" maxOccurs="unbounded" minOccurs="1"/>
    <xsd:element name="toArtTypeGuid" type="xsd:string"/>
  </xsd:sequence>
    
</xsd:complexType>

<xsd:complexType name="RemoteAttributeChange1">
  <xsd:sequence>
    <xsd:element name="attrTypeGuid" type="xsd:string"/>
    <xsd:element name="modTypeGuid" type="xsd:string"/>
    <xsd:element name="attributeId" type="xsd:int"/>
    <xsd:element name="gammaId" type="xsd:int"/>
    <xsd:element name="data" type="xsd:string" maxOccurs="unbounded" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>


<xsd:complexType name="RemoteNetworkSender1">
  <xsd:sequence>
    <xsd:element name="sourceObject" type="xsd:string"/>
    <xsd:element name="sessionId" type="xsd:string"/>
    <xsd:element name="machineName" type="xsd:string"/>
    <xsd:element name="userId" type="xsd:string"/>
    <xsd:element name="machineIp" type="xsd:string"/>
    <xsd:element name="clientVersion" type="xsd:string"/>
    <xsd:element name="port" type="xsd:int"/>
  </xsd:sequence>
</xsd:complexType>

</xsd:schema>

Back to the top