Actions
Specification » History » Revision 13
« Previous |
Revision 13/19
(diff)
| Next »
Soh Keong, 07/11/2012 01:13 PM
Specification¶
Activity Diagram¶
Figure 1 showing the process flow from Russia mall to Uniteller Payment Gateway Page.
Programming Guide¶
Resources¶
SCM¶
see wiki
Classes¶
- main.java.com.ecosway.constants - CommonConstants, EMoneyType, Language, MeanType
- main.java.com.ecosway.model - Common, PaymentResponse, Personal, Uniteller
- main.java.com.ecosway.service - AuthorizationRequestService
- main.java.com.ecosway.service.impl - AuthorizationRequestServiceImpl
- main.java.com.ecosway.unitellerInterface - UnitellerInterface
- main.java.com.ecosway.utils - PropertiesUtils, SignatureUtils
- ru.uniteller.type - SOAPStruct_Helper, SOAPStruct
- ru.uniteller.wsdl - Uniteller, UnitellerLocator, UnitellerSoapBindingStub, UnitellerSoapPort, UnitellerSoapPortProxy
properties file¶
- application.properties
- shop.id - The e-shop identifier in the Uniteller system.
- login.id - The login assigned to the Merchant during the account creation in the Uniteller system.
- shop.password - The password assigned to the Merchant during the account creation in the Uniteller system.
- uniteller.url - As an address of the payment page of the payment gateway.
- uniteller.interface.table.name - Table Name of Uniteller Interface.
- mean.type - Credit Card Payment Type.
- emoney.type - Electronic Currency Type.
Database Table¶
CREATE TABLE ECOS.UNITELLER_INTERFACE ( ORDER_ID VARCHAR(18) NOT NULL, CHARGE_AMT DECIMAL(15,2), TRX_TYPE VARCHAR(20) NOT NULL, SHOPPER_REF_NO INTEGER NOT NULL, COMMENT VARCHAR(255), ERROR_MESSAGE VARCHAR(255), CURRENCY VARCHAR(3), ORDER_STATUS VARCHAR(100), IS_VALID CHARACTER NOT NULL, LOCAL_DATETIME TIMESTAMP, CREATE_DATETIME TIMESTAMP NOT NULL, MODIFY_DATETIME TIMESTAMP, PRIMARY KEY (ORDER_ID));
Integration¶
There are total 2 methods (getURL & updateStatusByOrderNo).
Get Uniteller URL
main.java.com.ecosway.service.AuthorizationRequestService service = new main.java.com.ecosway.service.impl.AuthorizationRequestServiceImpl(); String URL = service.getURL(Connection conn, String trxType, String orderNumber, String currency, double amount, String urlReturn, int lifeTime, int shopperRefNo, Language language, String comment, main.java.com.ecosway.model.Personal personal);
- conn - Database connection.
- trxType - The Type of Transaction.
- orderNumber - The unique order Number.
- currency - The currency of the order expressed as an ISO 4217 alpha code. (Value: main.java.com.ecosway.constants.CommonConstants.CURRENCY_)
- amount - The purchase amount in the currency.
- urlReturn - Page URL the Purchaser must be returned to when a transaction is performed in the Uniteller system.
- lifeTime - The form (page) lifetime in seconds, staring from the moment it was displayed.
- shopperRefNo - Member ID.
- language - The interface language code of the payment page. (Value: main.java.com.ecosway.constants.Language)
- comment - Payment comments.
- personal - firstName, lastName, middleName, email, phone, address, country, state, city and zip.
Get Server Call Back Status
main.java.com.ecosway.service.AuthorizationRequestService service = new main.java.com.ecosway.service.impl.AuthorizationRequestServiceImpl(); void service.updateStatusByOrderNo(Connection conn, String status, String orderNo, java.util.Date localDateTime);
- conn - Database connection.
- status - javax.servlet.http.HttpServletRequest.getParameter("Status").
- orderNo - javax.servlet.http.HttpServletRequest.getParameter("Order_ID")
- localDateTime - Russia payment date and time.
void service.updateFromGetResultRequest(Connection conn, String orderNo, java.util.Date localDateTime);
- conn - Database connection.
- orderNo - javax.servlet.http.HttpServletRequest.getParameter("Order_ID")
- localDateTime - Russia payment date and time.
Updated by Soh Keong over 12 years ago · 13 revisions