public class GDPRTools
extends java.lang.Object
This class offers methods to retrieve GDPR-relevant entities and business objects (BOs), determine data categories, identify affected persons, evaluate retention vetoes, and calculate retention start dates. These methods simplify the handling of GDPR-related tasks and ensure compliance with data protection regulations.
Modifier and Type | Field and Description |
---|---|
static int |
SAFETY_MARGIN_DAYS_BEFORE_DELETION
The number of days to add as a safety margin to the calculated earliest deletion date
before actually purging the data.
|
Constructor and Description |
---|
GDPRTools() |
Modifier and Type | Method and Description |
---|---|
static de.ipcon.db.core.QueryResultsI<? extends de.ipcon.db.core.GDPRRelevantI> |
getAlreadyInitializedGDPRRelevantBOs(BOLoaderI bol,
EntityI type)
Retrieves all already initialized BOs of the given type that are relevant for GDPR processing.
|
static java.lang.Long |
getAlreadyInitializedGDPRRelevantBOsCount(BOLoaderI bol,
EntityI type)
Counts the number of already initialized BOs of the given type that are relevant for GDPR processing.
|
static de.ipcon.db.core.QueryResultsI<? extends de.ipcon.db.core.GDPRRelevantI> |
getGDPRRelevantBOsOverdueForPurging(BOLoaderI bol,
EntityI type)
Retrieves all BOs of the given type that are overdue for purging to fulfill GDPR compliance.
|
static java.lang.Long |
getGDPRRelevantBOsOverdueForPurgingCount(BOLoaderI bol,
EntityI type)
Counts the number of all BOs of the given type that are overdue for purging to fulfill GDPR compliance.
|
static de.ipcon.db.core.QueryResultsI<? extends de.ipcon.db.core.GDPRRelevantI> |
getUninitializedGDPRRelevantBOs(BOLoaderI bol,
EntityI type)
Retrieves all not already initialized BOs of the given type that are relevant for GDPR processing.
|
static java.lang.Long |
getUninitializedGDPRRelevantBOsCount(BOLoaderI bol,
EntityI type)
Counts the number of not already initialized BOs of the given type that are relevant for GDPR processing.
|
public static final int SAFETY_MARGIN_DAYS_BEFORE_DELETION
This buffer period ensures that data is not deleted prematurely due to potential inaccuracies
or unforeseen circumstances in the deletion process or changes to the policies or underlying
data that affects the retention period. This value is used in getQueryParamsForPurging()
.
According to GDPR regulations, it is acceptable to retain data for slightly longer than the strictly required minimum retention period, as long as the overall retention time remains reasonable and proportionate to the purpose of processing.
public static de.ipcon.db.core.QueryResultsI<? extends de.ipcon.db.core.GDPRRelevantI> getUninitializedGDPRRelevantBOs(BOLoaderI bol, EntityI type)
bol
- The BOLoaderI used to access the database.type
- The entity type of the BOs to retrieve.public static de.ipcon.db.core.QueryResultsI<? extends de.ipcon.db.core.GDPRRelevantI> getAlreadyInitializedGDPRRelevantBOs(BOLoaderI bol, EntityI type)
bol
- The BOLoaderI used to access the database.type
- The entity type of the BOs to retrieve.public static de.ipcon.db.core.QueryResultsI<? extends de.ipcon.db.core.GDPRRelevantI> getGDPRRelevantBOsOverdueForPurging(BOLoaderI bol, EntityI type)
bol
- The BOLoaderI used to access the database.type
- The entity type of the BOs to retrieve.public static java.lang.Long getUninitializedGDPRRelevantBOsCount(BOLoaderI bol, EntityI type)
bol
- The BOLoaderI used to access the database.type
- The entity type of the BOs to count.public static java.lang.Long getAlreadyInitializedGDPRRelevantBOsCount(BOLoaderI bol, EntityI type)
bol
- The BOLoaderI used to access the database.type
- The entity type of the BOs to count.public static java.lang.Long getGDPRRelevantBOsOverdueForPurgingCount(BOLoaderI bol, EntityI type)
bol
- The BOLoaderI used to access the database.type
- The entity type of the BOs to count.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.