document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package model;
  6.  
  7. import java.util.Date;
  8.  
  9. /**
  10.  *
  11.  * @author Kamil
  12.  */
  13. public class User {
  14.     private String name;
  15.     private String pass;
  16.     private Date t;
  17.  
  18.     public User() {
  19.     }
  20.  
  21.     public User(String name, String pass, Date t) {
  22.         this.name = name;
  23.         this.pass = pass;
  24.         this.t = t;
  25.     }
  26.  
  27.    
  28.    
  29.     /**
  30.      * @return the name
  31.      */
  32.     public String getName() {
  33.         return name;
  34.     }
  35.  
  36.     /**
  37.      * @param name the name to set
  38.      */
  39.     public void setName(String name) {
  40.         this.name = name;
  41.     }
  42.  
  43.     /**
  44.      * @return the pass
  45.      */
  46.     public String getPass() {
  47.         return pass;
  48.     }
  49.  
  50.     /**
  51.      * @param pass the pass to set
  52.      */
  53.     public void setPass(String pass) {
  54.         this.pass = pass;
  55.     }
  56.  
  57.     /**
  58.      * @return the t
  59.      */
  60.     public Date getT() {
  61.         return t;
  62.     }
  63.  
  64.     /**
  65.      * @param t the t to set
  66.      */
  67.     public void setT(Date t) {
  68.         this.t = t;
  69.     }
  70.    
  71.    
  72.    
  73. }
');