diff --git a/src/com/uca/entity/GommetteEntity.java b/src/com/uca/entity/GommetteEntity.java new file mode 100644 index 0000000000000000000000000000000000000000..1ace5e914d83641ab7ddc97db60f0ddcaa62c0c9 --- /dev/null +++ b/src/com/uca/entity/GommetteEntity.java @@ -0,0 +1,26 @@ +package com.uca.entity; +import java.sql.Timestamp; + +public class GommetteEntity +{ + private int id; + public int getId() { return id; } + public void setId(int value) { id = value; } + + private String nom; + public String getNom() { return nom; } + public void setNom(String value) { nom = value; } + + public enum Couleur { Verte, Rouge, Blanc, ArcEnCiel } + private Couleur couleur; + public Couleur getCouleur() { return couleur; } + public void setCouleur(Couleur value) { couleur = value; } + + private String description; + public String getDescription() { return description; } + public void setDescription(String value) { description = value; } + + public GommetteEntity(){ + //Ignored ! + } +}