Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.91 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package model;
  7.  
  8. import java.sql.Date;
  9.  
  10. /**
  11.  *
  12.  * @author dskaster
  13.  */
  14. public class Usuario {
  15.  
  16.     private Integer id;
  17.     private String login;
  18.     private String senha;
  19.     private String nome;
  20.     private Date nascimento;
  21.     private String avatar;
  22.  
  23.     /**
  24.      * @return the id
  25.      */
  26.     public Integer getId() {
  27.         return id;
  28.     }
  29.  
  30.     /**
  31.      * @param id the id to set
  32.      */
  33.     public void setId(Integer id) {
  34.         this.id = id;
  35.     }
  36.  
  37.     /**
  38.      * @return the login
  39.      */
  40.     public String getLogin() {
  41.         return login;
  42.     }
  43.  
  44.     /**
  45.      * @param login the login to set
  46.      */
  47.     public void setLogin(String login) {
  48.         this.login = login;
  49.     }
  50.  
  51.     /**
  52.      * @return the senha
  53.      */
  54.     public String getSenha() {
  55.         return senha;
  56.     }
  57.  
  58.     /**
  59.      * @param senha the senha to set
  60.      */
  61.     public void setSenha(String senha) {
  62.         this.senha = senha;
  63.     }
  64.  
  65.     /**
  66.      * @return the nome
  67.      */
  68.     public String getNome() {
  69.         return nome;
  70.     }
  71.  
  72.     /**
  73.      * @param nome the nome to set
  74.      */
  75.     public void setNome(String nome) {
  76.         this.nome = nome;
  77.     }
  78.  
  79.     /**
  80.      * @return the nascimento
  81.      */
  82.     public Date getNascimento() {
  83.         return nascimento;
  84.     }
  85.  
  86.     /**
  87.      * @param nascimento the nascimento to set
  88.      */
  89.     public void setNascimento(Date nascimento) {
  90.         this.nascimento = nascimento;
  91.     }
  92.  
  93.     /**
  94.      * @return the avatar
  95.      */
  96.     public String getAvatar() {
  97.         return avatar;
  98.     }
  99.  
  100.     /**
  101.      * @param avatar the avatar to set
  102.      */
  103.     public void setAvatar(String avatar) {
  104.         this.avatar = avatar;
  105.     }
  106.    
  107.    
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement