You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nuvem-commits@incubator.apache.org by lr...@apache.org on 2010/09/13 16:32:55 UTC

svn commit: r996593 - in /incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user: User.java UserContext.java

Author: lresende
Date: Mon Sep 13 16:32:55 2010
New Revision: 996593

URL: http://svn.apache.org/viewvc?rev=996593&view=rev
Log:
Adding noarg default constructor

Modified:
    incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/User.java
    incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/UserContext.java

Modified: incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/User.java
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/User.java?rev=996593&r1=996592&r2=996593&view=diff
==============================================================================
--- incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/User.java (original)
+++ incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/User.java Mon Sep 13 16:32:55 2010
@@ -6,43 +6,51 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
- * under the License.    
+ * under the License.
  */
 
 package org.apache.nuvem.cloud.user;
 
-public class User {
-    public static enum ROLES { UNDEFINED, USER, ADMIN};
-    
+import java.io.Serializable;
+
+public class User implements Serializable {
+	private static final long serialVersionUID = -503746790472903416L;
+
+	public static enum ROLES { UNDEFINED, USER, ADMIN};
+
     protected String userId;
     protected String nickName;
     protected String email;
-    
+
+    public User () {
+
+    }
+
     public User(String userId, String nickName, String email) {
         this.userId = userId;
         this.nickName = nickName;
         this.email = email;
     }
-    
+
     public String getUserId() {
         return this.userId;
     }
-    
+
     public String getNickname() {
         return this.nickName;
     }
-    
+
     public String getEmail() {
         return this.email;
     }
-    
-  
+
+
 }

Modified: incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/UserContext.java
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/UserContext.java?rev=996593&r1=996592&r2=996593&view=diff
==============================================================================
--- incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/UserContext.java (original)
+++ incubator/nuvem/trunk/nuvem-api/src/main/java/org/apache/nuvem/cloud/user/UserContext.java Mon Sep 13 16:32:55 2010
@@ -6,46 +6,52 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
- * under the License.    
+ * under the License.
  */
 
 package org.apache.nuvem.cloud.user;
 
 public class UserContext extends User {
-    protected String loginUrl;
+	private static final long serialVersionUID = 1339319191804052423L;
+
+	protected String loginUrl;
     protected String logoutUrl;
     protected boolean isUserLoggedIn;
-    
+
+    public UserContext() {
+    	super();
+    }
+
     public UserContext(String userId, String nickName, String email, boolean isUserLoggedIn, String loginUrl, String logoutUrl) {
         super(userId, nickName, email);
         this.isUserLoggedIn = isUserLoggedIn;
         this.loginUrl = loginUrl;
         this.logoutUrl = logoutUrl;
     }
-    
+
     public UserContext(User user, boolean isUserLoggedIn, String loginUrl, String logoutUrl) {
         super(user.getUserId(), user.getNickname(), user.getEmail());
         this.isUserLoggedIn = isUserLoggedIn;
         this.loginUrl = loginUrl;
         this.logoutUrl = logoutUrl;
     }
-    
+
     public boolean isUserLoggedIn() {
         return this.isUserLoggedIn;
     }
-    
+
     public String getLoginUrl() {
         return this.loginUrl;
     }
-    
+
     public String getLogoutUrl() {
         return this.logoutUrl;
     }