All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.actonic.gdpr.api.GDPRAnonymizeObject Maven / Gradle / Ivy

Go to download

GDPR API is a library for Atlassian plugins "GDPR (DSGVO) and Security for Jira" and "GDPR (DSGVO) and Security for Confluence"

There is a newer version: 1.0.2
Show newest version
package de.actonic.gdpr.api;

public final class GDPRAnonymizeObject {
    String name;
    String type;
    String link;

    public GDPRAnonymizeObject(String name, String type) {
        this.name = name;
        this.type = type;
    }

    public GDPRAnonymizeObject(String name, String type, String link) {
        this.name = name;
        this.type = type;
        this.link = link;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getLink() {
        return link;
    }

    public void setLink(String link) {
        this.link = link;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy