[Yanel-commits] rev 44575 - public/yanel/trunk/src/contributions/resources/forgotpw/src/java/org/wyona/yanel/impl/resources/forgotpw

michi at wyona.com michi at wyona.com
Thu Sep 3 09:27:39 CEST 2009


Author: michi
Date: 2009-09-03 09:27:38 +0200 (Thu, 03 Sep 2009)
New Revision: 44575

Modified:
   public/yanel/trunk/src/contributions/resources/forgotpw/src/java/org/wyona/yanel/impl/resources/forgotpw/ResetPWExpire.java
Log:
javadoc added and formatting

Modified: public/yanel/trunk/src/contributions/resources/forgotpw/src/java/org/wyona/yanel/impl/resources/forgotpw/ResetPWExpire.java
===================================================================
--- public/yanel/trunk/src/contributions/resources/forgotpw/src/java/org/wyona/yanel/impl/resources/forgotpw/ResetPWExpire.java	2009-09-02 21:03:50 UTC (rev 44574)
+++ public/yanel/trunk/src/contributions/resources/forgotpw/src/java/org/wyona/yanel/impl/resources/forgotpw/ResetPWExpire.java	2009-09-03 07:27:38 UTC (rev 44575)
@@ -15,28 +15,39 @@
  */
 package org.wyona.yanel.impl.resources.forgotpw;
 
-    public class ResetPWExpire {
-        private String userId;
-        private long dateTime;
-        private String guid;
-        private String email;
+/**
+ * Bean containing data of reset password request
+ */
+public class ResetPWExpire {
 
-        public ResetPWExpire(String userid, long datetime, String guid, String email) {
-          this.userId = userid;
-          this.dateTime = datetime;
-          this.guid = guid;
-          this.email = email;
-        }
-        public String getUserId() {
-            return userId;
-        }
-        public long getDateTime() {
-            return dateTime;
-        }
-        public String getGuid() {
-            return guid;
-        }
-        public String getEmail() {
-            return email;
-        }
+    private String userId;
+    private long dateTime;
+    private String guid;
+    private String email;
+
+    /**
+     *
+     */
+    public ResetPWExpire(String userid, long datetime, String guid, String email) {
+        this.userId = userid;
+        this.dateTime = datetime;
+        this.guid = guid;
+        this.email = email;
     }
+
+    public String getUserId() {
+        return userId;
+    }
+
+    public long getDateTime() {
+        return dateTime;
+    }
+
+    public String getGuid() {
+        return guid;
+    }
+
+    public String getEmail() {
+        return email;
+    }
+}



More information about the Yanel-commits mailing list