Line 29... |
Line 29... |
29 |
* <complexType name="EmBaseType">
|
29 |
* <complexType name="EmBaseType">
|
30 |
* <complexContent>
|
30 |
* <complexContent>
|
31 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
31 |
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
32 |
* <sequence>
|
32 |
* <sequence>
|
33 |
* <element name="EmEventId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
33 |
* <element name="EmEventId" type="{http://www.eclipse.org/alf/schema/EventBase/1}EventIdType"/>
|
34 |
* <element name="EmTimestamp" type="{http://www.eclipse.org/alf/schema/EventBase/1}TimestampType"/>
|
34 |
* <element name="EmTimestamp" type="{http://www.eclipse.org/alf/schema/EventBase/1}TimestampType"/>
|
35 |
* <element name="PrecedingEmEventId" type="{http://www.eclipse.org/alf/schema/EventBase/1}EventIdType"/>
|
35 |
* <element name="PrecedingEmEventId" type="{http://www.eclipse.org/alf/schema/EventBase/1}EventIdType"/>
|
36 |
* <element name="ApplicationName" type="{http://www.eclipse.org/alf/schema/EventBase/1}ApplicationNameType"/>
|
36 |
* <element name="ApplicationName" type="{http://www.eclipse.org/alf/schema/EventBase/1}ApplicationNameType"/>
|
37 |
* <element name="EventMatchName" type="{http://www.eclipse.org/alf/schema/EventBase/1}EventMatchNameType"/>
|
37 |
* <element name="EventMatchName" type="{http://www.eclipse.org/alf/schema/EventBase/1}EventMatchNameType"/>
|
38 |
* <element name="ServiceFlowName" type="{http://www.eclipse.org/alf/schema/EventBase/1}ServiceFlowNameType"/>
|
38 |
* <element name="ServiceFlowName" type="{http://www.eclipse.org/alf/schema/EventBase/1}ServiceFlowNameType"/>
|
39 |
* <element name="ServiceFlowId" type="{http://www.eclipse.org/alf/schema/EventBase/1}ServiceFlowIdType"/>
|
39 |
* <element name="ServiceFlowId" type="{http://www.eclipse.org/alf/schema/EventBase/1}ServiceFlowIdType"/>
|
40 |
* <element name="Callback" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
40 |
* <element name="Callback" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
41 |
* <element name="Environment" type="{http://www.eclipse.org/alf/schema/EventBase/1}EnvironmentType"/>
|
41 |
* <element name="Environment" type="{http://www.eclipse.org/alf/schema/EventBase/1}EnvironmentType"/>
|
42 |
* <element name="EmUser" type="{http://www.eclipse.org/alf/schema/EventBase/1}CredentialsType"/>
|
42 |
* <element name="EmUser" type="{http://www.eclipse.org/alf/schema/EventBase/1}CredentialsType"/>
|
43 |
* <element name="EmExtension" type="{http://www.eclipse.org/alf/schema/EventBase/1}EmExtensionType" minOccurs="0"/>
|
43 |
* <element name="AttemptCount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
- |
|
44 |
* <element name="EmExtension" type="{http://www.eclipse.org/alf/schema/EventBase/1}EmExtensionType" minOccurs="0"/>
|
44 |
* </sequence>
|
45 |
* </sequence>
|
45 |
* <anyAttribute/>
|
46 |
* <anyAttribute/>
|
46 |
* </restriction>
|
47 |
* </restriction>
|
47 |
* </complexContent>
|
48 |
* </complexContent>
|
48 |
* </complexType>
|
49 |
* </complexType>
|
Line 61... |
Line 62... |
61 |
"serviceFlowId",
|
62 |
"serviceFlowId",
|
62 |
"callback",
|
63 |
"callback",
|
63 |
"environment",
|
64 |
"environment",
|
64 |
"emUser",
|
65 |
"emUser",
|
65 |
"emExtension"
|
66 |
"attemptCount",
|
- |
|
67 |
"emExtension"
|
66 |
})
|
68 |
})
|
67 |
public class EmBaseType {
|
69 |
public class EmBaseType {
|
68 |
|
70 |
|
Line 69... |
Line 71... |
69 |
@XmlElement(name = "EmEventId", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", required = true)
|
71 |
@XmlElement(name = "EmEventId", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", required = true)
|
Line 86... |
Line 88... |
86 |
@XmlElement(name = "Environment", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", required = true)
|
88 |
@XmlElement(name = "Environment", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", required = true)
|
87 |
protected String environment;
|
89 |
protected String environment;
|
88 |
@XmlElement(name = "EmUser", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", required = true)
|
90 |
@XmlElement(name = "EmUser", namespace = "http://www.eclipse.org/alf/schema/EventBase/1", required = true)
|
89 |
protected CredentialsType emUser;
|
91 |
protected CredentialsType emUser;
|
90 |
@XmlElement(name = "EmExtension", namespace = "http://www.eclipse.org/alf/schema/EventBase/1")
|
92 |
@XmlElement(name = "AttemptCount", namespace = "http://www.eclipse.org/alf/schema/EventBase/1")
|
- |
|
93 |
protected Integer attemptCount;
|
- |
|
94 |
@XmlElement(name = "EmExtension", namespace = "http://www.eclipse.org/alf/schema/EventBase/1")
|
91 |
protected EmExtensionType emExtension;
|
95 |
protected EmExtensionType emExtension;
|
92 |
@XmlAnyAttribute
|
96 |
@XmlAnyAttribute
|
93 |
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
|
97 |
private Map<QName, String> otherAttributes = new HashMap<QName, String>();
|
94 |
|
98 |
|
Line 324... |
Line 328... |
324 |
this.emUser = value;
|
328 |
this.emUser = value;
|
325 |
}
|
329 |
}
|
326 |
|
330 |
|
Line 327... |
Line 331... |
327 |
/**
|
331 |
/**
|
- |
|
332 |
* Ruft den Wert der attemptCount-Eigenschaft ab.
|
- |
|
333 |
*
|
- |
|
334 |
* @return
|
- |
|
335 |
* possible object is
|
- |
|
336 |
* {@link Integer }
|
- |
|
337 |
*
|
- |
|
338 |
*/
|
- |
|
339 |
public Integer getAttemptCount() {
|
- |
|
340 |
return attemptCount;
|
- |
|
341 |
}
|
- |
|
342 |
|
- |
|
343 |
/**
|
- |
|
344 |
* Legt den Wert der attemptCount-Eigenschaft fest.
|
- |
|
345 |
*
|
- |
|
346 |
* @param value
|
- |
|
347 |
* allowed object is
|
- |
|
348 |
* {@link Integer }
|
- |
|
349 |
*
|
- |
|
350 |
*/
|
- |
|
351 |
public void setAttemptCount(Integer value) {
|
- |
|
352 |
this.attemptCount = value;
|
- |
|
353 |
}
|
- |
|
354 |
|
- |
|
355 |
/**
|
328 |
* Ruft den Wert der emExtension-Eigenschaft ab.
|
356 |
* Ruft den Wert der emExtension-Eigenschaft ab.
|
329 |
*
|
357 |
*
|
330 |
* @return
|
358 |
* @return
|
331 |
* possible object is
|
359 |
* possible object is
|
332 |
* {@link EmExtensionType }
|
360 |
* {@link EmExtensionType }
|