AddAdSelectionOverrideRequest


public class AddAdSelectionOverrideRequest
extends Object

java.lang.Object
   ↳ android.adservices.adselection.AddAdSelectionOverrideRequest


This POJO represents the TestAdSelectionManager.overrideAdSelectionConfigRemoteInfo(android.adservices.adselection.AddAdSelectionOverrideRequest, java.util.concurrent.Executor, android.os.OutcomeReceiver) request

It contains, a AdSelectionConfig which will serve as the identifier for the specific override, a String decisionLogicJs and String trustedScoringSignals field representing the override value

Summary

Public constructors

AddAdSelectionOverrideRequest(AdSelectionConfig adSelectionConfig, String decisionLogicJs, AdSelectionSignals trustedScoringSignals)

Builds a AddAdSelectionOverrideRequest instance.

AddAdSelectionOverrideRequest(AdSelectionConfig adSelectionConfig, String decisionLogicJs, AdSelectionSignals trustedScoringSignals, PerBuyerDecisionLogic perBuyerDecisionLogic)

Builds a AddAdSelectionOverrideRequest instance.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

AddAdSelectionOverrideRequest

public AddAdSelectionOverrideRequest (AdSelectionConfig adSelectionConfig, 
                String decisionLogicJs, 
                AdSelectionSignals trustedScoringSignals)

Builds a AddAdSelectionOverrideRequest instance.

Parameters
adSelectionConfig AdSelectionConfig: configuration for ad selection. See AdSelectionConfig This value cannot be null.

decisionLogicJs String: override for scoring logic. See AdSelectionConfig.getDecisionLogicUri() This value cannot be null.

trustedScoringSignals AdSelectionSignals: override for trusted seller signals. See AdSelectionConfig.getTrustedScoringSignalsUri() This value cannot be null.

AddAdSelectionOverrideRequest

public AddAdSelectionOverrideRequest (AdSelectionConfig adSelectionConfig, 
                String decisionLogicJs, 
                AdSelectionSignals trustedScoringSignals, 
                PerBuyerDecisionLogic perBuyerDecisionLogic)

Builds a AddAdSelectionOverrideRequest instance.

Parameters
adSelectionConfig AdSelectionConfig: configuration for ad selection. See AdSelectionConfig This value cannot be null.

decisionLogicJs String: override for scoring logic. See AdSelectionConfig.getDecisionLogicUri() This value cannot be null.

trustedScoringSignals AdSelectionSignals: override for trusted seller signals. See AdSelectionConfig.getTrustedScoringSignalsUri() This value cannot be null.

perBuyerDecisionLogic PerBuyerDecisionLogic: override for buyer's reporting logic for contextual ads. See SignedContextualAds.getDecisionLogicUri() This value cannot be null.

Public methods

getAdSelectionConfig

public AdSelectionConfig getAdSelectionConfig ()

Returns
AdSelectionConfig an instance of AdSelectionConfig, the configuration of the ad selection process. This configuration provides the data necessary to run Ad Selection flow that generates bids and scores to find a wining ad for rendering. This value cannot be null.

getDecisionLogicJs

public String getDecisionLogicJs ()

Returns
String The override javascript result, should be a string that contains valid JS code. The code should contain the scoring logic that will be executed during Ad selection. This value cannot be null.

getPerBuyerDecisionLogic

public PerBuyerDecisionLogic getPerBuyerDecisionLogic ()

Returns
PerBuyerDecisionLogic The override for the decision logic for each buyer that is used by contextual ads for reporting, which may be extended to updating bid values for contextual ads in the future This value cannot be null.

getTrustedScoringSignals

public AdSelectionSignals getTrustedScoringSignals ()

Returns
AdSelectionSignals The override trusted scoring signals, should be a valid json string. The trusted signals would be fed into the scoring logic during Ad Selection. This value cannot be null.