Interface TransactionSettingFactory
- All Known Implementing Classes:
PerformanceHintFactory
,ValidationApproachFactory
public interface TransactionSettingFactory
A TransactionSettingFactory returns a
TransactionSetting
implementation for a given value.- Since:
- 3.3.0
- Author:
- Jeen Broekstra
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
Name ofTransactionSetting
this factory producesgetTransactionSetting
(String value) Retrieve aTransactionSetting
with the supplied value.
-
Method Details
-
getName
String getName()Name ofTransactionSetting
this factory produces- Returns:
- the name of the
TransactionSetting
produced by this factory
-
getTransactionSetting
Retrieve aTransactionSetting
with the supplied value.- Parameters:
value
- theTransactionSetting
value- Returns:
- an optional
TransactionSetting
, empty if the factory can not produce one for the given value.
-