SWS-596 - MessageAddressingProperties not Serializable

This commit is contained in:
Arjen Poutsma
2010-01-28 13:49:26 +00:00
parent 9fedbace16
commit 40f57cc4b4
2 changed files with 8 additions and 2 deletions

View File

@@ -16,6 +16,7 @@
package org.springframework.ws.soap.addressing.core;
import java.io.Serializable;
import java.net.URI;
import java.util.Collections;
import java.util.List;
@@ -31,7 +32,9 @@ import org.springframework.util.Assert;
* @see <a href="http://www.w3.org/TR/ws-addr-core/#eprs">Endpoint References</a>
* @since 1.5.0
*/
public final class EndpointReference {
public final class EndpointReference implements Serializable {
private static final long serialVersionUID = 8999416009328865260L;
private final URI address;

View File

@@ -16,6 +16,7 @@
package org.springframework.ws.soap.addressing.core;
import java.io.Serializable;
import java.net.URI;
import java.util.Collections;
import java.util.List;
@@ -29,7 +30,9 @@ import java.util.List;
* @see <a href="http://www.w3.org/TR/ws-addr-core/#msgaddrprops">Message Addressing Properties</a>
* @since 1.5.0
*/
public final class MessageAddressingProperties {
public final class MessageAddressingProperties implements Serializable {
private static final long serialVersionUID = -6980663311446506672L;
private final URI to;