Interface NonLinearAd
-
- All Implemented Interfaces:
public interface NonLinearAdRepresents a parsed
<NonLinear>element.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetId()an optional identifier for the creative. abstract IntegergetWidth()the pixel width of the placement slot for which the creative is intended. abstract IntegergetHeight()the pixel height of the placement slot for which the creative is intended. abstract IntegergetExpandedWidth()the maximum pixel width of the creative in its expanded state. abstract IntegergetExpandedHeight()the maximum pixel height of the creative in its expanded state. abstract BooleangetScalable()identifies whether the creative can scale to new dimensions relative to the video player when the video player is resized. abstract BooleangetMaintainAspectRatio()identifies whether the aspect ratio of the creative should be maintained when it is scaled to new dimensions as the video player is resized. abstract StringgetApiFramework()the API necessary to communicate with the creative if available. abstract LonggetMinSuggestedDuration()the minimum suggested duration that the creative should be displayed abstract List<StaticResource>getStaticResources()the list of StaticResource. abstract List<String>getIFrameResources()the list of iFrameResource.abstract List<String>getHtmlResources()the list of htmlResource.abstract StringgetNonLinearClickThrough()the uri to the advertiser's site. abstract List<String>getNonLinearClickTrackings()the list of uris that can be used in the case where multiple parties would like to track the NonLinearAd clickthrough. -
-
Method Detail
-
getWidth
abstract Integer getWidth()
the pixel width of the placement slot for which the creative is intended.
-
getHeight
abstract Integer getHeight()
the pixel height of the placement slot for which the creative is intended.
-
getExpandedWidth
abstract Integer getExpandedWidth()
the maximum pixel width of the creative in its expanded state.
-
getExpandedHeight
abstract Integer getExpandedHeight()
the maximum pixel height of the creative in its expanded state.
-
getScalable
abstract Boolean getScalable()
identifies whether the creative can scale to new dimensions relative to the video player when the video player is resized.
-
getMaintainAspectRatio
abstract Boolean getMaintainAspectRatio()
identifies whether the aspect ratio of the creative should be maintained when it is scaled to new dimensions as the video player is resized.
-
getApiFramework
abstract String getApiFramework()
the API necessary to communicate with the creative if available.
-
getMinSuggestedDuration
abstract Long getMinSuggestedDuration()
the minimum suggested duration that the creative should be displayed
-
getStaticResources
abstract List<StaticResource> getStaticResources()
the list of StaticResource.
-
getIFrameResources
abstract List<String> getIFrameResources()
the list of
iFrameResource.
-
getHtmlResources
abstract List<String> getHtmlResources()
the list of
htmlResource.
-
getNonLinearClickThrough
abstract String getNonLinearClickThrough()
the uri to the advertiser's site.
-
getNonLinearClickTrackings
abstract List<String> getNonLinearClickTrackings()
the list of uris that can be used in the case where multiple parties would like to track the NonLinearAd clickthrough.
-
-
-
-