Repository: cxf
Updated Branches:
  refs/heads/3.1.x-fixes 32c0aca5f -> 83e95f902


Fixing a typo


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/83e95f90
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/83e95f90
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/83e95f90

Branch: refs/heads/3.1.x-fixes
Commit: 83e95f9029afebf93a08fc3cee2904d84db36a14
Parents: 32c0aca
Author: Sergey Beryozkin <sberyoz...@gmail.com>
Authored: Tue Dec 8 14:14:25 2015 +0000
Committer: Sergey Beryozkin <sberyoz...@gmail.com>
Committed: Tue Dec 8 14:19:32 2015 +0000

----------------------------------------------------------------------
 .../java/org/apache/cxf/rs/security/oauth2/common/Client.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/83e95f90/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/common/Client.java
----------------------------------------------------------------------
diff --git 
a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/common/Client.java
 
b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/common/Client.java
index bc5c756..f85ad99 100644
--- 
a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/common/Client.java
+++ 
b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/common/Client.java
@@ -50,7 +50,7 @@ public class Client implements Serializable {
     private Map<String, String> properties = new HashMap<String, String>();
     private UserSubject subject;
     private UserSubject resourceOwnerSubject;
-    private boolean registeredAt;    
+    private long registeredAt;    
     
     public Client() {
         
@@ -339,11 +339,11 @@ public class Client implements Serializable {
         this.clientIpAddress = clientIpAddress;
     }
 
-    public boolean isRegisteredAt() {
+    public long getRegisteredAt() {
         return registeredAt;
     }
 
-    public void setRegisteredAt(boolean registeredAt) {
+    public void setRegisteredAt(long registeredAt) {
         this.registeredAt = registeredAt;
     }
 }

Reply via email to