Author: painter
Date: Wed Mar 20 14:33:35 2019
New Revision: 1855910

URL: http://svn.apache.org/viewvc?rev=1855910&view=rev
Log:
Update howto docs to reflect PipelineData

Modified:
    turbine/fulcrum/trunk/intake/xdocs/howto.xml

Modified: turbine/fulcrum/trunk/intake/xdocs/howto.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/xdocs/howto.xml?rev=1855910&r1=1855909&r2=1855910&view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/xdocs/howto.xml (original)
+++ turbine/fulcrum/trunk/intake/xdocs/howto.xml Wed Mar 20 14:33:35 2019
@@ -22,6 +22,7 @@
 
  <properties>
   <title>Fulcrum Intake Service</title>
+  <author email="[email protected]">Jeffery Painter</author>
   <author email="[email protected]">John McNally</author>
   <author email="[email protected]">Jon S. Stevens</author>
   <author email="[email protected]">Eric Pugh</author>
@@ -415,8 +416,11 @@ The Java Action code which handles the s
 </p>
 
 <source><![CDATA[
-public void doLogin( RunData data, Context context ) throws Exception
+public void doLogin( PipelineData pipelineData, Context context ) throws 
Exception
 {
+       // get a reference to the run data object
+       RunData data = (RunData) pipelineData;
+       
     IntakeTool intake = (IntakeTool) context.get("intake");
 
     if ( intake.isAllValid() &amp;&amp; checkUser(data, context) )
@@ -593,7 +597,7 @@ button), the following code in the Enter
 </p>
 
 <source><![CDATA[
-public void doEnter( RunData data, Context context ) throws Exception
+public void doEnter( PipelineData pipelineData, Context context ) throws 
Exception
 {
     IntakeTool intake = (IntakeTool)context
         .get(ScarabConstants.INTAKE_TOOL);
@@ -719,9 +723,12 @@ The action:
 </p>
 
 <source>
-public void doEnterissue( RunData data, Context context )
-    throws Exception
+public void doEnterissue( PipelineData pipelineData, Context context ) 
+       throws Exception
 {
+       // get a reference to the run data object
+       RunData data = (RunData) pipelineData;
+
     IntakeTool intake = (IntakeTool)context
         .get(ScarabConstants.INTAKE_TOOL);
 


Reply via email to