-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add account CCPA enabled and per-request-type enabled flags (#1044)
* Add account CCPA enabled and per-request-type enabled flags * Fixes after review * Add account CCPA enabled and per-request-type enabled flags * Fixes after review * Merge remote-tracking branch 'remotes/origin/master' into account/ccpa/enabled # Conflicts: # src/main/java/org/prebid/server/auction/PrivacyEnforcementService.java * Add CCPA to AccountConfigurationProperties Co-authored-by: Serhii Nahornyi <snahornyi@rubiconproject.com> Co-authored-by: nickluck8 <msteliuk@magnite.com> Co-authored-by: rpanchyk <rpanchyk@rubiconproject.com>
- Loading branch information
1 parent
a67ea36
commit 2de846a
Showing
5 changed files
with
225 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/org/prebid/server/settings/model/AccountCcpaConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package org.prebid.server.settings.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Builder | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Data | ||
public class AccountCcpaConfig { | ||
|
||
@JsonProperty("enabled") | ||
Boolean enabled; | ||
|
||
@JsonProperty("integration-enabled") | ||
EnabledForRequestType enabledForRequestType; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters