You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by le...@apache.org on 2014/07/24 21:56:11 UTC

svn commit: r1613264 [2/2] - in /oodt/trunk: ./ commons/ commons/src/main/java/org/apache/oodt/commons/database/ filemgr/ filemgr/src/main/java/org/apache/oodt/cas/filemgr/catalog/ filemgr/src/main/java/org/apache/oodt/cas/filemgr/validation/ filemgr/s...

Added: oodt/trunk/filemgr/src/test/resources/examples/geo/elements.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/filemgr/src/test/resources/examples/geo/elements.xml?rev=1613264&view=auto
==============================================================================
--- oodt/trunk/filemgr/src/test/resources/examples/geo/elements.xml (added)
+++ oodt/trunk/filemgr/src/test/resources/examples/geo/elements.xml Thu Jul 24 19:56:10 2014
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<cas:elements xmlns:cas="http://oodt.apache.org/components/cas">
+  <element id="urn:oodt:Latitude" name="Latitude">
+    <!--
+      You can optionally specify a 'trim' tag to identify whether or not you
+      want newlines trimmed from the element description. To turn off trimming
+      (now done by default), include the following with your description
+      definition: trim="false"
+    -->
+    <description>
+      Geographical latitude data for a product.
+    </description>
+    <dcElement />
+  </element>
+  <element id="urn:oodt:Longitude" name="Longitude">
+    <description>
+      Geographical longitude data for a product.
+    </description>
+    <dcElement />
+  </element>
+</cas:elements>

Added: oodt/trunk/filemgr/src/test/resources/examples/geo/product-type-element-map.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/filemgr/src/test/resources/examples/geo/product-type-element-map.xml?rev=1613264&view=auto
==============================================================================
--- oodt/trunk/filemgr/src/test/resources/examples/geo/product-type-element-map.xml (added)
+++ oodt/trunk/filemgr/src/test/resources/examples/geo/product-type-element-map.xml Thu Jul 24 19:56:10 2014
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<cas:producttypemap xmlns:cas="http://oodt.apache.org/components/cas">
+  <!--
+    You can set the "parent" attribute on types below to allow inheritance of
+    elements between the types.
+  -->
+  <type id="urn:oodt:LocationAwareProduct" parent="urn:oodt:GenericFile">
+    <element id="urn:oodt:Latitude"/>
+    <element id="urn:oodt:Longitude"/>
+  </type>
+</cas:producttypemap>

Added: oodt/trunk/filemgr/src/test/resources/examples/geo/product-types.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/filemgr/src/test/resources/examples/geo/product-types.xml?rev=1613264&view=auto
==============================================================================
--- oodt/trunk/filemgr/src/test/resources/examples/geo/product-types.xml (added)
+++ oodt/trunk/filemgr/src/test/resources/examples/geo/product-types.xml Thu Jul 24 19:56:10 2014
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<cas:producttypes xmlns:cas="http://oodt.apache.org/components/cas">
+  <type id="urn:oodt:LocationAwareProduct" name="LocationAwareProduct">
+    <repository path="file://[HOME]/files"/>
+    <versioner class="org.apache.oodt.cas.filemgr.versioning.BasicVersioner"/>
+    <!--
+      You can optionally specify a 'trim' tag to identify whether or not you
+      want newlines trimmed from the product type description.  To turn off
+      trimming (now done by default), include the following attribute with
+      your description definition: trim="false"
+    -->
+    <description>A product type with location metadata.</description>
+    <!--
+      Global aggregate product type metadata: you can declare this in the
+      same way you'd wire together a CAS met file, even using multiple values
+      per key.
+      
+      This metadata can be looked up via the Product Type API, and also used
+      in browsers and so forth to display global metadata about the collection
+      of Products part of this product type.
+    -->
+    <metadata>
+      <keyval>
+        <key>ProductType</key>
+        <val>LocationAwareProduct</val>
+      </keyval>
+      <!-- if you are using the org.apache.oodt.cas.filemgr.versioning.ProductTypeMetVersioner 
+           you can set a met key like below to define your filePathSpec
+      <keyval>
+        <key>filePathSpec</key>
+        <val>/[Filename]</val>
+      </keyval>
+      -->      
+    </metadata>
+    <metExtractors>
+      <extractor
+        class="org.apache.oodt.cas.filemgr.metadata.extractors.CoreMetExtractor">
+        <configuration>
+          <!--
+            You can optionally include the envReplace tag to turn on/off
+            environment var replacement.
+          -->
+          <property name="nsAware" value="true" />
+          <property name="elementNs" value="CAS" />
+          <property name="elements"
+            value="ProductReceivedTime,ProductName,ProductId" />
+        </configuration>
+      </extractor>
+      <extractor class="org.apache.oodt.cas.filemgr.metadata.extractors.examples.MimeTypeExtractor" />
+      <extractor
+        class="org.apache.oodt.cas.filemgr.metadata.extractors.examples.FinalFileLocationExtractor">
+        <configuration>
+          <!--
+            This property specifies whether you want the FILE_LOCATION field
+            computed by this extractor to replace any other FILE_LOCATION met
+            attribute.
+          -->
+          <property name="replace" value="true"/>
+        </configuration>
+      </extractor>
+    </metExtractors>
+  </type>
+</cas:producttypes>

