diff options
| author | Arnaud Simon <arnaudsimon@apache.org> | 2007-11-20 11:05:51 +0000 |
|---|---|---|
| committer | Arnaud Simon <arnaudsimon@apache.org> | 2007-11-20 11:05:51 +0000 |
| commit | 232fad57ec5628b75e298e7d509c35a087794406 (patch) | |
| tree | 0b1efc9778eade7cccc4c9a3a27bbc40ad926703 /java/client/example/src | |
| parent | 90350acb97c7cf34b37dca9e5b347b29ebd64740 (diff) | |
| download | qpid-python-232fad57ec5628b75e298e7d509c35a087794406.tar.gz | |
changed imports
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@596614 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/example/src')
9 files changed, 69 insertions, 11 deletions
diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Consumer.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Consumer.java index 9ea6d715e1..c8bf5a43aa 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Consumer.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Consumer.java @@ -1,6 +1,26 @@ +/* + * + * 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.qpid.example.jmsexample.direct; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Listener.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Listener.java index f595cc0abc..6b3f32cd85 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Listener.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Listener.java @@ -1,6 +1,26 @@ +/* + * + * 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.qpid.example.jmsexample.direct; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Producer.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Producer.java index 2d80799bed..a00fc7286d 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Producer.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/direct/Producer.java @@ -1,6 +1,26 @@ +/* + * + * 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.qpid.example.jmsexample.direct; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/pubsub/Listener.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/pubsub/Listener.java index 6b37e2d47b..66c4dc7d6d 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/pubsub/Listener.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/pubsub/Listener.java @@ -17,7 +17,7 @@ */ package org.apache.qpid.example.jmsexample.pubsub; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/pubsub/Publisher.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/pubsub/Publisher.java index 8594993e86..22cedf1ad8 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/pubsub/Publisher.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/pubsub/Publisher.java @@ -1,13 +1,11 @@ package org.apache.qpid.example.jmsexample.pubsub; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; /** * Publish messages to topics - * <p/> - * <p>Run with <code>-help</code> argument for a description of command line arguments. */ public class Publisher extends BaseExample { diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/MessageMirror.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/MessageMirror.java index 7b2bf4c780..82bc795162 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/MessageMirror.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/MessageMirror.java @@ -1,6 +1,6 @@ package org.apache.qpid.example.jmsexample.requestResponse; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/P2PRequestor.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/P2PRequestor.java index 6331491d2e..a1180726ea 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/P2PRequestor.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/P2PRequestor.java @@ -1,6 +1,6 @@ package org.apache.qpid.example.jmsexample.requestResponse; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/PubSubRequestor.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/PubSubRequestor.java index cb91500aed..9ec55eb78c 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/PubSubRequestor.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/requestResponse/PubSubRequestor.java @@ -1,6 +1,6 @@ package org.apache.qpid.example.jmsexample.requestResponse; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; diff --git a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/transacted/QueueToTopic.java b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/transacted/QueueToTopic.java index b7df3db345..1307324934 100644 --- a/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/transacted/QueueToTopic.java +++ b/java/client/example/src/main/java/org/apache/qpid/example/jmsexample/transacted/QueueToTopic.java @@ -1,6 +1,6 @@ package org.apache.qpid.example.jmsexample.transacted; -import org.redhat.mrg.messaging.examples.BaseExample; +import org.apache.qpid.example.jmsexample.BaseExample; import javax.jms.*; |
