12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
- targetNamespace="urn:trans-timeout"
- xmlns="urn:trans-timeout"
- xmlns:javaee="http://java.sun.com/xml/ns/javaee"
- elementFormDefault="qualified"
- attributeFormDefault="unqualified"
- version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://www.jboss.org/j2ee/schema/jboss-ejb3-spec-2_0.xsd">
- <xs:import namespace="http://java.sun.com/xml/ns/javaee" schemaLocation="http://www.jboss.org/j2ee/schema/jboss-ejb3-spec-2_0.xsd"/>
- <xs:element name="trans-timeout" type="trans-timeoutType" substitutionGroup="javaee:container-transaction-entry"/>
- <xs:complexType name="trans-timeoutType">
- <xs:complexContent>
- <xs:extension base="javaee:jboss-container-transaction-entryType">
- <xs:sequence>
- <xs:element name="timeout"
- type="javaee:xsdIntegerType"/>
- <xs:element name="unit"
- type="javaee:time-unit-typeType"/>
- </xs:sequence>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:schema>
|