Added: oodt/trunk/filemgr/src/test/resources/examples/trace/elements.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/filemgr/src/test/resources/examples/trace/elements.xml?rev=1613264&view=auto
==============================================================================
--- oodt/trunk/filemgr/src/test/resources/examples/trace/elements.xml (added)
+++ oodt/trunk/filemgr/src/test/resources/examples/trace/elements.xml Thu Jul 24 19:56:10 2014
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<cas:elements xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas">
+   <element id="urn:oodt:InputFiles" name="InputFiles">
+        <!--  
+         You can optionally specify a 'trim' tag to identify whether
+         or not you want newlines trimmed from the element description. To
+         turn off trimming (now done by default), include the following with your
+         description definition: trim="false"       
+         -->   
+       <description>The set of input files that went into producing this file.</description>
+       <dcElement/>
+   </element>
+   <element id="urn:oodt:OutputFiles" name="OutputFiles">
+        <description>The set of output files that included this file in its input.</description>
+        <dcElement/>
+   </element>
+   
+   <element id="urn:oodt:JobId" name="JobId">
+       <description>The unique identifier generated by the workflow manager for the job
+       that produced this file.</description>
+       <dcElement/>   
+   </element>
+   
+   <element id="urn:oodt:ProductionDateTime" name="ProductionDateTime">
+       <description>The date/time stamp that this file was produced either by ingestion 
+       or processing.</description>
+       <dcElement/>
+   </element>
+   
+   <element id="urn:oodt:ExecutablePathnames" name="ExecutablePathnames">
+    <description>The pathnames to the exectuables used to generate this product.</description>
+    <dcElement/>
+  </element>
+
+  <element id="urn:oodt:ExecutableVersions" name="ExecutableVersions">
+    <description>The versions of the exectuables used to generate this product.</description>
+    <dcElement/>
+  </element>
+
+  <element id="urn:oodt:ApplicationSuccessFlag" name="ApplicationSuccessFlag">
+    <description>An indication of whether the generating application completed
+      successfully.</description>
+    <dcElement/>
+  </element>
+  
+  <element id="urn:oodt:TaskSuccessFlag" name="TaskSuccessFlag">
+    <description>An indication of whether the PCS Workflow Task that ran the PGE completed
+      successfully.</description>
+    <dcElement/>
+  </element>
+
+  <element id="urn:oodt:JobSuccessFlag" name="JobSuccessFlag">
+    <description>An indication of whether the PCS job ran by the PCS to create the product completed
+      successfully.</description>
+    <dcElement/>
+  </element>
+  
+  <element id="urn:oodt:PGEVersion" name="PGEVersion">
+    <description>Captures the version of the algorithm that has been run on the data.</description>
+    <dcElement/>
+  </element>
+
+  <element id="urn:oodt:ProcessingNode" name="ProcessingNode">
+    <description>The node that the job that produced this product was run on.</description>
+    <dcElement/>
+  </element>
+     
+ <element id="urn:oodt:ExecutionTime" name="ExecutionTime">
+    <description>The amount of time that the job that produced this product took to run.</description>
+    <dcElement/>
+ </element>
+
+  <element id="urn:oodt:CmdLineParameters" name="CmdLineParameters">
+    <description>The command line parameters that were used to invoke this job.</description>
+    <dcElement/>
+  </element>  
+    
+   
+</cas:elements>

