You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by ah...@apache.org on 2010/03/09 19:24:47 UTC

svn commit: r921041 - /incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/

Author: ahart
Date: Tue Mar  9 18:24:47 2010
New Revision: 921041

URL: http://svn.apache.org/viewvc?rev=921041&view=rev
Log:
progress towards OODT-3: added ASL headers to files in cas-filemgr

Modified:
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/AbstractCacheServerFactory.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Cache.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CacheFactory.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CachedIngester.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CmdLineIngester.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Ingester.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCache.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCacheFactory.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RemoteableCache.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCache.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheFactory.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServer.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServerFactory.java
    incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/StdIngester.java

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/AbstractCacheServerFactory.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/AbstractCacheServerFactory.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/AbstractCacheServerFactory.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/AbstractCacheServerFactory.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Cache.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Cache.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Cache.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Cache.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CacheFactory.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CacheFactory.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CacheFactory.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CacheFactory.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CachedIngester.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CachedIngester.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CachedIngester.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CachedIngester.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CmdLineIngester.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CmdLineIngester.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CmdLineIngester.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/CmdLineIngester.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,20 @@
-//Copyright (c) 2007, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
+
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Ingester.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Ingester.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Ingester.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/Ingester.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2007, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCache.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCache.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCache.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCache.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCacheFactory.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCacheFactory.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCacheFactory.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/LocalCacheFactory.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RemoteableCache.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RemoteableCache.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RemoteableCache.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RemoteableCache.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCache.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCache.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCache.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCache.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheFactory.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheFactory.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheFactory.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheFactory.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServer.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServer.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServer.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServer.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServerFactory.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServerFactory.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServerFactory.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/RmiCacheServerFactory.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2008, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;
 

Modified: incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/StdIngester.java
URL: http://svn.apache.org/viewvc/incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/StdIngester.java?rev=921041&r1=921040&r2=921041&view=diff
==============================================================================
--- incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/StdIngester.java (original)
+++ incubator/oodt/cas-filemgr/trunk/src/main/java/gov/nasa/jpl/oodt/cas/filemgr/ingest/StdIngester.java Tue Mar  9 18:24:47 2010
@@ -1,7 +1,19 @@
-//Copyright (c) 2007, California Institute of Technology.
-//ALL RIGHTS RESERVED. U.S. Government sponsorship acknowledged.
-//
-//$Id$
+/*
+ * 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.
+ */
 
 package gov.nasa.jpl.oodt.cas.filemgr.ingest;