-
Notifications
You must be signed in to change notification settings - Fork 458
PR1992_getaujobdetails_sample code_modifications_ java #81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kapilkumar99
wants to merge
6
commits into
AuthorizeNet:master
Choose a base branch
from
kapilkumar99:PR1992_getaujobdetails_sample_code_modifications_java
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
002e289
PR1992_getaujobdetails_sample code_modifications
sudhirkumar2018 59dd17e
GetAccountUpdaterJobDetails review comment changes
JeevapriyaC 85aba41
GetAccountUpdaterJobDetails review comment changes
JeevapriyaC ba06a5c
GetAccountUpdateJobDetails review comment chnges(Default credentials …
JeevapriyaC 3f63071
GetAccountUpdaterJobDetails review comments change
JeevapriyaC 8e514f8
Merge branch 'master' into PR1992_getaujobdetails_sample_code_modific…
gnongsie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
*/ | ||
public class SampleCode { | ||
|
||
public static void main( String[] args ) | ||
public static void main( String[] args ) throws IllegalArgumentException, IllegalAccessException, NoSuchFieldException, SecurityException | ||
{ | ||
|
||
if (args.length == 0) | ||
|
@@ -97,6 +97,7 @@ private static void ShowMethods() | |
System.out.println(" CancelSubscription"); | ||
System.out.println(" UpdateSubscription"); | ||
System.out.println(" GetListOfSubscriptions"); | ||
System.out.println(" GetAccountUpdaterJobDetails"); | ||
System.out.println(" GetBatchStatistics"); | ||
System.out.println(" GetSettledBatchList"); | ||
System.out.println(" GetTransactionList"); | ||
|
@@ -134,19 +135,20 @@ private static void ShowMethods() | |
System.out.println(" GetAnAcceptPaymentPage"); | ||
} | ||
|
||
private static void RunMethod(String methodName) | ||
private static void RunMethod(String methodName) throws IllegalArgumentException, IllegalAccessException, NoSuchFieldException, SecurityException | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
// These are default transaction keys. | ||
// You can create your own keys in seconds by signing up for a sandbox account here: https://developer.authorize.net/sandbox/ | ||
String apiLoginId = "5KP3u95bQpv"; | ||
String transactionKey = "346HZ32z3fP4hTG2"; | ||
String apiLoginId = "mbld_api_%63ty4Rq"; | ||
|
||
String transactionKey = "123abc"; | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
//Update the payedId with which you want to run the sample code | ||
String payerId = "6ZSCSYG33VP8Q"; | ||
//Update the transactionId with which you want to run the sample code | ||
String transactionId = "123456"; | ||
|
||
String customerProfileId = "37905546"; | ||
String customerPaymentProfileId = "34461178"; | ||
String customerProfileId = "40204235"; | ||
String customerPaymentProfileId = "1000041617"; | ||
String customerAddressId = "1871959249"; | ||
|
||
String emailId = "[email protected]"; | ||
|
@@ -163,7 +165,8 @@ private static void RunMethod(String methodName) | |
// System.setProperty("https.proxyPort", "portNumber"); | ||
// System.setProperty("https.proxyUserName", "exampleUsername"); | ||
// System.setProperty("https.proxyPassword", "examplePassword"); | ||
|
||
|
||
|
||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
switch (methodName) { | ||
case "DecryptVisaCheckoutData": | ||
DecryptVisaCheckoutData.run(apiLoginId, transactionKey); | ||
|
@@ -342,6 +345,10 @@ private static void RunMethod(String methodName) | |
case "GetAnAcceptPaymentPage": | ||
GetAnAcceptPaymentPage.run(apiLoginId, transactionKey, amount); | ||
break; | ||
case "GetAccountUpdaterJobDetails": | ||
GetAccountUpdaterJobDetails.run(apiLoginId, transactionKey); | ||
break; | ||
|
||
default: | ||
ShowUsage(); | ||
break; | ||
|
178 changes: 178 additions & 0 deletions
178
src/main/java/net/authorize/sample/TransactionReporting/GetAccountUpdaterJobDetails.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
package net.authorize.sample.TransactionReporting; | ||
|
||
import java.util.ArrayList; | ||
import net.authorize.Environment; | ||
import net.authorize.api.contract.v1.ANetApiResponse; | ||
import net.authorize.api.contract.v1.AUJobTypeEnum; | ||
import net.authorize.api.contract.v1.AuDeleteType; | ||
import net.authorize.api.contract.v1.AuDetailsType; | ||
import net.authorize.api.contract.v1.AuUpdateType; | ||
import net.authorize.api.contract.v1.CreditCardMaskedType; | ||
import net.authorize.api.contract.v1.GetAUJobDetailsRequest; | ||
import net.authorize.api.contract.v1.GetAUJobDetailsResponse; | ||
import net.authorize.api.contract.v1.MerchantAuthenticationType; | ||
import net.authorize.api.contract.v1.MessageTypeEnum; | ||
import net.authorize.api.contract.v1.Paging; | ||
import net.authorize.api.controller.GetAUJobDetailsController; | ||
import net.authorize.api.controller.base.ApiOperationBase; | ||
|
||
public class GetAccountUpdaterJobDetails { | ||
|
||
public static ANetApiResponse run(String apiLoginId, String transactionKey) | ||
throws IllegalArgumentException, IllegalAccessException, NoSuchFieldException, SecurityException { | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
// Set the request to operate in either the sandbox or production environment | ||
ApiOperationBase.setEnvironment(Environment.SANDBOX); | ||
|
||
// Create object with merchant authentication details | ||
MerchantAuthenticationType merchantAuthenticationType = new MerchantAuthenticationType(); | ||
merchantAuthenticationType.setName(apiLoginId); | ||
merchantAuthenticationType.setTransactionKey(transactionKey); | ||
|
||
String month = "2018-08"; | ||
String reFid = "123456"; | ||
Paging paging = new Paging(); | ||
paging.setLimit(100); | ||
paging.setOffset(2); | ||
|
||
// Create the API request and set the parameters for this specific request | ||
GetAUJobDetailsRequest apiRequest = new GetAUJobDetailsRequest(); | ||
apiRequest.setMerchantAuthentication(merchantAuthenticationType); | ||
apiRequest.setPaging(paging); | ||
apiRequest.setRefId(reFid); | ||
apiRequest.setMonth(month); | ||
apiRequest.setModifiedTypeFilter(AUJobTypeEnum.ALL); | ||
|
||
// Call the controller | ||
GetAUJobDetailsController controller = new GetAUJobDetailsController(apiRequest); | ||
controller.execute(); | ||
|
||
GetAUJobDetailsResponse response = new GetAUJobDetailsResponse(); | ||
response = controller.getApiResponse(); | ||
|
||
// If API Response is OK, go ahead and check the transaction response | ||
if (response != null && response.getMessages().getResultCode() == MessageTypeEnum.OK) { | ||
|
||
System.out.println("SUCCESS: Get Account Updater job details for Month and year : " + month); | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if (response.getAuDetails() == null) { | ||
System.out.println("No GetAccountUpdaterjobdetails for this month and year."); | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return response; | ||
} | ||
|
||
ArrayList<AuUpdateType> updateTypeList = new ArrayList<AuUpdateType>(); | ||
ArrayList<AuDeleteType> deleteTypeList = new ArrayList<AuDeleteType>(); | ||
|
||
for (AuDetailsType details : response.getAuDetails().getAuUpdateOrAuDelete()) { | ||
|
||
System.out.println("---Customer profile details Start---"); | ||
System.out.println("customerProfileID:" + details.getCustomerProfileID()); | ||
System.out.println("customerPaymentProfileID:" + details.getCustomerPaymentProfileID()); | ||
System.out.println("customerFirstname:" + details.getFirstName()); | ||
System.out.println("customerLastname:" + details.getLastName()); | ||
System.out.println("updateTimeUTC:" + details.getUpdateTimeUTC()); | ||
System.out.println("reasonCode:" + details.getAuReasonCode()); | ||
System.out.println("reasonDescription:" + details.getReasonDescription()); | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if (details.getClass().getTypeName().toString().contains("AuUpdateType")) { | ||
|
||
updateTypeList.add((AuUpdateType) details); | ||
|
||
} else if (details.getClass().getTypeName().toString().contains("AuDeleteType")) { | ||
|
||
deleteTypeList.add((AuDeleteType) details); | ||
|
||
} | ||
|
||
if (!(updateTypeList.isEmpty())) { | ||
for (int i = 0; i < updateTypeList.size(); i++) { | ||
|
||
System.out.println("---AU Update Start---"); | ||
System.out.println("customerProfileID:" + details.getCustomerProfileID()); | ||
System.out.println("customerPaymentProfileID:" + details.getCustomerPaymentProfileID()); | ||
System.out.println("customerFirstname:" + details.getFirstName()); | ||
System.out.println("customerLastname:" + details.getLastName()); | ||
System.out.println("updateTimeUTC:" + details.getUpdateTimeUTC()); | ||
System.out.println("reasonCode:" + details.getAuReasonCode()); | ||
System.out.println("reasonDescription:" + details.getReasonDescription()); | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if ((updateTypeList.get(i).getSubscriptionIdList() != null) | ||
&& (updateTypeList.get(i).getSubscriptionIdList().getSubscriptionId() != null) | ||
&& (!updateTypeList.get(i).getSubscriptionIdList().getSubscriptionId().isEmpty())) { | ||
System.out.println("SubscriptionIdlist"); | ||
for (String subscriptionid : updateTypeList.get(i).getSubscriptionIdList() | ||
.getSubscriptionId()) | ||
System.out.println("SubscriptionId:" + subscriptionid); | ||
|
||
} | ||
|
||
if (updateTypeList.get(i).getNewCreditCard() != null) { | ||
CreditCardMaskedType newCreditCard = updateTypeList.get(i).getNewCreditCard(); | ||
System.out.println("---Fetching New Card Details---"); | ||
System.out.println("cardNumber:" + newCreditCard.getCardNumber()); | ||
System.out.println("expirationDate:" + newCreditCard.getExpirationDate()); | ||
System.out.println("cardType:" + newCreditCard.getCardType()); | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
} | ||
|
||
if (updateTypeList.get(i).getOldCreditCard() != null) { | ||
CreditCardMaskedType oldCreditCard = updateTypeList.get(i).getOldCreditCard(); | ||
System.out.println("---Fetching Old Card Details---"); | ||
System.out.println("cardNumber:" + oldCreditCard.getCardNumber()); | ||
System.out.println("expirationDate:" + oldCreditCard.getExpirationDate()); | ||
System.out.println("cardType:" + oldCreditCard.getCardType()); | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
} | ||
} | ||
} | ||
|
||
if (!(deleteTypeList.isEmpty())) { | ||
for (int i = 0; i < deleteTypeList.size(); i++) { | ||
|
||
System.out.println("---AU Delete Start---"); | ||
System.out.println("customerProfileID:" + details.getCustomerProfileID()); | ||
System.out.println("customerPaymentProfileID:" + details.getCustomerPaymentProfileID()); | ||
System.out.println("customerFirstname:" + details.getFirstName()); | ||
System.out.println("customerLastname:" + details.getLastName()); | ||
System.out.println("updateTimeUTC:" + details.getUpdateTimeUTC()); | ||
System.out.println("reasonCode:" + details.getAuReasonCode()); | ||
System.out.println("reasonDescription:" + details.getReasonDescription()); | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
|
||
if ((deleteTypeList.get(i).getSubscriptionIdList() != null) | ||
&& (deleteTypeList.get(i).getSubscriptionIdList().getSubscriptionId() != null) | ||
&& (!deleteTypeList.get(i).getSubscriptionIdList().getSubscriptionId().isEmpty())) { | ||
System.out.println("SubscriptionIdlist"); | ||
for (String subscriptionid : deleteTypeList.get(i).getSubscriptionIdList() | ||
.getSubscriptionId()) | ||
System.out.println("SubscriptionId:" + subscriptionid); | ||
|
||
} | ||
|
||
if (deleteTypeList.get(i).getCreditCard() != null) { | ||
|
||
CreditCardMaskedType creditCard = deleteTypeList.get(i).getCreditCard(); | ||
System.out.println("cardNumber:" + creditCard.getCardNumber()); | ||
System.out.println("expirationDate:" + creditCard.getExpirationDate()); | ||
System.out.println("cardType:" + creditCard.getCardType()); | ||
gnongsie marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
} | ||
} | ||
|
||
} | ||
} | ||
|
||
else { | ||
// Display the error code and message when response is null | ||
ANetApiResponse errorResponse = controller.getErrorResponse(); | ||
System.out.println("Failed to get response"); | ||
if (!errorResponse.getMessages().getMessage().isEmpty()) { | ||
System.out.println("Error: " + errorResponse.getMessages().getMessage().get(0).getCode() + " \n" | ||
+ errorResponse.getMessages().getMessage().get(0).getText()); | ||
} | ||
} | ||
|
||
return response; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.