Added: oodt/trunk/filemgr/src/test/resources/examples/trace/product-type-element-map.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/filemgr/src/test/resources/examples/trace/product-type-element-map.xml?rev=1613264&view=auto
==============================================================================
--- oodt/trunk/filemgr/src/test/resources/examples/trace/product-type-element-map.xml (added)
+++ oodt/trunk/filemgr/src/test/resources/examples/trace/product-type-element-map.xml Thu Jul 24 19:56:10 2014
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<cas:producttypemap xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas">
+ <!--  can set the "parent" attribute on types below to allow inheritance
+       of elements between the types 
+  -->
+  <type id="urn:oodt:TraceableFile" parent="urn:oodt:GenericFile">
+       <element id="urn:oodt:InputFiles"/>
+       <element id="urn:oodt:OutputFiles"/>
+       <element id="urn:oodt:JobId"/>
+       <element id="urn:oodt:ProductionDateTime"/>
+       <element id="urn:oodt:ExecutablePathnames"/> 
+       <element id="urn:oodt:ExecutableVersions"/>
+       <element id="urn:oodt:ApplicationSuccessFlag"/>
+       <element id="urn:oodt:TaskSuccessFlag" />
+       <element id="urn:oodt:JobSuccessFlag"/>
+       <element id="urn:oodt:PGEVersion"/>
+       <element id="urn:oodt:ProcessingNode"/>
+       <element id="urn:oodt:ExecutionTime" />
+       <element id="urn:oodt:CmdLineParameters"/>       
+  </type>
+</cas:producttypemap>

Added: oodt/trunk/filemgr/src/test/resources/examples/trace/product-types.xml
URL: http://svn.apache.org/viewvc/oodt/trunk/filemgr/src/test/resources/examples/trace/product-types.xml?rev=1613264&view=auto
==============================================================================
--- oodt/trunk/filemgr/src/test/resources/examples/trace/product-types.xml (added)
+++ oodt/trunk/filemgr/src/test/resources/examples/trace/product-types.xml Thu Jul 24 19:56:10 2014
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<cas:producttypes xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas">
+  <type id="urn:oodt:TraceableFile" name="TraceableFile">
+    <repository path="file://[HOME]/files"/>
+    <versioner class="org.apache.oodt.cas.filemgr.versioning.BasicVersioner"/>
+    <!--                                                                                                                                                            
+     You can optionally specify a 'trim' tag to identify whether                                                                                                    
+     or not you want newlines trimmed from the product type description. To                                                                                         
+     turn off trimming (now done by default), include the following attribute with your                                                                             
+     description definition: trim="false"                                                                                                                           
+     -->
+    <description>A traceable product for use in provenance and algorithm execution.</description>
+    <!--
+      Global aggregate product type metadata: you can declare this in the
+      same way you'd wire together a CAS met file, even using multiple values
+      per key.
+      
+      This metadata can be looked up via the Product Type API, and also used
+      in browsers and so forth to display global metadata about the collection
+      of Products part of this product type.
+    -->
+    <metadata>
+      <keyval>
+        <key>ProductType</key>
+        <val>LocationAwareProduct</val>
+      </keyval>
+      <!-- if you are using the org.apache.oodt.cas.filemgr.versioning.ProductTypeMetVersioner 
+           you can set a met key like below to define your filePathSpec
+      <keyval>
+        <key>filePathSpec</key>
+        <val>/[Filename]</val>
+      </keyval>
+      -->      
+    </metadata>
+    <metExtractors>
+      <extractor
+        class="org.apache.oodt.cas.filemgr.metadata.extractors.CoreMetExtractor">
+        <configuration>
+          <!--  you can optionally include the envReplace tag to turn on/off environment var replacement -->
+          <property name="nsAware" value="true" />
+          <property name="elementNs" value="CAS" />
+          <property name="elements"
+            value="ProductReceivedTime,ProductName,ProductId" />
+        </configuration>
+      </extractor>
+      <extractor class="org.apache.oodt.cas.filemgr.metadata.extractors.examples.MimeTypeExtractor" />
+      <extractor class="org.apache.oodt.cas.filemgr.metadata.extractors.examples.FinalFileLocationExtractor">
+        <configuration>
+          <!-- this property specifies whether you want the FILE_LOCATION field                                                                                     
+               computed by this extractor to replace any other FILE_LOCATION met                                                                                    
+               attribute.                                                                                                                                           
+           -->
+           <property name="replace" value="true"/>
+        </configuration>
+      </extractor>
+    </metExtractors>
+  </type>
+</cas:producttypes>

