You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ow...@apache.org on 2013/06/05 20:25:05 UTC

svn commit: r1489993 - /cxf/fediz/branches/1.0.x-fixes/plugins/core/src/main/java/org/apache/cxf/fediz/core/FederationResponse.java

Author: owulff
Date: Wed Jun  5 18:25:05 2013
New Revision: 1489993

URL: http://svn.apache.org/r1489993
Log:
FederationResponse serializable

Modified:
    cxf/fediz/branches/1.0.x-fixes/plugins/core/src/main/java/org/apache/cxf/fediz/core/FederationResponse.java

Modified: cxf/fediz/branches/1.0.x-fixes/plugins/core/src/main/java/org/apache/cxf/fediz/core/FederationResponse.java
URL: http://svn.apache.org/viewvc/cxf/fediz/branches/1.0.x-fixes/plugins/core/src/main/java/org/apache/cxf/fediz/core/FederationResponse.java?rev=1489993&r1=1489992&r2=1489993&view=diff
==============================================================================
--- cxf/fediz/branches/1.0.x-fixes/plugins/core/src/main/java/org/apache/cxf/fediz/core/FederationResponse.java (original)
+++ cxf/fediz/branches/1.0.x-fixes/plugins/core/src/main/java/org/apache/cxf/fediz/core/FederationResponse.java Wed Jun  5 18:25:05 2013
@@ -19,14 +19,17 @@
 
 package org.apache.cxf.fediz.core;
 
+import java.io.Serializable;
 import java.util.Collections;
 import java.util.Date;
 import java.util.List;
 
 import org.w3c.dom.Element;
 
-public class FederationResponse {
+public class FederationResponse implements Serializable {
 
+    private static final long serialVersionUID = 1L;
+    
     private String audience;
     private String username;
     private List<String> roles;