Author: rr
Date: Thu May 27 12:46:16 2010
New Revision: 948808
URL: http://svn.apache.org/viewvc?rev=948808&view=rev
Log:
Fixed missing license headers for java files
Modified:
ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/ProcessCronCleanupTest.java
ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/SystemCronCleanupTest.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-api/src/main/java/org/apache/ode/bpel/iapi/ClusterAware.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-compiler/src/test/java/org/apache/ode/bpel/elang/xquery10/compiler/XQuery10ExpressionCompilerImplTest.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/DeferredProcessInstanceCleanable.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/FilteredInstanceDeletable.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessCleanUpRunnable.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/CronScheduler.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/RuntimeDataCleanupRunnable.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/SystemSchedulesConfig.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/MyRoleMessageExchangeImplTest.java
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/cron/CronSchedulerTest.java
ode/branches/APACHE_ODE_1.3.4.X/jbi/src/test/java/org/apache/ode/jbi/RetireJbiTest.java
ode/branches/APACHE_ODE_1.3.4.X/scheduler-simple/src/test/java/org/apache/ode/scheduler/simple/GeronimoDelegateSupport.java
ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/CronExpression.java
ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/RelativeDateParser.java
Modified:
ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/ProcessCronCleanupTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/ProcessCronCleanupTest.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/ProcessCronCleanupTest.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/ProcessCronCleanupTest.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.axis2.instancecleanup;
import org.apache.ode.bpel.dao.ProcessDAO;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/SystemCronCleanupTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/SystemCronCleanupTest.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/SystemCronCleanupTest.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/axis2-war/src/test/java/org/apache/ode/axis2/instancecleanup/SystemCronCleanupTest.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.axis2.instancecleanup;
import org.apache.commons.logging.LogFactory;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-api/src/main/java/org/apache/ode/bpel/iapi/ClusterAware.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-api/src/main/java/org/apache/ode/bpel/iapi/ClusterAware.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-api/src/main/java/org/apache/ode/bpel/iapi/ClusterAware.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-api/src/main/java/org/apache/ode/bpel/iapi/ClusterAware.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.iapi;
/**
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-compiler/src/test/java/org/apache/ode/bpel/elang/xquery10/compiler/XQuery10ExpressionCompilerImplTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-compiler/src/test/java/org/apache/ode/bpel/elang/xquery10/compiler/XQuery10ExpressionCompilerImplTest.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-compiler/src/test/java/org/apache/ode/bpel/elang/xquery10/compiler/XQuery10ExpressionCompilerImplTest.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-compiler/src/test/java/org/apache/ode/bpel/elang/xquery10/compiler/XQuery10ExpressionCompilerImplTest.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.elang.xquery10.compiler;
import java.util.Arrays;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/DeferredProcessInstanceCleanable.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/DeferredProcessInstanceCleanable.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/DeferredProcessInstanceCleanable.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/DeferredProcessInstanceCleanable.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.dao;
import java.io.Serializable;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/FilteredInstanceDeletable.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/FilteredInstanceDeletable.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/FilteredInstanceDeletable.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-dao/src/main/java/org/apache/ode/bpel/dao/FilteredInstanceDeletable.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.dao;
import java.util.Set;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessCleanUpRunnable.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessCleanUpRunnable.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessCleanUpRunnable.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/ProcessCleanUpRunnable.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.engine;
import java.io.Serializable;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/CronScheduler.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/CronScheduler.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/CronScheduler.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/CronScheduler.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.engine.cron;
import java.util.ArrayList;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/RuntimeDataCleanupRunnable.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/RuntimeDataCleanupRunnable.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/RuntimeDataCleanupRunnable.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/RuntimeDataCleanupRunnable.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.engine.cron;
import java.io.Serializable;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/SystemSchedulesConfig.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/SystemSchedulesConfig.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/SystemSchedulesConfig.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/cron/SystemSchedulesConfig.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.engine.cron;
import java.io.File;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/MyRoleMessageExchangeImplTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/MyRoleMessageExchangeImplTest.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/MyRoleMessageExchangeImplTest.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/MyRoleMessageExchangeImplTest.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.engine;
import java.util.Map;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/cron/CronSchedulerTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/cron/CronSchedulerTest.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/cron/CronSchedulerTest.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/bpel-runtime/src/test/java/org/apache/ode/bpel/engine/cron/CronSchedulerTest.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.bpel.engine.cron;
import java.util.HashMap;
@@ -90,4 +108,4 @@ public class CronSchedulerTest extends M
}
}
}
-}
\ No newline at end of file
+}
Modified:
ode/branches/APACHE_ODE_1.3.4.X/jbi/src/test/java/org/apache/ode/jbi/RetireJbiTest.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/jbi/src/test/java/org/apache/ode/jbi/RetireJbiTest.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/jbi/src/test/java/org/apache/ode/jbi/RetireJbiTest.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/jbi/src/test/java/org/apache/ode/jbi/RetireJbiTest.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.jbi;
public class RetireJbiTest extends JbiTestBase {
Modified:
ode/branches/APACHE_ODE_1.3.4.X/scheduler-simple/src/test/java/org/apache/ode/scheduler/simple/GeronimoDelegateSupport.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/scheduler-simple/src/test/java/org/apache/ode/scheduler/simple/GeronimoDelegateSupport.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/scheduler-simple/src/test/java/org/apache/ode/scheduler/simple/GeronimoDelegateSupport.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/scheduler-simple/src/test/java/org/apache/ode/scheduler/simple/GeronimoDelegateSupport.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.scheduler.simple;
import javax.sql.DataSource;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/CronExpression.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/CronExpression.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/CronExpression.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/CronExpression.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.utils;
import java.io.Serializable;
Modified:
ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/RelativeDateParser.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/RelativeDateParser.java?rev=948808&r1=948807&r2=948808&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/RelativeDateParser.java
(original)
+++
ode/branches/APACHE_ODE_1.3.4.X/utils/src/main/java/org/apache/ode/utils/RelativeDateParser.java
Thu May 27 12:46:16 2010
@@ -1,3 +1,21 @@
+/*
+ * 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 org.apache.ode.utils;
import java.text.ParseException;