You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by ma...@apache.org on 2014/01/30 06:05:02 UTC

svn commit: r1562692 - in /oodt/trunk: CHANGES.txt pge/src/main/resources/examples/WorkflowTask/ pge/src/main/resources/examples/WorkflowTask/tasks.xml

Author: mattmann
Date: Thu Jan 30 05:05:01 2014
New Revision: 1562692

URL: http://svn.apache.org/r1562692
Log:
- fix for OODT-663 Sample CAS-PGE workflow task should be included in cas-pge

Added:
    oodt/trunk/pge/src/main/resources/examples/WorkflowTask/
    oodt/trunk/pge/src/main/resources/examples/WorkflowTask/tasks.xml
Modified:
    oodt/trunk/CHANGES.txt

Modified: oodt/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1562692&r1=1562691&r2=1562692&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Thu Jan 30 05:05:01 2014
@@ -4,6 +4,8 @@ Apache OODT Change Log
 Release 0.7 - Current Development
 ---------------------------------
 
+* OODT-663 Sample CAS-PGE workflow task should be included in cas-pge (mattmann)
+
 * OODT-661 Enabled case-insensitive specification of "OFSN" and "RT" parameter names
   (not values!) when issuing a request to the Product Server (luca)
 

Added: oodt/trunk/pge/src/main/resources/examples/WorkflowTask/tasks.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/pge/src/main/resources/examples/WorkflowTask/tasks.xml?rev=1562692&view=auto
==============================================================================
--- oodt/trunk/pge/src/main/resources/examples/WorkflowTask/tasks.xml (added)
+++ oodt/trunk/pge/src/main/resources/examples/WorkflowTask/tasks.xml Thu Jan 30 05:05:01 2014
@@ -0,0 +1,23 @@
+<!-- A sample CAS workflow task configuration with the basic set of 
+     CAS-PGE properties. You can find a full list of the properties
+     here:
+
+     http://svn.apache.org/repos/asf/oodt/trunk/pge/src/main/java/org/apache/oodt/cas/pge/metadata/PgeTaskMetKeys.java
+--> 
+<cas:workflowtasks xmlns:cas="http://oodt.apache.org/1.0/cas">
+<task id="urn:oodt:casPgeTask" name="CAS PGE" class="org.apache.oodt.cas.pge.StdPGETaskInstance">
+      <conditions/>
+      <configuration>
+         <property name="PGETask_Name" value="CAS PGE"/>
+         <property name="PGETask_ConfigFilePath" value="[PGE_HOME]/policy/pge-config.xml" envReplace="true"/>
+         <property name="PGETask_DumpMetadata" value="true"/>
+         <property name="PCS_WorkflowManagerUrl" value="[WORKFLOW_URL]" envReplace="true" />
+         <property name="PCS_FileManagerUrl" value="[FILEMGR_URL]" envReplace="true"/>
+         <property name="PCS_MetFileExtension" value="met"/>
+         <property name="PCS_ClientTransferServiceFactory" value="org.apache.oodt.cas.filemgr.datatransfer.LocalDataTransferFactory"/>
+         <property name="PCS_ActionRepoFile" value="file:[CRAWLER_HOME]/policy/crawler-config.xml" envReplace="true"/>
+      </configuration>
+      <requiredMetFields>
+      </requiredMetFields>
+</task>
+</cas:workflowtasks>
\ No newline at end of file