File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
spring-integration-core/src/main/java/org/springframework/integration/history Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2021 the original author or authors.
2
+ * Copyright 2002-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
49
49
* @author Mark Fisher
50
50
* @author Artem Bilan
51
51
* @author Gary Russell
52
+ * @author Chris Bono
52
53
*
53
54
* @since 2.0
54
55
*/
55
- @ SuppressWarnings ("serial" )
56
56
public final class MessageHistory implements List <Properties >, Serializable {
57
57
58
+ private static final long serialVersionUID = -2340400235574314134L ;
59
+
58
60
private static final Log LOGGER = LogFactory .getLog (MessageHistory .class );
59
61
60
62
private static final UnsupportedOperationException UNSUPPORTED_OPERATION_EXCEPTION_IMMUTABLE =
@@ -303,12 +305,13 @@ private static Properties extractMetadata(NamedComponent component) {
303
305
return entry ;
304
306
}
305
307
306
-
307
308
/**
308
309
* Inner class for each Entry in the history.
309
310
*/
310
311
public static class Entry extends Properties {
311
312
313
+ private static final long serialVersionUID = -8225834391885601079L ;
314
+
312
315
public String getName () {
313
316
return this .getProperty (NAME_PROPERTY );
314
317
}
You can’t perform that action at this time.
0 commit comments