de.actonic.gdpr.api.IGDPRAnonymizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdpr-api Show documentation
Show all versions of gdpr-api Show documentation
GDPR API is a library for Atlassian plugins "GDPR (DSGVO) and Security for Jira" and "GDPR (DSGVO) and Security for Confluence"
package de.actonic.gdpr.api;
import java.util.*;
public interface IGDPRAnonymizer {
List search(String sourceUser);
List anonymize(String sourceUser, String targetUser);
void stop();
String getPluginName();
String getName();
}