Modify the parameters in the paymentConfigurationBean section as needed:
<bean id="paymentConfigurationBean"
   		class ="com.edocs.common.services.payment.config.PaymentConfigurationBean" scope="singleton">
   		<property name="DDNName">
   			<value>ReportApp</value>
   		</property>
		<property name="creditCardRegisterFee">
   			<value>1.0</value>
   		</property>
		<property name="paymentAmountThreshold">
   			<value>NoLimit</value>
   		</property>
		<property name="paymentAmountGreaterthanAmountDue">
   			<value>Yes</value>
   		</property>
		<property name="minimumPayAmount">
   			<value>1.0</value>
   		</property>
		<property name="currencyPattern">
   			<value>##,##0.00</value>
   		</property>
		<property name="twoDecimalPattern">
   			<value>[0-9]*[G]*[0-9]*[D]?[0-9]{0,2}</value>
   		</property>
		<!-- For value Yes , it displays the warning message if payment amount is less than the amount due. for value No, not display the warning message -->
		<property name="paymentAmountLessthanAmountDue">
   			<value>Yes</value>
   		</property>
  </bean>