File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
core/src/main/java/org/springframework/ws/soap/addressing/core Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 16
16
17
17
package org .springframework .ws .soap .addressing .core ;
18
18
19
+ import java .io .Serializable ;
19
20
import java .net .URI ;
20
21
import java .util .Collections ;
21
22
import java .util .List ;
31
32
* @see <a href="http://www.w3.org/TR/ws-addr-core/#eprs">Endpoint References</a>
32
33
* @since 1.5.0
33
34
*/
34
- public final class EndpointReference {
35
+ public final class EndpointReference implements Serializable {
36
+
37
+ private static final long serialVersionUID = 8999416009328865260L ;
35
38
36
39
private final URI address ;
37
40
Original file line number Diff line number Diff line change 16
16
17
17
package org .springframework .ws .soap .addressing .core ;
18
18
19
+ import java .io .Serializable ;
19
20
import java .net .URI ;
20
21
import java .util .Collections ;
21
22
import java .util .List ;
29
30
* @see <a href="http://www.w3.org/TR/ws-addr-core/#msgaddrprops">Message Addressing Properties</a>
30
31
* @since 1.5.0
31
32
*/
32
- public final class MessageAddressingProperties {
33
+ public final class MessageAddressingProperties implements Serializable {
34
+
35
+ private static final long serialVersionUID = -6980663311446506672L ;
33
36
34
37
private final URI to ;
35
38
You can’t perform that action at this time.
0 commit comments