[jboss-svn-commits] JBL Code SVN: r13074 - in labs/jbossesb/trunk/product/services/soap: src/main/java/org/jboss/soa/esb/actions/soap and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Jul 4 08:32:46 EDT 2007


Author: tfennelly
Date: 2007-07-04 08:32:46 -0400 (Wed, 04 Jul 2007)
New Revision: 13074

Modified:
   labs/jbossesb/trunk/product/services/soap/base-project-build.xml
   labs/jbossesb/trunk/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/SOAPProcessor.java
Log:
javadoc updates

Modified: labs/jbossesb/trunk/product/services/soap/base-project-build.xml
===================================================================
--- labs/jbossesb/trunk/product/services/soap/base-project-build.xml	2007-07-04 12:17:52 UTC (rev 13073)
+++ labs/jbossesb/trunk/product/services/soap/base-project-build.xml	2007-07-04 12:32:46 UTC (rev 13074)
@@ -10,91 +10,101 @@
     from services to copy the new version down to the project directories.
     
      -->
-	<dirname property="services.dir" file="${ant.file.base-build}"/>
-	<property file="${services.dir}/build.properties"/>
-    
-	<target name="clean">
-		<delete dir="build" />
-	</target>
-	
-	<target name="prepare" depends="clean">
-		<mkdir dir="build/${ant.project.name}.esb/META-INF" />
-		<mkdir dir="build/classes" />
-	</target>
-	
-	<path id="classpath">
-		<pathelement location="build/${ant.project.name}.esb" />
-		<pathelement location="build/classes" />
-		<pathelement location="build/test/classes" />
-		<fileset dir="lib/ext" includes="*.jar" />
-		<fileset dir="lib/ext/build-time" includes="*.jar" />
-		<fileset dir="${esb.product.lib.dir}" includes="*.jar" /> <!-- Product Jars. -->
-		<pathelement location="src/test/resources"/>
-        <fileset dir="../../lib/ext" includes="jboss-system.jar" />
-	</path>
-	
-	<target name="echoCP">
-		<property name="cp" refid="classpath" />
-		<echo message="Classpath is ${cp}" />
-	</target>
+    <dirname property="services.dir" file="${ant.file.base-build}"/>
+    <property file="${services.dir}/build.properties"/>
 
+    <target name="clean">
+        <delete dir="build"/>
+    </target>
+
+    <target name="prepare" depends="clean">
+        <mkdir dir="build/${ant.project.name}.esb/META-INF"/>
+        <mkdir dir="build/classes"/>
+    </target>
+
+    <path id="classpath">
+        <pathelement location="build/${ant.project.name}.esb"/>
+        <pathelement location="build/classes"/>
+        <pathelement location="build/test/classes"/>
+        <fileset dir="lib/ext" includes="*.jar"/>
+        <fileset dir="lib/ext/build-time" includes="*.jar"/>
+        <fileset dir="${esb.product.lib.dir}" includes="*.jar"/>
+        <!-- Product Jars. -->
+        <pathelement location="src/test/resources"/>
+        <fileset dir="../../lib/ext" includes="jboss-system.jar"/>
+    </path>
+
+    <target name="echoCP">
+        <property name="cp" refid="classpath"/>
+        <echo message="Classpath is ${cp}"/>
+    </target>
+
     <target name="check.for.files">
-	    <fileset id="fs" dir="build/classes"/>
-	    <condition property="dir_empty">
-	        <length length="0">
-	    		<fileset refid="fs"/>
-	  		</length>
-	  </condition>
+        <fileset id="fs" dir="build/classes"/>
+        <condition property="dir_empty">
+            <length length="0">
+                <fileset refid="fs"/>
+            </length>
+        </condition>
     </target>
-    
-	<target name="compile" depends="prepare">
-		<javac srcdir="src/main/java" destdir="build/classes" debug="on" >
-			<classpath refid="classpath" />
-		</javac>
-	</target>
-	
-	<target name="jar" depends="compile,check.for.files" unless="dir_empty">
-		<jar basedir="build/classes" destfile="build/jbossesb-${ant.project.name}.jar" includes="**/*.class"/>
-	</target>
 
+    <target name="compile" depends="prepare">
+        <javac srcdir="src/main/java" destdir="build/classes" debug="on">
+            <classpath refid="classpath"/>
+        </javac>
+    </target>
+
+    <target name="jar" depends="compile,check.for.files" unless="dir_empty">
+        <jar basedir="build/classes" destfile="build/jbossesb-${ant.project.name}.jar" includes="**/*.class"/>
+    </target>
+
+    <target name="javadoc">
+        <mkdir dir="build/javadoc"/>
+        <javadoc destdir="build/javadoc" windowtitle="JBossESB SOAP Service" classpathref="classpath">
+            <packageset dir="src/main/java">
+                <include name="**/*"/>
+            </packageset>
+        </javadoc>
+    </target>
+
     <target name="esb" depends="jar">
