diff --git a/org.springframework.context/src/main/java/org/springframework/conversation/manager/ConversationImpl.java b/org.springframework.context/src/main/java/org/springframework/conversation/manager/ConversationImpl.java index e7b2b7993e32622f9f54fc405329ae267860a602..362a493d5fe8ad88609b9866be865e76931c8989 100644 --- a/org.springframework.context/src/main/java/org/springframework/conversation/manager/ConversationImpl.java +++ b/org.springframework.context/src/main/java/org/springframework/conversation/manager/ConversationImpl.java @@ -172,9 +172,9 @@ public class ConversationImpl extends DestructionAwareAttributeMap implements Mu } /** - * @see org.springframework.conversation.manager.MutableConversation#endConversation(org.springframework.conversation.ConversationEndingType) + * @see org.springframework.conversation.manager.MutableConversation#internallyEndConversation(org.springframework.conversation.ConversationEndingType) */ - public void endConversation(ConversationEndingType endingType) { + public void internallyEndConversation(ConversationEndingType endingType) { // check, if this conversation was joined before and do not end it if so if (joinCount > 0) { joinCount--; diff --git a/org.springframework.context/src/main/java/org/springframework/conversation/manager/MutableConversation.java b/org.springframework.context/src/main/java/org/springframework/conversation/manager/MutableConversation.java index b4527285ee231ca7b2002cf02c0b66fe350a4fcb..f5849928cb69b34cde1ac89cc86f6b6e65eb589e 100644 --- a/org.springframework.context/src/main/java/org/springframework/conversation/manager/MutableConversation.java +++ b/org.springframework.context/src/main/java/org/springframework/conversation/manager/MutableConversation.java @@ -107,7 +107,7 @@ public interface MutableConversation extends Conversation { * ended (only passed on to any listeners, does not have an impact on the * conversation manager) */ - void endConversation(ConversationEndingType endingType); + void internallyEndConversation(ConversationEndingType endingType); /** * This method is a convenience method to