Author: jsdelfino
Date: Wed Apr 26 12:10:00 2006
New Revision: 397274
URL: http://svn.apache.org/viewcvs?rev=397274&view=rev
Log:
Adding correct Apache file headers to some .java files
Modified:
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/builder/AsyncPolicyBuilder.java
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/invocation/AsyncInterceptor.java
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/work/DefaultWorkManager.java
incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/DefaultWorkManagerTestCase.java
incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/GeronimoWorkManagerTestCase.java
incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/generate/JavaGenerator.java
incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/plugin/JavaInterface2SDOGeneratorMojo.java
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/InteropDocClientTestCase.java
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LocalHostlnteropDocClientTestCase.java
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LoopbacklnteropDocClientTestCase.java
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/RemotelnteropDocClientTestCase.java
Modified:
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/builder/AsyncPolicyBuilder.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/builder/AsyncPolicyBuilder.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/builder/AsyncPolicyBuilder.java
(original)
+++
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/builder/AsyncPolicyBuilder.java
Wed Apr 26 12:10:00 2006
@@ -1,3 +1,19 @@
+/**
+ *
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
+ *
+ * Licensed 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.tuscany.core.async.builder;
import java.util.List;
@@ -11,8 +27,6 @@
import org.apache.tuscany.core.builder.system.PolicyBuilderRegistry;
import org.apache.tuscany.core.message.MessageFactory;
import org.apache.tuscany.core.system.annotation.Autowire;
-import org.apache.tuscany.core.wire.Interceptor;
-import org.apache.tuscany.core.wire.SourceInvocationConfiguration;
import org.apache.tuscany.core.wire.TargetInvocationConfiguration;
import org.apache.tuscany.core.wire.WireSourceConfiguration;
import org.apache.tuscany.core.wire.WireTargetConfiguration;
@@ -58,17 +72,10 @@
public void setMessageFactory(MessageFactory messageFactory) {
this.messageFactory = messageFactory;
}
-
- public void build(ConfiguredReference reference,
List<WireSourceConfiguration> configurations) throws BuilderException {
- for (WireSourceConfiguration wireSourceConfiguration : configurations)
{
- for (SourceInvocationConfiguration configuration :
wireSourceConfiguration.getInvocationConfigurations().values()) {
- if
(configuration.getMethod().getAnnotation(OneWay.class)!=null) {
- configuration.addInterceptor(new
AsyncInterceptor(workManager, messageFactory));
- }
- }
- }
- }
+ public void build(ConfiguredReference arg0, List<WireSourceConfiguration>
arg1) throws BuilderException {
+ }
+
public void build(ConfiguredService service, WireTargetConfiguration
wireTargetConfiguration) throws BuilderException {
for (TargetInvocationConfiguration configuration :
wireTargetConfiguration.getInvocationConfigurations().values()) {
if (configuration.getMethod().getAnnotation(OneWay.class)!=null) {
Modified:
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/invocation/AsyncInterceptor.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/invocation/AsyncInterceptor.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/invocation/AsyncInterceptor.java
(original)
+++
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/invocation/AsyncInterceptor.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/work/DefaultWorkManager.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/work/DefaultWorkManager.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/work/DefaultWorkManager.java
(original)
+++
incubator/tuscany/sandbox/sebastien/java/sca/async/src/main/java/org/apache/tuscany/core/async/work/DefaultWorkManager.java
Wed Apr 26 12:10:00 2006
@@ -1,8 +1,6 @@
-package org.apache.tuscany.core.async.work;
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -16,6 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+package org.apache.tuscany.core.async.work;
import javax.resource.spi.work.WorkManager;
Modified:
incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/DefaultWorkManagerTestCase.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/DefaultWorkManagerTestCase.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/DefaultWorkManagerTestCase.java
(original)
+++
incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/DefaultWorkManagerTestCase.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/GeronimoWorkManagerTestCase.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/GeronimoWorkManagerTestCase.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/GeronimoWorkManagerTestCase.java
(original)
+++
incubator/tuscany/sandbox/sebastien/java/sca/async/src/test/java/org/apache/tuscany/core/async/work/GeronimoWorkManagerTestCase.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/generate/JavaGenerator.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/generate/JavaGenerator.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/generate/JavaGenerator.java
(original)
+++
incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/generate/JavaGenerator.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/plugin/JavaInterface2SDOGeneratorMojo.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/plugin/JavaInterface2SDOGeneratorMojo.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/plugin/JavaInterface2SDOGeneratorMojo.java
(original)
+++
incubator/tuscany/sandbox/sebastien/java/sdo/plugin-java2sdo/src/main/java/org/apache/tuscany/java2sdo/plugin/JavaInterface2SDOGeneratorMojo.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/InteropDocClientTestCase.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/InteropDocClientTestCase.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/InteropDocClientTestCase.java
(original)
+++
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/InteropDocClientTestCase.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LocalHostlnteropDocClientTestCase.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LocalHostlnteropDocClientTestCase.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LocalHostlnteropDocClientTestCase.java
(original)
+++
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LocalHostlnteropDocClientTestCase.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LoopbacklnteropDocClientTestCase.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LoopbacklnteropDocClientTestCase.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LoopbacklnteropDocClientTestCase.java
(original)
+++
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/LoopbacklnteropDocClientTestCase.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/RemotelnteropDocClientTestCase.java
URL:
http://svn.apache.org/viewcvs/incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/RemotelnteropDocClientTestCase.java?rev=397274&r1=397273&r2=397274&view=diff
==============================================================================
---
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/RemotelnteropDocClientTestCase.java
(original)
+++
incubator/tuscany/sandbox/sebastien/test/interop.client/src/test/java/org/apache/tuscany/binding/axis2/test/interopdoc/client/RemotelnteropDocClientTestCase.java
Wed Apr 26 12:10:00 2006
@@ -1,7 +1,6 @@
/**
*
- * Copyright 2005 BEA Systems Inc.
- * Copyright 2005 International Business Machines Corporation
+ * Copyright 2005 The Apache Software Foundation or its licensors, as
applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.