Class ItemToPaymentMethodConverter
- java.lang.Object
-
- com.labs64.netlicensing.schema.converter.ItemToPaymentMethodConverter
-
- All Implemented Interfaces:
Converter<Item,PaymentMethod>
public class ItemToPaymentMethodConverter extends Object
ConvertItem
entity intoPaymentMethod
object.
-
-
Constructor Summary
Constructors Constructor Description ItemToPaymentMethodConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PaymentMethod
convert(Item source)
Convert the source of type S to target type T.PaymentMethod
newTarget()
-
-
-
Method Detail
-
convert
public PaymentMethod convert(Item source) throws ConversionException
Description copied from interface:Converter
Convert the source of type S to target type T.- Specified by:
convert
in interfaceConverter<Item,PaymentMethod>
- Parameters:
source
- the source object to converter, which must be an instance of S- Returns:
- the converted object, which must be an instance of T
- Throws:
ConversionException
- if the source could not be converted to the desired target type
-
newTarget
public PaymentMethod newTarget()
-
-