You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by bf...@apache.org on 2014/10/10 10:18:19 UTC

svn commit: r1630712 - /oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/filerestrictions/parsers/GenericEmailParser.java

Author: bfoster
Date: Fri Oct 10 08:18:18 2014
New Revision: 1630712

URL: http://svn.apache.org/r1630712
Log:
- Allow for pushpull fileretriction parsered metadata to be used in renaming convention
-----------
OODT-760

Modified:
    oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/filerestrictions/parsers/GenericEmailParser.java

Modified: oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/filerestrictions/parsers/GenericEmailParser.java
URL: http://svn.apache.org/viewvc/oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/filerestrictions/parsers/GenericEmailParser.java?rev=1630712&r1=1630711&r2=1630712&view=diff
==============================================================================
--- oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/filerestrictions/parsers/GenericEmailParser.java (original)
+++ oodt/trunk/pushpull/src/main/java/org/apache/oodt/cas/pushpull/filerestrictions/parsers/GenericEmailParser.java Fri Oct 10 08:18:18 2014
@@ -163,6 +163,6 @@ public class GenericEmailParser implemen
   }
 
   private String loadMetadataKey(String key) {
-    return System.getProperty(METADATA_KEYS);
+    return System.getProperty(METADATA_KEY_PREFIX + key);
   }
 }