[jboss-cvs] JBossAS SVN: r66952 - in projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src: main/java/org/jboss/example/client and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Nov 12 06:05:42 EST 2007


Author: newtonm
Date: 2007-11-12 06:05:41 -0500 (Mon, 12 Nov 2007)
New Revision: 66952

Added:
   projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/jboss-beans.xml
Removed:
   projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/service-beans.xml
Modified:
   projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/aop.xml
   projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/classloader.xml
   projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/pojo.xml
   projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/java/org/jboss/example/client/Client.java
Log:
Renamed service-beans.xml to jboss-beans.xml

Modified: projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/aop.xml
===================================================================
--- projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/aop.xml	2007-11-12 10:49:43 UTC (rev 66951)
+++ projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/aop.xml	2007-11-12 11:05:41 UTC (rev 66952)
@@ -7,7 +7,7 @@
   <files>
     <file>
       <source>src/main/config/aop-beans.xml</source>
-      <destName>service-beans.xml</destName>
+      <destName>jboss-beans.xml</destName>
     </file>
   </files>
   <dependencySets>

Modified: projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/classloader.xml
===================================================================
--- projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/classloader.xml	2007-11-12 10:49:43 UTC (rev 66951)
+++ projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/classloader.xml	2007-11-12 11:05:41 UTC (rev 66952)
@@ -7,7 +7,7 @@
   <files>
     <file>
       <source>src/main/config/classloader-beans.xml</source>
-      <destName>service-beans.xml</destName>
+      <destName>jboss-beans.xml</destName>
     </file>
   </files>
   <dependencySets>

Modified: projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/pojo.xml
===================================================================
--- projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/pojo.xml	2007-11-12 10:49:43 UTC (rev 66951)
+++ projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/assembly/pojo.xml	2007-11-12 11:05:41 UTC (rev 66952)
@@ -7,7 +7,7 @@
   <files>
     <file>
       <source>src/main/config/pojo-beans.xml</source>
-      <destName>service-beans.xml</destName>
+      <destName>jboss-beans.xml</destName>
     </file>
   </files>
   <dependencySets>

Modified: projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/java/org/jboss/example/client/Client.java
===================================================================
--- projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/java/org/jboss/example/client/Client.java	2007-11-12 10:49:43 UTC (rev 66951)
+++ projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/main/java/org/jboss/example/client/Client.java	2007-11-12 11:05:41 UTC (rev 66952)
@@ -53,7 +53,7 @@
 		this.useBus = useBus;
 		
 		ClassLoader cl = Thread.currentThread().getContextClassLoader();
-		url = cl.getResource("service-beans.xml");
+		url = cl.getResource("jboss-beans.xml");
 	
 		// Start JBoss Microcontainer
 		bootstrap = new EmbeddedBootstrap();

Copied: projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/jboss-beans.xml (from rev 66910, projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/service-beans.xml)
===================================================================
--- projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/jboss-beans.xml	                        (rev 0)
+++ projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/jboss-beans.xml	2007-11-12 11:05:41 UTC (rev 66952)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+            xsi:schemaLocation="urn:jboss:bean-deployer:2.0 bean-deployer_2_0.xsd"
+            xmlns="urn:jboss:bean-deployer:2.0">
+
+   <bean name="HRService" class="org.jboss.example.service.HRManager"/>
+      
+</deployment>

Deleted: projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/service-beans.xml
===================================================================
--- projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/service-beans.xml	2007-11-12 10:49:43 UTC (rev 66951)
+++ projects/microcontainer/trunk/docs/examples/User_Guide/gettingStarted/commandLineClient/src/test/resources/service-beans.xml	2007-11-12 11:05:41 UTC (rev 66952)
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-            xsi:schemaLocation="urn:jboss:bean-deployer:2.0 bean-deployer_2_0.xsd"
-            xmlns="urn:jboss:bean-deployer:2.0">
-
-   <bean name="HRService" class="org.jboss.example.service.HRManager"/>
-      
-</deployment>




More information about the jboss-cvs-commits mailing list