Skip to content

Commit

Permalink
Revert "Rubicon: Adapter simplifications (#2944)"
Browse files Browse the repository at this point in the history
This reverts commit 2375dd0.
  • Loading branch information
SerhiiNahornyi committed Feb 8, 2024
1 parent 0e8c182 commit 4f56637
Show file tree
Hide file tree
Showing 8 changed files with 467 additions and 216 deletions.
205 changes: 126 additions & 79 deletions src/main/java/org/prebid/server/bidder/rubicon/RubiconBidder.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ public class RubiconVideoExt {

Integer skipdelay;

RubiconVideoExtRp rp;

String videotype;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package org.prebid.server.bidder.rubicon.proto.request;

import lombok.AllArgsConstructor;
import lombok.Value;

@AllArgsConstructor(staticName = "of")
@Value
public class RubiconVideoExtRp {

Integer sizeId;
}
445 changes: 308 additions & 137 deletions src/test/java/org/prebid/server/bidder/rubicon/RubiconBidderTest.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
"ext": {
"rp": {
"zone_id": 4001,
"target": {
"page": [
"http://www.example.com"
]
},
"track": {
"mint": "",
"mint_version": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
"ext": {
"rp": {
"zone_id": 4001,
"target": {
"page": [
"http://www.example.com"
]
},
"track": {
"mint": "",
"mint_version": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"ext": {
"rp": {
"zone_id": 4001,
"target": {
"page": [
"http://www.example.com"
]
},
"track": {
"mint": "",
"mint_version": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"ext": {
"rp": {
"zone_id": 4001,
"target": {
"page": [
"http://www.example.com"
]
},
"track": {
"mint": "",
"mint_version": ""
Expand Down

0 comments on commit 4f56637

Please sign in to comment.