public class DataCategory extends AbstractIdentifiableGDPRConfiguration
This class extends `IdentifiableGDPRConfiguration` to define a specific category of data that may be collected and processed. It includes a title and a collection of associated business interest Ids to justify the data collection. The business interests provide the reasons why the data in this category is being collected.
Allowed attributes:
Constructor and Description |
---|
DataCategory(electric.xml.Element element,
java.lang.String id,
java.lang.String title)
Constructs a `DataCategory` with the given XML element, Id, and title.
|
Modifier and Type | Method and Description |
---|---|
void |
addBusinessInterest(java.lang.String businessInterestId)
Adds a business interest Id to this data category.
|
void |
addProcessingPurpose(java.lang.String processingPurposeId)
Adds a processing purpose Id to this data category.
|
void |
addRetentionPurpose(java.lang.String retentionPurposeId)
Adds a retention purpose Id to this data category.
|
static DataCategory |
byId(java.lang.String id)
Retrieves a `DataCategory` by its unique Id.
|
java.util.Collection<BusinessInterest> |
getBusinessInterests()
Returns the collection of business interests associated with this data category.
|
java.util.Collection<DataRetentionPolicy> |
getDataRetentionPolicies()
Returns the collection of backlinks to data retention policies associated with this data category.
|
java.util.Collection<ProcessingPurpose> |
getProcessingPurposes()
Returns the collection of processing purposes associated with this data category.
|
java.util.Collection<RetentionPurpose> |
getRetentionPurposes()
Returns the collection of retention purposes associated with this data category.
|
java.lang.String |
getTitle()
Returns the title of the data category.
|
void |
linkAndValidateGDPRObjects()
Links and validates the GDPR configuration elements.
|
getId, toString
getEl, releaseDefinitionSource
public DataCategory(electric.xml.Element element, java.lang.String id, java.lang.String title)
element
- The XML element representing this data category.id
- The unique identifier for this data category.title
- The title of the data category.public static DataCategory byId(java.lang.String id)
id
- The unique identifier of the data category.null
if not found.public void addBusinessInterest(java.lang.String businessInterestId)
businessInterestId
- The Id of the business interest to add.public void addProcessingPurpose(java.lang.String processingPurposeId)
processingPurposeId
- The Id of the processing purpose to add.public void addRetentionPurpose(java.lang.String retentionPurposeId)
retentionPurposeId
- The Id of the retention purpose to add.public void linkAndValidateGDPRObjects()
This method performs two key functions:
Subclasses must provide a concrete implementation for this method to perform the necessary linking and validation checks.
This implementation performs no specific checks. Subclasses may override this method to add their own checks.
This implementation also verifies that all referenced business interests exist.
linkAndValidateGDPRObjects
in interface GDPRConfigurationElementI
linkAndValidateGDPRObjects
in class AbstractIdentifiableGDPRConfiguration
public java.lang.String getTitle()
public java.util.Collection<BusinessInterest> getBusinessInterests()
BusinessInterest
objects.public java.util.Collection<ProcessingPurpose> getProcessingPurposes()
ProcessingPurpose
objects.public java.util.Collection<RetentionPurpose> getRetentionPurposes()
RetentionPurpose
objects.public java.util.Collection<DataRetentionPolicy> getDataRetentionPolicies()
DataRetentionPolicy
objects.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.