123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsd:schema targetNamespace="http://websphere.ibm.com/xml/ns/javaee"
- xmlns="http://websphere.ibm.com/xml/ns/javaee"
- xmlns:bnd="http://websphere.ibm.com/xml/ns/javaee"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- elementFormDefault="qualified" attributeFormDefault="unqualified"
- version="1.0">
- <!-- ******************************************************* -->
- <xsd:annotation>
- <xsd:documentation>
- Copyright (c) 2010 IBM Corporation and others.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v1.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/legal/epl-v10.html
- Contributors:
- IBM Corporation - initial API and implementation
- </xsd:documentation>
- </xsd:annotation>
- <!-- ******************************************************* -->
- <xsd:include schemaLocation="ibm-common-bnd_1_0.xsd" />
- <!-- ******************************************************* -->
- <xsd:element name="ejb-jar-bnd" type="ejb-jar-bndType">
- <xsd:annotation>
- <xsd:documentation>
- The root of the ibm-ejb-jar-bnd deployment descriptor.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:unique name="unique-ejb-name">
- <xsd:selector xpath="bnd:session | bnd:message-driven" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-interceptor-class">
- <xsd:selector xpath="bnd:interceptor" />
- <xsd:field xpath="@class" />
- </xsd:unique>
- <xsd:unique name="unique-message-destination-name">
- <xsd:selector xpath="bnd:message-destination" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- </xsd:element>
- <!-- ******************************************************* -->
- <xsd:complexType name="ejb-jar-bndType">
- <xsd:annotation>
- <xsd:documentation>
- <![CDATA[
- The ejb binding descriptor defines binding information for the EJB module
- which contains it. It consists of zero or more bindings for beans
- contained within the module.
- ]]>
- </xsd:documentation>
- </xsd:annotation>
- <xsd:sequence>
- <xsd:choice minOccurs="0" maxOccurs="unbounded">
- <xsd:element name="session" type="sessionType">
- <xsd:unique name="unique-session-interface-class">
- <xsd:selector xpath="bnd:interface" />
- <xsd:field xpath="@class" />
- </xsd:unique>
- <xsd:unique name="unique-session-ejb-ref-name">
- <xsd:selector xpath="bnd:ejb-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-session-resource-ref-name">
- <xsd:selector xpath="bnd:resource-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-session-resource-env-ref-name">
- <xsd:selector xpath="bnd:resource-env-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-session-message-destination-ref-name">
- <xsd:selector xpath="bnd:message-destination-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- </xsd:element>
- <xsd:element name="message-driven" type="message-drivenType">
- <xsd:unique name="unique-message-driven-ejb-ref-name">
- <xsd:selector xpath="bnd:ejb-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-message-driven-resource-ref-name">
- <xsd:selector xpath="bnd:resource-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-message-driven-resource-env-ref-name">
- <xsd:selector xpath="bnd:resource-env-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-message-driven-message-destination-ref-name">
- <xsd:selector xpath="bnd:message-destination-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- </xsd:element>
- <xsd:element name="interceptor" type="interceptorType">
- <xsd:unique name="unique-interceptor-ejb-ref-name">
- <xsd:selector xpath="bnd:ejb-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-interceptor-resource-ref-name">
- <xsd:selector xpath="bnd:resource-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-interceptor-resource-env-ref-name">
- <xsd:selector xpath="bnd:resource-env-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- <xsd:unique name="unique-interceptor-message-destination-ref-name">
- <xsd:selector xpath="bnd:message-destination-ref" />
- <xsd:field xpath="@name" />
- </xsd:unique>
- </xsd:element>
- <xsd:element name="message-destination" type="message-destinationType" />
- </xsd:choice>
- </xsd:sequence>
- <xsd:attribute name="version" type="xsd:string" fixed="1.0" use="required" />
- <xsd:attribute name="id" type="xsd:ID"/>
- </xsd:complexType>
- <!-- ******************************************************* -->
- <xsd:complexType name="sessionType">
- <xsd:annotation>
- <xsd:documentation>
- <![CDATA[
- Specifies the binding information for a session bean. The name attribute
- identifies the bean to which the binding information applies.
-
- The interface element allows the specification of a unique binding (jndi)
- name for zero or more business interfaces of the bean.
-
- The simple-binding-name is an optional binding name that may be used when only
- one binding name is needed -- when the bean has zero or one local homes, zero
- or one remote homes and zero or one business interfaces. This binding name
- then applies to all three interfaces (if they exist).
-
- The remote-home-binding-name allows a unique binding name to be specified for
- the remote home interface.
-
- The local-home-binding-name allows a unique binding name to be specified for
- the local home interface.
-
- Bindings may also be specified for ejb-refs, ejb-local-ref, resource-refs,
- resource-env-refs and message-destination-refs. See the ibm-common-bnd XSD
- for more details.
- ]]>
-
- </xsd:documentation>
- </xsd:annotation>
- <xsd:sequence>
- <xsd:element name="interface" type="interfaceType" minOccurs="0" maxOccurs="unbounded" />
- <xsd:group ref="ref-bindingsGroup"/>
- </xsd:sequence>
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attribute name="name" type="xsd:string" use="required" />
- <xsd:attribute name="simple-binding-name" type="xsd:string" use="optional" />
- <xsd:attribute name="component-id" type="xsd:string" use="optional" />
- <xsd:attribute name="remote-home-binding-name" type="xsd:string" use="optional" />
- <xsd:attribute name="local-home-binding-name" type="xsd:string" use="optional" />
- </xsd:complexType>
- <!-- ******************************************************* -->
- <xsd:complexType name="message-drivenType">
- <xsd:annotation>
- <xsd:documentation>
- <![CDATA[
- Specifies the binding information for a message driven bean. The name
- attribute identifies the bean to which the binding information applies.
- The bean can either be bound to a listener port, or to a JCA adapter.
-
- Bindings may also be specified for ejb-refs, resource-refs, resource-env-refs
- and message-destination-refs. See the ibm-common-bnd XSD for more details.
-
- ]]>
- </xsd:documentation>
- </xsd:annotation>
- <xsd:sequence>
- <xsd:choice>
- <xsd:element name="listener-port" type="listener-portType"/>
- <xsd:element name="jca-adapter" type="jca-adapterType"/>
- </xsd:choice>
- <xsd:group ref="ref-bindingsGroup"/>
- </xsd:sequence>
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attribute name="name" type="xsd:string" use="required" />
- </xsd:complexType>
- <!-- ******************************************************* -->
- <xsd:complexType name="interceptorType">
- <xsd:annotation>
- <xsd:documentation>
- Specifies the binding for an interceptor. The class
- attribute specifies the fully qualified name of the interceptor.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:sequence>
- <xsd:group ref="ref-bindingsGroup"/>
- </xsd:sequence>
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attribute name="class" type="xsd:string" use="required" />
- </xsd:complexType>
- <!-- ******************************************************* -->
- <xsd:complexType name="interfaceType">
- <xsd:annotation>
- <xsd:documentation>
- Specifies the binding for a session bean business interface. The class
- attribute specifies the fully qualified name of the business interface.
- If no value is specified for the class, this will suggest a no-interface view.
- The binding-name attribute specifies the binding (jndi) name to be
- associated with the business interface.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attribute name="binding-name" type="xsd:string" use="required" />
- <xsd:attribute name="class" type="xsd:string" use="required" />
- </xsd:complexType>
- <!-- ******************************************************* -->
- <xsd:complexType name="listener-portType">
- <xsd:annotation>
- <xsd:documentation>
- Specifies the name of the listener port for a message driven bean.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attribute name="name" type="xsd:string" use="required" />
- </xsd:complexType>
- <!-- ******************************************************* -->
- <xsd:complexType name="jca-adapterType">
- <xsd:annotation>
- <xsd:documentation>
- Specifies the binding for a JCA adapter for a message driven bean. The
- required information is the binding (jndi) name for the activation
- specification, the authentication alias for the activation specification,
- and the binding name for the destination.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:attribute name="activation-spec-binding-name" type="xsd:string" use="required" />
- <xsd:attribute name="activation-spec-auth-alias" type="xsd:string" />
- <xsd:attribute name="destination-binding-name" type="xsd:string"/>
- </xsd:complexType>
- </xsd:schema>
|