From 77c3933b43eba3b66d7fc20a569c3ae6d2a5e8c2 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Tue, 9 Mar 2010 19:35:19 +0000 Subject: [PATCH] removing unused CommandMessage (at least for now), see INT-865 and INT-867 --- .../integration/core/CommandMessage.java | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 org.springframework.integration/src/main/java/org/springframework/integration/core/CommandMessage.java diff --git a/org.springframework.integration/src/main/java/org/springframework/integration/core/CommandMessage.java b/org.springframework.integration/src/main/java/org/springframework/integration/core/CommandMessage.java deleted file mode 100644 index 21b83fb57e..0000000000 --- a/org.springframework.integration/src/main/java/org/springframework/integration/core/CommandMessage.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * 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.core; - - -/** - * Provides definition of Command Message as defined by EIP ({@linkplain http://www.eaipatterns.com/CommandMessage.html}) - * - * @author Oleg Zhurakousky - * @since 2.0 - */ -public interface CommandMessage extends Message{ - - public void execute(); - -}