Interface AssetSource
- All Superinterfaces:
WithKey
Representation of an Asset in a specific format, for example a video in a certain encoding, or an image in a certain resolution.
Example to create an instance using the builder pattern
AssetSource assetSource = AssetSource.builder()
.uri("{uri}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic AssetSourceBuilder
builder()
builder factory method for AssetSourcestatic AssetSourceBuilder
builder
(AssetSource template) create builder for AssetSource instancestatic AssetSource
deepCopy
(AssetSource template) factory method to create a deep copy of AssetSourceIndicates the type of content, for exampleapplication/pdf
.@Valid AssetDimensions
Width and height of the AssetSource.getKey()
User-defined identifier of the AssetSource.@NotNull String
getUri()
URI of the AssetSource.static AssetSource
of()
factory methodstatic AssetSource
of
(AssetSource template) factory method to create a shallow copy AssetSourcevoid
setContentType
(String contentType) Indicates the type of content, for exampleapplication/pdf
.void
setDimensions
(AssetDimensions dimensions) Width and height of the AssetSource.void
User-defined identifier of the AssetSource.void
URI of the AssetSource.static com.fasterxml.jackson.core.type.TypeReference<AssetSource>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withAssetSource
(Function<AssetSource, T> helper) accessor map function
-
Method Details
-
getUri
URI of the AssetSource.
- Returns:
- uri
-
getKey
String getKey()User-defined identifier of the AssetSource. Must be unique per Asset.
-
getDimensions
Width and height of the AssetSource.
- Returns:
- dimensions
-
getContentType
String getContentType()Indicates the type of content, for example
application/pdf
.- Returns:
- contentType
-
setUri
URI of the AssetSource.
- Parameters:
uri
- value to be set
-
setKey
User-defined identifier of the AssetSource. Must be unique per Asset.
- Parameters:
key
- value to be set
-
setDimensions
Width and height of the AssetSource.
- Parameters:
dimensions
- value to be set
-
setContentType
Indicates the type of content, for example
application/pdf
.- Parameters:
contentType
- value to be set
-
of
factory method- Returns:
- instance of AssetSource
-
of
factory method to create a shallow copy AssetSource- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of AssetSource- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for AssetSource- Returns:
- builder
-
builder
create builder for AssetSource instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withAssetSource
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-