Guest User

Untitled

a guest
Feb 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. package br.gov.sef.cadin.types;
  2.  
  3. import java.io.Serializable;
  4. import java.util.Date;
  5.  
  6. import javax.xml.bind.annotation.XmlAccessType;
  7. import javax.xml.bind.annotation.XmlAccessorType;
  8. import javax.xml.bind.annotation.XmlType;
  9.  
  10. @SuppressWarnings("serial")
  11. @XmlAccessorType(XmlAccessType.FIELD)
  12. @XmlType(name="registroInadimplencia")
  13. public class RegistroInadimplencia implements Serializable {
  14.  
  15. private Date dataEntrada;
  16. private String descricao;
  17. private double valor;
  18.  
  19. public RegistroInadimplencia() {
  20. }
  21.  
  22. public RegistroInadimplencia(Date dataEntrada, String descricao,
  23. double valor) {
  24. setDataEntrada(dataEntrada);
  25. setDescricao(descricao);
  26. setValor(valor);
  27. }
  28.  
  29. public Date getDataEntrada() {
  30. return dataEntrada;
  31. }
  32.  
  33. public void setDataEntrada(Date dataEntrada) {
  34. this.dataEntrada = dataEntrada;
  35. }
  36.  
  37. public String getDescricao() {
  38. return descricao;
  39. }
  40.  
  41. public void setDescricao(String descricao) {
  42. this.descricao = descricao;
  43. }
  44.  
  45. public double getValor() {
  46. return valor;
  47. }
  48.  
  49. public void setValor(double valor) {
  50. this.valor = valor;
  51. }
  52.  
  53. }
Add Comment
Please, Sign In to add comment