Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2a3e4f424df5b1f19aad41d2e16bef61b69b1dd7 (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
<?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.skynet.core.event2.FrameworkEvent"/>
          </jaxb:globalBindings>
       </xsd:appinfo>
    </xsd:annotation>

<xsd:complexType name="BranchEvent">
  <xsd:sequence>
    <xsd:element name="modTypeGuid" type="xsd:string"/>
    <xsd:element name="branchGuid" type="xsd:string"/>
    <xsd:element name="networkSender" type="NetworkSender" maxOccurs="1" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="BroadcastEvent">
  <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="NetworkSender" maxOccurs="1" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="TransactionDeletedEvent">
  <xsd:sequence>
    <xsd:element name="transactionIds" type="xsd:string" maxOccurs="unbounded" minOccurs="1"/>
    <xsd:element name="networkSender" type="NetworkSender" maxOccurs="1" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="AttributeChange">
  <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="DefaultBasicGuidRelation">
  <xsd:sequence>
    <xsd:element name="branchGuid" type="xsd:string"/>
    <xsd:element name="relTypeGuid" type="xsd:string"/>
    <xsd:element name="gammaId" type="xsd:int"/>
    <xsd:element name="artA" type="DefaultBasicGuidArtifact" maxOccurs="1" minOccurs="1"/>
    <xsd:element name="artB" type="DefaultBasicGuidArtifact" maxOccurs="1" minOccurs="1"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="DefaultBasicGuidArtifact">
  <xsd:sequence>
    <xsd:element name="branchGuid" type="xsd:string"/>
    <xsd:element name="artTypeGuid" type="xsd:string"/>
    <xsd:element name="artGuid" type="xsd:string"/>
  </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="NetworkSender">
  <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