You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by gn...@apache.org on 2009/04/22 18:11:08 UTC

svn commit: r767579 - in /geronimo/sandbox/blueprint/blueprint-core/src: main/resources/org/apache/geronimo/blueprint/blueprint.xsd test/resources/test-wiring.xml test/resources/test.xml

Author: gnodet
Date: Wed Apr 22 16:11:07 2009
New Revision: 767579

URL: http://svn.apache.org/viewvc?rev=767579&view=rev
Log:
Fix a few things in xsd / xmls

Modified:
    geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd
    geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test-wiring.xml
    geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml

Modified: geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd
URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd?rev=767579&r1=767578&r2=767579&view=diff
==============================================================================
--- geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd (original)
+++ geronimo/sandbox/blueprint/blueprint-core/src/main/resources/org/apache/geronimo/blueprint/blueprint.xsd Wed Apr 22 16:11:07 2009
@@ -174,7 +174,7 @@
             <xsd:extension base="Tcomponent">
                 <xsd:sequence minOccurs="0" maxOccurs="unbounded">
                     <xsd:element name="interfaces" type="Tinterfaces" minOccurs="0" maxOccurs="1"/>
-                    <xsd:element name="listener" type="Tlistener" minOccurs="0" maxOccurs="unbounded"/>
+                    <xsd:element name="listener" type="TreferenceListener" minOccurs="0" maxOccurs="unbounded"/>
                 </xsd:sequence>
                 <xsd:attribute name="interface" use="optional" type="xsd:token"/>
                 <xsd:attribute name="filter" use="optional" type="xsd:string"/>

Modified: geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test-wiring.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test-wiring.xml?rev=767579&r1=767578&r2=767579&view=diff
==============================================================================
--- geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test-wiring.xml (original)
+++ geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test-wiring.xml Wed Apr 22 16:11:07 2009
@@ -7,9 +7,9 @@
             default-destroy-method = "destroy" >
 
     <type-converters>
-            <component id="converter1" class="org.apache.geronimo.blueprint.pojos.ConverterA">
+            <bean id="converter1" class="org.apache.geronimo.blueprint.pojos.ConverterA">
                 <property name="bundle" ref="bundle" />
-            </component>
+            </bean>
     </type-converters>
     
     <service id="service1" ref="pojoB" interface="foo">

Modified: geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml?rev=767579&r1=767578&r2=767579&view=diff
==============================================================================
--- geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml (original)
+++ geronimo/sandbox/blueprint/blueprint-core/src/test/resources/test.xml Wed Apr 22 16:11:07 2009
@@ -37,7 +37,7 @@
         <interfaces>
             <value>org.apache.geronimo.blueprint.pojos.InterfaceA</value>
         </interfaces>
-        <listener ref="listenerA" bind-method="bind" unbind-method="unbind"/>
+        <listener   ref="listenerA" bind-method="bind" unbind-method="unbind"/>
     </reference>
 
     <service interface="org.apache.geronimo.blueprint.pojos.InterfaceA" ref="pojoA"/>