package JavaSource.com.pfe.service.form; import org.apache.struts.action.ActionForm; import org.apache.struts.upload.FormFile; public class FormAjout extends ActionForm { private String nom; private String categorie; private String motcle1; private String motcle2; private String motcle3; private String motcle4; private String motcle5; private String theFile; public String getNom() { return nom; } public void setNom(String nom) { this.nom = nom; } public String getCategorie() { return categorie; } public void setCategorie(String categorie) { this.categorie = categorie; } public String getMotcle1() { return motcle1; } public void setMotcle1(String motcle1) { this.motcle1 = motcle1; } public String getMotcle2() { return motcle2; } public void setMotcle2(String motcle2) { this.motcle2 = motcle2; } public String getMotcle3() { return motcle3; } public void setMotcle3(String motcle3) { this.motcle3 = motcle3; } public String getMotcle4() { return motcle4; } public void setMotcle4(String motcle4) { this.motcle4 = motcle4; } public String getMotcle5() { return motcle5; } public void setMotcle5(String motcle5) { this.motcle5 = motcle5; } public String getTheFile() { return theFile; } public void setTheFile(String theFile) { this.theFile = theFile; } }