[Castore-commits] Entity.java NONE 1.1
Mohamed Yenje Ould Elkhadir
mohamed at adullact1.hosting.cri74.org
Mer 23 Aou 13:53:12 CEST 2006
Update of /cvsroot/castore/castore-core/src/java/fr/emn/castor/documents/metier/ajax
In directory adullact1:/tmp/cvs-serv17997/src/java/fr/emn/castor/documents/metier/ajax
Added Files:
Entity.java
Log Message:
classe qui represente un tuteur par son Id et son nom
--- NEW FILE: Entity.java ---
package fr.emn.castor.documents.metier.ajax;
import java.io.Serializable;
/**
* A User entity with id and nom properties.
*
* @author $Mohamed Yenje$
*/
public class Entity implements Serializable {
private String id;
private String nom;
/**
* Constructor for User.
*/
public Entity() {
super();
}
/**
* Constructor for User.
*/
public Entity(String id, String nom) {
super();
this.id = id;
this.nom = nom;
}
/**
* @return Returns the id.
*/
public String getId() {
return this.id;
}
/**
* @param id The id to set.
*/
public void setId(String id) {
this.id = id;
}
/**
* @return Returns the nom.
*/
public String getNom() {
return this.nom;
}
/**
* @param nom The nom to set.
*/
public void setNom(String nom) {
this.nom = nom;
}
}
Plus d'informations sur la liste de diffusion Castore-commits