From d0041dd8adcbfcadef838617097372e2b39fdea7 Mon Sep 17 00:00:00 2001 From: Marius Bogoevici Date: Fri, 2 May 2008 05:21:20 +0000 Subject: [PATCH] Adding class ommitted from previous checkin. --- .../bus/TestMessageBusAwareImpl.java | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 spring-integration-core/src/test/java/org/springframework/integration/bus/TestMessageBusAwareImpl.java diff --git a/spring-integration-core/src/test/java/org/springframework/integration/bus/TestMessageBusAwareImpl.java b/spring-integration-core/src/test/java/org/springframework/integration/bus/TestMessageBusAwareImpl.java new file mode 100644 index 0000000000..68585167d2 --- /dev/null +++ b/spring-integration-core/src/test/java/org/springframework/integration/bus/TestMessageBusAwareImpl.java @@ -0,0 +1,33 @@ +/* + * Copyright 2002-2008 the original author or authors. + * + * 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.springframework.integration.bus; + +/** + * @author Marius Bogoevici + */ +public class TestMessageBusAwareImpl implements MessageBusAware { + + private MessageBus messageBus; + + public void setMessageBus(MessageBus messageBus) { + this.messageBus = messageBus; + } + + public MessageBus getMessageBus() { + return messageBus; + } + +} \ No newline at end of file