-        <copy todir="build/${ant.project.name}.esb/" >
-        	<fileset dir="lib/ext" includes="*.jar"/>
-        	<fileset dir="src/main/resources/"/>
-        	<fileset dir="build" includes="*.jar"/>
-         </copy>
+        <copy todir="build/${ant.project.name}.esb/">
+            <fileset dir="lib/ext" includes="*.jar"/>
+            <fileset dir="src/main/resources/"/>
+            <fileset dir="build" includes="*.jar"/>
+        </copy>
     </target>
-	
-	<target name="dist" depends="esb">
-		<!-- copying to jbossesb/lib -->
-    	<mkdir dir="${esb.product.lib.dir}/${ant.project.name}.esb"/>
-    	<copy todir="${esb.product.lib.dir}/${ant.project.name}.esb">
-    		<fileset dir="build/${ant.project.name}.esb" />
-    	</copy>
-	</target>
-    
+
+    <target name="dist" depends="esb">
+        <!-- copying to jbossesb/lib -->
+        <mkdir dir="${esb.product.lib.dir}/${ant.project.name}.esb"/>
+        <copy todir="${esb.product.lib.dir}/${ant.project.name}.esb">
+            <fileset dir="build/${ant.project.name}.esb"/>
+        </copy>
+    </target>
+
     <target name="base.test" depends="esb">
-    	<mkdir dir="build/test/classes"/>
-    	<mkdir dir="build/test/report"/>
-    	<javac srcdir="src/test/java" destdir="build/test/classes" debug="on" >
-			<classpath refid="classpath" />
-		</javac>
-    	<copy todir="build/test/classes" >
-    		<fileset dir="src/test/java" includes="**/*.xml" />
-    	</copy>
-		<junit fork="yes" haltonfailure="true" haltonerror="true" showoutput="off">
-			<formatter type="plain" usefile="false" />
-			<classpath>
+        <mkdir dir="build/test/classes"/>
+        <mkdir dir="build/test/report"/>
+        <javac srcdir="src/test/java" destdir="build/test/classes" debug="on">
+            <classpath refid="classpath"/>
+        </javac>
+        <copy todir="build/test/classes">
+            <fileset dir="src/test/java" includes="**/*.xml"/>
+        </copy>
+        <junit fork="yes" haltonfailure="true" haltonerror="true" showoutput="off">
+            <formatter type="plain" usefile="false"/>
+            <classpath>
                 <path refid="classpath"/>
-                <pathelement location="src/test/java" />
+                <pathelement location="src/test/java"/>
             </classpath>
-			<sysproperty key="log4j.configuration" value="log4j.xml" />
-			<test name="${testcase}" if="testcase" />
-			<batchtest unless="testcase" todir="build/test/report">
-				<fileset dir="build/test/classes" includes="**/*Test.class" />
-			</batchtest>
-		</junit>
+            <sysproperty key="log4j.configuration" value="log4j.xml"/>
+            <test name="${testcase}" if="testcase"/>
+            <batchtest unless="testcase" todir="build/test/report">
+                <fileset dir="build/test/classes" includes="**/*Test.class"/>
+            </batchtest>
+        </junit>
     </target>
-	
 
+
 </project>
\ No newline at end of file

Modified: labs/jbossesb/trunk/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/SOAPProcessor.java
===================================================================
--- labs/jbossesb/trunk/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/SOAPProcessor.java	2007-07-04 12:17:52 UTC (rev 13073)
+++ labs/jbossesb/trunk/product/services/soap/src/main/java/org/jboss/soa/esb/actions/soap/SOAPProcessor.java	2007-07-04 12:32:46 UTC (rev 13074)
@@ -66,10 +66,10 @@
  *
  * <div style="margin-left: 20">
  * <h4>JAXB Introductions</h4>
- * The naitive JBossWS SOAP stack uses JAXB to bind to and from SOAP.  This typically means that an unannotated typeset
+ * The native JBossWS SOAP stack uses JAXB to bind to and from SOAP.  This typically means that an unannotated typeset
  * could not be used to build a JSR 181 endpoint on JBossWS.  To overcome this we use a JBossESB and JBossWS feature
  * called "JAXB Introductions" which basically means you can define an XML configuration to "Introduce" the JAXB Annotations.
- * For more on this, see the Webservices Guide.
+ * For more on this, see the section on this action in the Message Action Guide.
  * </div>
  *
  * <h3>Action Configuration</h3>




More information about the jboss-svn-commits mailing list