Package in.juspay

Examples of in.juspay.PaymentService.makePayment()


        // PaymentStatus example call
        PaymentRequest paymentRequest = new PaymentRequest();
        //merchantId=juspay&orderId=1359115924989&cardNumber=4375511234567899&cardExpYear=2013&cardExpMonth=05&cardSecurityCode=111
        paymentRequest.withMerchantId("juspay").withOrderId("1359115924989").withCardNumber("4375511234567899").
                withCardExpYear("2013").withCardExpMonth("05").withCardSecurityCode("111");
        PaymentResponse paymentResponse = juspayService.makePayment(paymentRequest);
        log.info("Payment Response is:" + paymentResponse);

        /*
        String specialTestKey = "enter-the-special-key";
        PaymentService juspayExtendedService = new PaymentService().withEnvironment(Environment.PRODUCTION)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.