/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.megatim.fdxconsultation.model.dto; import com.megatim.fdxcommons.model.enumeration.TypeOperation; /** * * @author bissey */ public class ActionSlimDto { private Long id; private String path; private String module; private String name; private String categorie; private String description; private Boolean autorise; protected String idGenerer; private TypeOperation typeOperation; public ActionSlimDto() { } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getModule() { return module; } public void setModule(String module) { this.module = module; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCategorie() { return categorie; } public void setCategorie(String categorie) { this.categorie = categorie; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Boolean getAutorise() { return autorise; } public void setAutorise(Boolean autorise) { this.autorise = autorise; } public String getIdGenerer() { return idGenerer; } public void setIdGenerer(String idGenerer) { this.idGenerer = idGenerer; } public TypeOperation getTypeOperation() { return typeOperation; } public void setTypeOperation(TypeOperation typeOperation) { this.typeOperation = typeOperation; } }