forked from prebid/prebid-server-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add request context to ExchangeService (prebid#391)
- Loading branch information
Showing
7 changed files
with
215 additions
and
202 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
27 changes: 27 additions & 0 deletions
27
src/main/java/org/prebid/server/auction/model/RequestContext.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,27 @@ | ||
package org.prebid.server.auction.model; | ||
|
||
import com.iab.openrtb.request.BidRequest; | ||
import io.vertx.ext.web.RoutingContext; | ||
import lombok.Builder; | ||
import lombok.Value; | ||
import org.prebid.server.cookie.UidsCookie; | ||
import org.prebid.server.execution.Timeout; | ||
import org.prebid.server.metric.model.MetricsContext; | ||
import org.prebid.server.settings.model.Account; | ||
|
||
@Builder | ||
@Value | ||
public class RequestContext { | ||
|
||
RoutingContext routingContext; | ||
|
||
UidsCookie uidsCookie; | ||
|
||
BidRequest bidRequest; | ||
|
||
Timeout timeout; | ||
|
||
MetricsContext metricsContext; | ||
|
||
Account account; | ||
} |
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
Oops, something went wrong.