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

3
import com.fasterxml.jackson.annotation.JsonProperty;
gary's avatar
gary committed
4 5
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import pwc.taxtech.atms.common.util.PwCIdSerialize;
6

7
public class DeleteTemplateParam {
gary's avatar
gary committed
8

9
    @JsonProperty("ID")
gary's avatar
gary committed
10
    @JsonSerialize(using = PwCIdSerialize.class)
11
    private Long id;
12 13 14
    private boolean isDeletePermanent;
    private String path;

15 16
    public Long getId() {
        return id;
17 18
    }

19 20
    public void setId(Long id) {
        this.id = id;
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
    }

    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;
    }
}