Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2021 the original author or authors.
* Copyright 2002-2022 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.
Expand Down Expand Up @@ -49,12 +49,14 @@
* @author Mark Fisher
* @author Artem Bilan
* @author Gary Russell
* @author Chris Bono
*
* @since 2.0
*/
@SuppressWarnings("serial")
public final class MessageHistory implements List<Properties>, Serializable {

private static final long serialVersionUID = -2340400235574314134L;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cbono@cbono-a01 server-main % serialver -classpath spring-context-5.3.14.jar:spring-context-support-5.3.14.jar:spring-core-5.3.14.jar:spring-integration-core-5.5.8-SNAPSHOT.jar:spring-jcl-5.3.14.jar:spring-messaging-5.3.14.jar org.springframework.integration.history.MessageHistory
org.springframework.integration.history.MessageHistory:    private static final long serialVersionUID = -2340400235574314134L;


private static final Log LOGGER = LogFactory.getLog(MessageHistory.class);

private static final UnsupportedOperationException UNSUPPORTED_OPERATION_EXCEPTION_IMMUTABLE =
Expand Down Expand Up @@ -303,12 +305,13 @@ private static Properties extractMetadata(NamedComponent component) {
return entry;
}


/**
* Inner class for each Entry in the history.
*/
public static class Entry extends Properties {

private static final long serialVersionUID = -8225834391885601079L;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cbono@cbono-a01 server-main % serialver -classpath spring-context-5.3.14.jar:spring-context-support-5.3.14.jar:spring-core-5.3.14.jar:spring-integration-core-5.5.8-SNAPSHOT.jar:spring-jcl-5.3.14.jar:spring-messaging-5.3.14.jar org.springframework.integration.history.MessageHistory.Entry
org.springframework.integration.history.MessageHistory.Entry:    private static final long serialVersionUID = -8225834391885601079L;


public String getName() {
return this.getProperty(NAME_PROPERTY);
}
Expand Down