Modified: oodt/trunk/filemgr/src/test/resources/filemgr.properties
URL: http://svn.apache.org/viewvc/oodt/trunk/filemgr/src/test/resources/filemgr.properties?rev=1613264&r1=1613263&r2=1613264&view=diff
==============================================================================
--- oodt/trunk/filemgr/src/test/resources/filemgr.properties (original)
+++ oodt/trunk/filemgr/src/test/resources/filemgr.properties Thu Jul 24 19:56:10 2014
@@ -52,7 +52,7 @@ org.apache.oodt.cas.filemgr.catalog.data
 
 
 # mapped data source catalog configuration
-org.apache.oodt.cas.filemgr.catalog.mappeddatasource.mapFile=/path/to/ops.catalog.typemap.properties
+org.apache.oodt.cas.filemgr.catalog.mappeddatasource.mapFile=testcatalog.typemap.properties
 
 # science data catalog configuration
 org.apache.oodt.cas.filemgr.catalog.science.jdbc.url=jdbc:hsqldb:hsql://localhost/test
@@ -123,162 +123,7 @@ org.apache.oodt.cas.filemgr.datatransfer
 org.apache.oodt.cas.filemgr.datatransfer.s3.secret.key=s3_secret_key
 
 # location of Mime-Type repository
-org.apache.oodt.cas.filemgr.mime.type.repository=file:/src/mime-types.xml
-
-# tells the file manager system layer to include product instance metadata
-# NOTE: here are the expected field mappings
-#
-#      product.getProductId() -> ProductId
-#      product.getProductName() -> ProductName
-#      product.getProductStructure() -> ProductStructure
-#      product.getTransferStatus() -> ProductTransferStatus
-#      product.getRootRef() -> ProductRootReference
-
-# for the references returned by product.getProductReferences() the following 
-# metadata fields will be added (order will be maintained, such that data store 
-# ref at index 0 will map to orig ref at index 0, etc.)
-#
-#      ProductDataStoreReferences (list of all data store references: 
-#       note already translated into path, not URI)
-#      ProductOrigReferences (list of all orig references: 
-#       note already translated into path, not URI)
-#      ProductMimeType (list of all references' mime-types)
-#      ProductFileSize (list of all references' file sizes)
-
-org.apache.oodt.cas.filemgr.metadata.expandProduct=false
-
-# ConfigurableMetadataBasedVersioning configuration
-#org.apache.oodt.cas.filemgr.versioning.configuration.all_product_types=[Year]/[Month]/[Filename]
-#org.apache.oodt.cas.filemgr.versioning.configuration.<product_type>=[Year]/[Month]/[Filename]
-
-# Enable to use only server-side versioning.
-#org.apache.oodt.cas.filemgr.serverside.versioning=true
-#  Licensed to the Apache Software Foundation (ASF) under one or more
-#  contributor license agreements.  See the NOTICE file distributed with
-#  this work for additional information regarding copyright ownership.
-#  The ASF licenses this file to You under the Apache License, Version 2.0
-#  (the "License"); you may not use this file except in compliance with
-#  the License.  You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-#  Unless required by applicable law or agreed to in writing, software
-#  distributed under the License is distributed on an "AS IS" BASIS,
-#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#  See the License for the specific language governing permissions and
-#  limitations under the License.
-
-# Test Configuration properties for the File Manager
-
-# repository factory
-filemgr.repository.factory=org.apache.oodt.cas.filemgr.repository.XMLRepositoryManagerFactory
-
-# catalog factory
-filemgr.catalog.factory=org.apache.oodt.cas.filemgr.catalog.LuceneCatalogFactory
-
-# data transfer factory
-filemgr.datatransfer.factory=org.apache.oodt.cas.filemgr.datatransfer.LocalDataTransferFactory
-
-# validation layer factory
-filemgr.validationLayer.factory=org.apache.oodt.cas.filemgr.validation.XMLValidationLayerFactory
-
-# xml rpc client configuration
-org.apache.oodt.cas.filemgr.system.xmlrpc.connectionTimeout.minutes=20
-org.apache.oodt.cas.filemgr.system.xmlrpc.requestTimeout.minutes=60
-#org.apache.oodt.cas.filemgr.system.xmlrpc.connection.retries=0
-#org.apache.oodt.cas.filemgr.system.xmlrpc.connection.retry.interval.seconds=3
-
-# data source catalog configuration
-org.apache.oodt.cas.filemgr.catalog.datasource.jdbc.url=jdbc:hsqldb:hsql://localhost/test
-org.apache.oodt.cas.filemgr.catalog.datasource.jdbc.user=sa
-org.apache.oodt.cas.filemgr.catalog.datasource.jdbc.pass=
-org.apache.oodt.cas.filemgr.catalog.datasource.jdbc.driver=org.hsqldb.jdbc.JDBCDriver
-org.apache.oodt.cas.filemgr.catalog.datasource.quoteFields=false
-org.apache.oodt.cas.filemgr.catalog.datasource.pageSize=20
-org.apache.oodt.cas.filemgr.catalog.datasource.cacheUpdateMinutes=5
-org.apache.oodt.cas.filemgr.catalog.datasource.orderedValues=false
-# set the following property to 'true' to allow dynamic metadata fields,
-# effectively bypassing the validation layer.
-# by default the property is false
-#org.apache.oodt.cas.filemgr.catalog.datasource.lenientFields=true
-# set the following property to true to enable the column "product_id"
-# in table "products" to be of type string
-#org.apache.oodt.cas.filemgr.catalog.datasource.productId.string=false
-
-
-# mapped data source catalog configuration
-org.apache.oodt.cas.filemgr.catalog.mappeddatasource.mapFile=/path/to/ops.catalog.typemap.properties
-
-# science data catalog configuration
-org.apache.oodt.cas.filemgr.catalog.science.jdbc.url=jdbc:hsqldb:hsql://localhost/test
-org.apache.oodt.cas.filemgr.catalog.science.jdbc.user=sa
-org.apache.oodt.cas.filemgr.catalog.science.jdbc.pass=
-org.apache.oodt.cas.filemgr.catalog.science.jdbc.driver=org.hsqldb.jdbc.JDBCDriver
-
-# lucene catalog configuration
-org.apache.oodt.cas.filemgr.catalog.lucene.idxPath=file:/testdata/
-org.apache.oodt.cas.filemgr.catalog.lucene.pageSize=20
-org.apache.oodt.cas.filemgr.catalog.lucene.commitLockTimeout.seconds=60
-org.apache.oodt.cas.filemgr.catalog.lucene.writeLockTimeout.seconds=60
-org.apache.oodt.cas.filemgr.catalog.lucene.mergeFactor=20
-
-# solr catalog configuration
-org.apache.oodt.cas.filemgr.catalog.solr.url=http://localhost:8983/solr
-#org.apache.oodt.cas.filemgr.catalog.solr.url=http://localhost:8080/solr
-org.apache.oodt.cas.filemgr.catalog.solr.productSerializer=org.apache.oodt.cas.filemgr.catalog.solr.DefaultProductSerializer
-org.apache.oodt.cas.filemgr.catalog.solr.productIdGenerator=org.apache.oodt.cas.filemgr.catalog.solr.UUIDProductIdGenerator
-#org.apache.oodt.cas.filemgr.catalog.solr.productIdGenerator=org.apache.oodt.cas.filemgr.catalog.solr.NameProductIdGenerator
-
-
-# data source repository manager configuration
-org.apache.oodt.cas.filemgr.repositorymgr.datasource.jdbc.url=jdbc:hsqldb:hsql://localhost/test
-org.apache.oodt.cas.filemgr.repositorymgr.datasource.jdbc.user=sa
-org.apache.oodt.cas.filemgr.repositorymgr.datasource.jdbc.pass=
-org.apache.oodt.cas.filemgr.repositorymgr.datasource.jdbc.driver=org.hsqldb.jdbc.JDBCDriver
-
-# science data repository manager configuration
-org.apache.oodt.cas.filemgr.repositorymgr.science.jdbc.url=jdbc:hsqldb:hsql://localhost/test
-org.apache.oodt.cas.filemgr.repositorymgr.science.jdbc.user=sa
-org.apache.oodt.cas.filemgr.repositorymgr.science.jdbc.pass=
-org.apache.oodt.cas.filemgr.repositorymgr.science.jdbc.driver=org.hsqldb.jdbc.JDBCDriver
-
-# XML repository manager configuration
-org.apache.oodt.cas.filemgr.repositorymgr.dirs=file:///dir1,file:///dir2
-
-# XML validation layer configuration
-org.apache.oodt.cas.filemgr.validation.dirs=file:///dir1,file:///dir2
-
-# set the following property to 'true' to allow dynamic metadata fields,
-# effectively bypassing the validation layer.
-# by default the property is false
-#org.apache.oodt.cas.filemgr.catalog.lucene.lenientFields=true
-
-# data source validation layer configuration
-org.apache.oodt.cas.filemgr.validation.datasource.jdbc.url=jdbc:hsqldb:hsql://localhost/test
-org.apache.oodt.cas.filemgr.validation.datasource.jdbc.user=sa
-org.apache.oodt.cas.filemgr.validation.datasource.jdbc.pass=
-org.apache.oodt.cas.filemgr.validation.datasource.jdbc.driver=org.hsqldb.jdbc.JDBCDriver
-org.apache.oodt.cas.filemgr.validation.datasource.quoteFields=false
-
-# science data validation layer configuration
-org.apache.oodt.cas.filemgr.validation.science.jdbc.url=jdbc:hsqldb:hsql://localhost/test
-org.apache.oodt.cas.filemgr.validation.science.jdbc.user=sa
-org.apache.oodt.cas.filemgr.validation.science.jdbc.pass=
-org.apache.oodt.cas.filemgr.validation.science.jdbc.driver=org.hsqldb.jdbc.JDBCDriver
-
-# remote data transfer configuration
-org.apache.oodt.cas.filemgr.datatransfer.remote.chunkSize=1024
-
-# Amazon S3 data transfer configuration.
-# Region can be any of the values found here:
-#   http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/regions/Regions.html
-org.apache.oodt.cas.filemgr.datatransfer.s3.bucket.name=some_bucket_name
-org.apache.oodt.cas.filemgr.datatransfer.s3.region=EU_WEST_1
-org.apache.oodt.cas.filemgr.datatransfer.s3.access.key=s3_access_key
-org.apache.oodt.cas.filemgr.datatransfer.s3.secret.key=s3_secret_key
-
-# location of Mime-Type repository
-org.apache.oodt.cas.filemgr.mime.type.repository=file:/src/mime-types.xml
+org.apache.oodt.cas.filemgr.mime.type.repository=mime-types.xml
 
 # tells the file manager system layer to include product instance metadata
 # NOTE: here are the expected field mappings