Class AbstractRequestPopulator<SOURCE,TARGET>
- java.lang.Object
-
- de.hybris.platform.acceleratorservices.payment.cybersource.converters.populators.request.AbstractRequestPopulator<SOURCE,TARGET>
-
- All Implemented Interfaces:
Populator<SOURCE,TARGET>
- Direct Known Subclasses:
CustomerInfoRequestPopulator,MappingLabelsPopulator,OrderInfoRequestPopulator,OrderPageAppearanceRequestPopulator,OrderPageConfirmationRequestPopulator,PaymentInfoRequestPopulator,SignatureRequestPopulator,SubscriptionSignatureRequestPopulator
public abstract class AbstractRequestPopulator<SOURCE,TARGET> extends java.lang.Object implements Populator<SOURCE,TARGET>
-
-
Constructor Summary
Constructors Constructor Description AbstractRequestPopulator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaddBooleanParameter(PaymentData target, java.lang.String name, java.lang.Boolean value)Common method to add aBooleanparameter to the targetMap<String,String>.protected voidaddRequestQueryParam(PaymentData target, java.lang.String name, java.lang.String value)Common method to add a query parameter to the targetMap<String,String>.
-
-
-
Method Detail
-
addRequestQueryParam
protected void addRequestQueryParam(PaymentData target, java.lang.String name, java.lang.String value)
Common method to add a query parameter to the targetMap<String,String>.- Parameters:
target- - the Map. name- - the query parameter name.value- - the query parameter value.
-
addBooleanParameter
protected void addBooleanParameter(PaymentData target, java.lang.String name, java.lang.Boolean value)
Common method to add aBooleanparameter to the targetMap<String,String>.- Parameters:
target- - the Map. name- - the query parameter name.value- - theBooleanquery parameter value.
-
-