From 9e32de2812abb58772b752140d07d0a1513f0a48 Mon Sep 17 00:00:00 2001 From: Bosanac Dejan Date: Tue, 10 Aug 2010 14:42:06 +0000 Subject: [PATCH] adding license headers git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@984057 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/resources/features.xml | 19 +++++++++++++++++++ .../activemq/transport/discoveryagent/http | 13 +++++++++++++ .../activemq/hooks/SpringContextHook.java | 16 ++++++++++++++++ .../apache/activemq/spring/SpringTest.java | 16 ++++++++++++++++ .../java/org/apache/bugs/AMQ2754Test.java | 16 ++++++++++++++++ .../apache/activemq/web/JettyTestSupport.java | 16 ++++++++++++++++ .../org/apache/activemq/web/RestTest.java | 16 ++++++++++++++++ 7 files changed, 112 insertions(+) diff --git a/activemq-karaf/src/main/resources/features.xml b/activemq-karaf/src/main/resources/features.xml index f4fadfaab7..01337b8df5 100644 --- a/activemq-karaf/src/main/resources/features.xml +++ b/activemq-karaf/src/main/resources/features.xml @@ -1,3 +1,22 @@ + + mvn:org.apache.karaf/apache-karaf/${karaf-version}/xml/features diff --git a/activemq-optional/src/main/resources/META-INF/services/org/apache/activemq/transport/discoveryagent/http b/activemq-optional/src/main/resources/META-INF/services/org/apache/activemq/transport/discoveryagent/http index f7c63deea3..6c6ff93e5b 100644 --- a/activemq-optional/src/main/resources/META-INF/services/org/apache/activemq/transport/discoveryagent/http +++ b/activemq-optional/src/main/resources/META-INF/services/org/apache/activemq/transport/discoveryagent/http @@ -1,4 +1,17 @@ ## --------------------------------------------------------------------------- +## 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. ## --------------------------------------------------------------------------- class=org.apache.activemq.transport.discovery.http.HTTPDiscoveryAgentFactory diff --git a/activemq-spring/src/main/java/org/apache/activemq/hooks/SpringContextHook.java b/activemq-spring/src/main/java/org/apache/activemq/hooks/SpringContextHook.java index 955eaa4da1..01bdce155b 100644 --- a/activemq-spring/src/main/java/org/apache/activemq/hooks/SpringContextHook.java +++ b/activemq-spring/src/main/java/org/apache/activemq/hooks/SpringContextHook.java @@ -1,3 +1,19 @@ +/** + * 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.activemq.hooks; import org.apache.commons.logging.Log; diff --git a/activemq-spring/src/test/java/org/apache/activemq/spring/SpringTest.java b/activemq-spring/src/test/java/org/apache/activemq/spring/SpringTest.java index 89c5b0ee6f..e2a580df02 100644 --- a/activemq-spring/src/test/java/org/apache/activemq/spring/SpringTest.java +++ b/activemq-spring/src/test/java/org/apache/activemq/spring/SpringTest.java @@ -1,3 +1,19 @@ +/** + * 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.activemq.spring; import org.apache.activemq.broker.BrokerService; diff --git a/activemq-spring/src/test/java/org/apache/bugs/AMQ2754Test.java b/activemq-spring/src/test/java/org/apache/bugs/AMQ2754Test.java index eff156b2a1..a1f87a9d2a 100644 --- a/activemq-spring/src/test/java/org/apache/bugs/AMQ2754Test.java +++ b/activemq-spring/src/test/java/org/apache/bugs/AMQ2754Test.java @@ -1,3 +1,19 @@ +/** + * 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.bugs; import java.util.concurrent.Callable; diff --git a/activemq-web-demo/src/test/java/org/apache/activemq/web/JettyTestSupport.java b/activemq-web-demo/src/test/java/org/apache/activemq/web/JettyTestSupport.java index f99254bede..a833e367a2 100644 --- a/activemq-web-demo/src/test/java/org/apache/activemq/web/JettyTestSupport.java +++ b/activemq-web-demo/src/test/java/org/apache/activemq/web/JettyTestSupport.java @@ -1,3 +1,19 @@ +/** + * 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.activemq.web; import java.net.Socket; diff --git a/activemq-web-demo/src/test/java/org/apache/activemq/web/RestTest.java b/activemq-web-demo/src/test/java/org/apache/activemq/web/RestTest.java index 83ddc2ed42..4dd29c592e 100644 --- a/activemq-web-demo/src/test/java/org/apache/activemq/web/RestTest.java +++ b/activemq-web-demo/src/test/java/org/apache/activemq/web/RestTest.java @@ -1,3 +1,19 @@ +/** + * 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.activemq.web; import javax.jms.TextMessage;