View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   package org.kuali.mobility.calendars.entity;
6   
7   import javax.xml.bind.annotation.XmlRootElement;
8   
9   /**
10   *
11   * @author Nurul Haque Murshed <nurul.murshed@htcindia.com>
12   */
13  @XmlRootElement(name = "userAccount")
14  public class UserAccount {
15  
16      
17      private String emailId;
18      private String password;
19  
20      /**
21       * @return the emailId
22       */
23      public String getEmailId() {
24          return emailId;
25      }
26  
27      /**
28       * @param emailId the emailId to set
29       */
30      public void setEmailId(String emailId) {
31          this.emailId = emailId;
32      }
33  
34      /**
35       * @return the password
36       */
37      public String getPassword() {
38          return password;
39      }
40  
41      /**
42       * @param password the password to set
43       */
44      public void setPassword(String password) {
45          this.password = password;
46      }
47  }