DeleteTemplateParam.java 593 Bytes
Newer Older
1 2 3
package pwc.taxtech.atms.dto;

public class DeleteTemplateParam {
4
    private Long ID;
5 6 7
    private boolean isDeletePermanent;
    private String path;

8
    public Long getID() {
9 10 11
        return ID;
    }

12
    public void setID(Long ID) {
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
        this.ID = ID;
    }

    public boolean isDeletePermanent() {
        return isDeletePermanent;
    }

    public void setDeletePermanent(boolean deletePermanent) {
        isDeletePermanent = deletePermanent;
    }

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }
}