Interface AttributeMapperAdapter
- All Superinterfaces:
AuthAdapter
Helper APIs for each type of
AttributeMapper
-
Method Summary
Modifier and TypeMethodDescription<T> AttributeMapper<T>
Factory method for newAttributeMapper
instancesMethods inherited from interface com.inductiveautomation.ignition.gateway.auth.adapter.AuthAdapter
getType
-
Method Details
-
create
@Nonnull <T> AttributeMapper<T> create(@Nonnull com.inductiveautomation.ignition.common.gson.JsonElement config, @Nonnull Class<T> clazz) throws AttributeMapperAdapterException Factory method for newAttributeMapper
instances- Type Parameters:
T
- the type of the value which this mapper will map- Parameters:
config
- the configuration for theAttributeMapper
clazz
- theClass
containing the type of the value which this mapper will map- Returns:
- the new
AttributeMapper
instance - Throws:
AttributeMapperAdapterException
- if there is an unexpected problem creating theAttributeMapper
-