Class AbstractRequestPopulator<SOURCE,​TARGET>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void addBooleanParameter​(PaymentData target, java.lang.String name, java.lang.Boolean value)
      Common method to add a Boolean parameter to the target Map<String, String>.
      protected void addRequestQueryParam​(PaymentData target, java.lang.String name, java.lang.String value)
      Common method to add a query parameter to the target Map<String, String>.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AbstractRequestPopulator

        public AbstractRequestPopulator()
    • 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 target Map<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 a Boolean parameter to the target Map<String, String>.
        Parameters:
        target - - the Map.
        name - - the query parameter name.
        value - - the Boolean query parameter value.