Project

General

Profile

Specification » History » Revision 2

Revision 1 (Soh Keong, 01/06/2021 02:35 PM) → Revision 2/10 (Soh Keong, 01/06/2021 03:31 PM)

{{toc}} 

 h1. Specification 

 h1. Activity Diagram 
 !Ginota.png! 

 h2. Programming Guide 

 h3. Jar version  

 |_. version |_. Description          | 
 | 1.11        | Init                   | 

 h3. Jar File Download 

 "Jar":/redmine/attachments/download/556/SmsClient-1.11.jar 
 "Lib":/redmine/attachments/download/558/lib.rar 
 "Properties":redmine/attachments/download/557/ginota.properties 

 h3. properties file 

 * *ginota.properties* 

 # *ginota.api.key.{DB}.{country/project}* 
 # *ginota.api.secret.{DB}.{country/project}* 
 # *otp.validity.in.second.{DB}.{country/project}* 
 # *local.valid.period.in.second.{DB}.{country/project}* 
 # *url.send.otp* 
 # *url.verify.otp* 
 # *url.send.sms* 
 # *connection.timeout* 
 # *connection.read.timeout* 

 h2. Database Table 

 <pre> 
 CREATE TABLE OTP_INTERFACE ( 
	 OTP_ID VARCHAR(15) NOT NULL, 
	 MOBILE VARCHAR(15) NOT NULL,  
	 TRX_CODE VARCHAR(5) NOT NULL, 
	 STATUS_CODE VARCHAR(5), 
	 SHOPPER_REF_NO INTEGER,  
	 STATUS_DESC VARCHAR(100), 
	 REQUEST_ID VARCHAR(20), 
	 TOTAL_SMS INTEGER, 	
	 CREATE_DATETIME TIMESTAMP NOT NULL, 
	 MODIFY_DATETIME TIMESTAMP, 
	 ORDER_ID VARCHAR(15), 
	 PRIMARY KEY (OTP_ID)) 
 </pre> 

 h2. OTP Service 

 <pre> 
 com.cosway.ginota.service.OtpService service = new com.cosway.ginota.service.OtpService();  
 </pre> 

 h3. sendOTP  

 <pre> 
 com.cosway.ginota.bean.ResultBean result = service.sendOTP(Connection conn, com.cosway.ginota.bean.OTPBean otpBean) 
 </pre> 

 # *conn*             - Database connection. 
 # *otpBean*          - OTPBean object. 
 > * *shopperRefNo*      
 > * *otpId*             - Auto setter 
 > * *transactionCode* 
 > * *mobileTo* 
 > * *companyName*       -  

 # *result*          - ResultBean object. 
 > * *statusCode* 
 > * *statucDescription* 
 > * *requestId*   
 > * *messageId*      
 > * *totalSms*