Class RasterDataSourceConfigurationUpdate
Class RasterDataSourceConfigurationUpdate
- java.lang.Object
-
- com.here.sdk.mapview.datasource.RasterDataSourceConfigurationUpdate
-
public final class RasterDataSourceConfigurationUpdate extends java.lang.ObjectConfiguration update for a RasterDataSource.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.LongcacheDiskSizeOptional update of the cache disk size, in bytes.java.lang.BooleanignoreExpiredDataOptional update of the flag indicating whether expired data should be ignored until refreshed.java.util.Map<java.lang.String,java.lang.String>providerHeadersOptional update of the provider headers.
-
Constructor Summary
Constructors Constructor Description RasterDataSourceConfigurationUpdate(java.util.Map<java.lang.String,java.lang.String> providerHeaders, java.lang.Boolean ignoreExpiredData, java.lang.Long cacheDiskSize)Creates a new instance.
-
-
-
Field Detail
-
providerHeaders
@Nullable public java.util.Map<java.lang.String,java.lang.String> providerHeaders
Optional update of the provider headers. The new list replaces the current one. When not set, no change is made to the current list.
-
ignoreExpiredData
@Nullable public java.lang.Boolean ignoreExpiredData
Optional update of the flag indicating whether expired data should be ignored until refreshed. When not set, no change is made to the current flag state.
-
cacheDiskSize
@Nullable public java.lang.Long cacheDiskSize
Optional update of the cache disk size, in bytes. When not set, no change is made to the current value.
-
-
Constructor Detail
-
RasterDataSourceConfigurationUpdate
public RasterDataSourceConfigurationUpdate(@Nullable java.util.Map<java.lang.String,java.lang.String> providerHeaders, @Nullable java.lang.Boolean ignoreExpiredData, @Nullable java.lang.Long cacheDiskSize)Creates a new instance.
- Parameters:
providerHeaders-Optional update of the provider headers. The new list replaces the current one. When not set, no change is made to the current list.
ignoreExpiredData-Optional update of the flag indicating whether expired data should be ignored until refreshed. When not set, no change is made to the current flag state.
cacheDiskSize-Optional update of the cache disk size, in bytes. When not set, no change is made to the current value.
-
-