diff --git a/README b/README deleted file mode 100644 index afe89d0..0000000 --- a/README +++ /dev/null @@ -1,54 +0,0 @@ -Authorize.Net Android SDK -========================= - -The Android SDK is meant to offer an easy approach to collecting payments -on the Android mobile devices. It's an addition to the Authorize.Net Java -SDK. The Android SDK provides a fast and easy way for Android developers -to quickly integrate mobile payments without having to write the boiler plate -code themselves that is necessary to communicate with the Authorize.Net gateway. - -The SDK is comprised of the following Authorize.Net APIs: - - * AIM - Advanced Integration Method - * Transaction Details - * CIM - Customer Information Manager - -Examples of implementation and integration will be published shortly. The examples do -not cover the app building process, but offer the necessary pieces of -information to help the developer add Authorize.Net payment gateway function- -ality to their app. - -Every example will require that the necessary Authorize.Net SDK components -exist in the project (either create a new project, or update a current project). - -Here are those steps: - -1. Add the Authorize.Net Android SDK library to your project in your -environment workspace. If you would like to easily import the SDK project into Eclipse, -run 'unzip eclipse_files.zip' from the command line in the anet_android_sdk -directory. Make sure the files get unzipped directly into the root SDK -directory. - -2. If your AndroidManifest.xml file doesn't already allow access to the -Internet and your phone state, make sure to add the following snippetd in the -manifest element. - - - - - -3. Add the according activity declarations to the AndroidManifest.xml within the -application element of your app. Every activity declaration is NOT necessary, -only the ones that are explicitly used in the app are required. - -4. The developer will need to create a layout that will be used to collect -the account login id and password. These two pieces of information should be -EditText objects. Additionally a cancel and validate/ok button will need to -be placed in the layout as well. They don't have to be visible, but they must -exist. The SDK takes the Android id's of these components and uses them when -it's necessary to login to the Authorize.Net gateway. The logic is handled by -the SDK, but the UI is flexible and must be implemented by the developer. - - - - diff --git a/README.md b/README.md old mode 100644 new mode 100755 index be4cdca..86528b3 --- a/README.md +++ b/README.md @@ -1,37 +1,97 @@ -**Authorize.Net Android SDK for Mobile Point of Sale Applications** -========================= - -The Android SDK provides a fast and easy way for Android developers -to quickly integrate card-present payments into their mobile Point-Of-Sale applications. - -To add the Android SDK to your project: - - -- Add the Authorize.Net Android SDK library to your project in your -environment workspace. If you would like to easily import the SDK project into Eclipse, -run 'unzip eclipse_files.zip' from the command line in the anet_android_sdk -directory. Make sure the files get unzipped directly into the root SDK -directory. - -- If your AndroidManifest.xml file doesn't already allow access to the -Internet and your phone state, make sure to add the following snippet in the -manifest element. -```xml - - - - ``` - -- Add the according activity declarations to the AndroidManifest.xml within the -application element of your app. Every activity declaration is NOT necessary, -only the ones that are explicitly used in the app are required. - -- The developer will need to create a layout that will be used to collect -the account login id and password. These two pieces of information should be -EditText objects. Additionally a cancel and validate/ok button will need to -be placed in the layout as well. They don't have to be visible, but they must -exist. The SDK takes the Android id's of these components and uses them when -it's necessary to login to the Authorize.Net gateway. The logic is handled by -the SDK, but the UI is flexible and must be implemented by the developer. - +# Authorize.Net In-Person Android SDK + +The Android SDK is meant to offer an easy approach to collecting payments on the Android mobile devices. It's an addition to the Authorize.Net Java +SDK. The Android SDK provides a fast and easy way for Android developers to quickly integrate mobile payments without having to write the boiler plate code themselves that is necessary to communicate with the Authorize.Net gateway. + +The Authorize.Net In-Person SDK also provides a Semi-Integrated Solution for EMV payment processing. The merchant's app invokes this SDK to complete an EMV transaction. The SDK handles the complex EMV workflow and securely submits the EMV transaction to Authorize.Net for processing. The merchant's application never touches any EMV data at any point. + + +The SDK is comprised of the following Authorize.Net APIs: + + * AIM - Advanced Integration Method + * Transaction Details + * CIM - Customer Information Manager + +Every application will require that the necessary Authorize.Net SDK components exist in the project (either create a new project, or update a current project). + +## Before you start the integration: + +1. If your AndroidManifest.xml file doesn't already allow access to the +Internet and your phone state, make sure to add the following snippet in the manifest element. + + ```xml + + + + ``` + +2. The developer will need to create a layout that will be used to collect account login id and password. These two pieces of information should be +EditText objects. Additionally a cancel and validate/ok button will need to be placed in the layout as well. They don't have to be visible, but they must exist. The SDK takes the Android id's of these components and uses them when it's necessary to login to the Authorize.Net gateway. The logic is handled by the SDK, but the UI is flexible and must be implemented by the developer. + + + +# Integration Guide + + +## Operational Workflow + +1. From POS application, select Pay By Card. + +2. Attached the card reader to the device if it is not already attached. + +3. Insert a card with an EMV chip and do not remove the card until the transaction is complete. Alternatively, swipe a non-EMV card. + +4. If only a single compatible payment app resides on the chip, the payment app is selected automatically. If prompted, select the payment app. For example, Visa credit or MasterCard debit. + +5. Confirm the amount. + +6. If at any time the user cancels the transaction, the transaction is cancelled. + +## Using the SDK to Create and Submit an EMV Transaction (using Android Studio) + +1. Import In-Person Android SDK framework to the merchant’s application. In Android Studio, create new module for emv-anet-sdk.aar by using File-New-New Module-Import jar/aar library. + +2. Update gradle build files + + a) add the following line to the app folder build.gradle file: + compile project(':emv-anet-sdk') + + b) add the following dependencies to the dependency section: + ``` + compile 'com.android.support:cardview-v7:23.3.0' + compile 'com.android.support:appcompat-v7:23.4.0' + compile 'com.madgag.spongycastle:prov:1.53.0.0' + compile 'org.apache.httpcomponents:httpcore:4.4.1' + compile 'org.apache.httpcomponents:httpclient:4.5' + testCompile 'junit:junit:4.12' + testCompile 'org.hamcrest:hamcrest-library:1.3'' + ``` + +3. Create merchant object using password authentication: + + a) create `PasswordAuthentication` object using login, password and deviceID + + b) create `Merchant` object using `PasswordAuthentication` and specified environment + + c) get session token using `SessionTokenAuthentication` and populate the field into `Merchant` + +4. Create EMV Transaction + + a) create `EMVTranasction` using Merchant and transaction amount + + b) create `EMVTransactionListener` to hold call back methods + + c) start EMV transaction + +### Success + +On success, onEMVTransactionSuccessful method will be called, with the result populated in net.authorize.aim.emv.Result object + +### Errors + +In case of a transaction error, the onEMVTransactionError method will be called, with specified EMVErrorCode and result object. + +In case of other errors, the onEMVReadError method will be called, with only EMVErrorCode specified. + +Refer to EMVErrorCode class for detailed error code. diff --git a/anet_java_sdk.properties b/anet_java_sdk.properties deleted file mode 100644 index 5e3df89..0000000 --- a/anet_java_sdk.properties +++ /dev/null @@ -1,28 +0,0 @@ -# -# Populate this file and put it into your home directory, -# named as anet_java_sdk.properties -# - -# API login/transaction key credentials -api.login.id=API_LOGIN_ID -transaction.key=TRANSACTION_KEY - -# Card Present transactions currently require different credentials. -cp.api.login.id=API_LOGIN_ID -cp.transaction.key=TRANSACTION_KEY -md5.hash.key=MD5_HASH_KEY - -# DPM merchant host -merchant.host=MERCHANT_HOST - -# Merchant accounts need have to have explicit support for unlinked credits. -# Set this value to TRUE or FALSE if support exists. -unlinked.credit.support=(TRUE|FALSE) - -# Mobile credential information -username=USERNAME -password=PASSWORD -mobile.device.id=MOBILE_DEVICE_ID - -# Notification email address -notification.email.address=NOTIFICATION_EMAIL_ADDRESS diff --git a/anet_java_sdk.properties.example b/anet_java_sdk.properties.example deleted file mode 100644 index 58e1e11..0000000 --- a/anet_java_sdk.properties.example +++ /dev/null @@ -1,29 +0,0 @@ -# -# Populate this file and put it into your home directory, -# named as anet_java_sdk.properties -# - -# API login/transaction key credentials -api.login.id=API_LOGIN_ID11 -transaction.key=TRANSACTION_KEY11 - -# Card Present transactions currently require different credentials. -cp.api.login.id=API_LOGIN_ID11 -cp.transaction.key=TRANSACTION_KEY11 -md5.hash.key=MD5_HASH_KEY11 - -# DPM merchant host -merchant.host=MERCHANT_HOST11 - -# Merchant accounts need have to have explicit support for unlinked credits. -# Set this value to TRUE or FALSE if support exists. -unlinked.credit.support=(TRUE|FALSE) - -# Mobile credential information -username=USERNAME -password=PASSWORD -mobile.device.id=MOBILE_DEVICE_ID - -# Notification email address -notification.email.address=NOTIFICATION_EMAIL_ADDRESS - diff --git a/build.properties.txt b/build.properties.txt deleted file mode 100644 index 58e1e11..0000000 --- a/build.properties.txt +++ /dev/null @@ -1,29 +0,0 @@ -# -# Populate this file and put it into your home directory, -# named as anet_java_sdk.properties -# - -# API login/transaction key credentials -api.login.id=API_LOGIN_ID11 -transaction.key=TRANSACTION_KEY11 - -# Card Present transactions currently require different credentials. -cp.api.login.id=API_LOGIN_ID11 -cp.transaction.key=TRANSACTION_KEY11 -md5.hash.key=MD5_HASH_KEY11 - -# DPM merchant host -merchant.host=MERCHANT_HOST11 - -# Merchant accounts need have to have explicit support for unlinked credits. -# Set this value to TRUE or FALSE if support exists. -unlinked.credit.support=(TRUE|FALSE) - -# Mobile credential information -username=USERNAME -password=PASSWORD -mobile.device.id=MOBILE_DEVICE_ID - -# Notification email address -notification.email.address=NOTIFICATION_EMAIL_ADDRESS - diff --git a/build.xml b/build.xml deleted file mode 100644 index 2811af7..0000000 --- a/build.xml +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Authorize.Net Java SDK]]> - - - - diff --git a/docs/javadocs/allclasses-frame.html b/docs/javadocs/allclasses-frame.html deleted file mode 100644 index 6a54bdd..0000000 --- a/docs/javadocs/allclasses-frame.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - -All Classes (Authorize.Net Java SDK) - - - - - - - - - - - -All Classes -
- - - - - -
AbstractMerchantAuthentication -
-AbstractMobileMerchantAuthentication -
-Address -
-AuthNetField -
-AVSCode -
-BankAccount -
-BankAccountType -
-BasicXmlDocument -
-BatchDetails -
-BatchStatistics -
-Button -
-ButtonType -
-CardCodeResponseType -
-CardType -
-CAVVResponseType -
-CreditCard -
-Customer -
-CustomerProfile -
-CustomerType -
-DateUtil -
-DeviceType -
-DirectResponse -
-DriversLicense -
-ECheck -
-ECheckType -
-EmailReceipt -
-Environment -
-FDSFilter -
-FDSFilterActionType -
-Fingerprint -
-HostedPaymentFormSettings -
-HostedReceiptPageSettings -
-HttpClient -
-ImageButton -
-IMerchantAuthentication -
-ITransaction -
-LinkMethod -
-Luhn -
-MarketType -
-Merchant -
-MerchantAuthenticationType -
-MerchantContact -
-MessageType -
-MobileDevice -
-NOCCode -
-NVPTransaction -
-Order -
-OrderItem -
-PasswordAuthentication -
-Payment -
-PaymentMethod -
-PaymentProfile -
-PaymentSchedule -
-PermissionType -
-PrepaidCard -
-ReportingDetails -
-ReportingTransactionType -
-ResponseCode -
-ResponseField -
-ResponseParser -
-ResponseReasonCode -
-Result -
-Result -
-Result -
-Result -
-Result -
-Result -
-Result -
-Result -
-Result -
-ReturnCode -
-SessionTokenAuthentication -
-SettlementStateType -
-ShippingAddress -
-ShippingCharges -
-SplitTenderPayment -
-SplitTenderStatus -
-StringUtils -
-Subscription -
-SubscriptionStatusType -
-SubscriptionUnitType -
-TextButton -
-Transaction -
-Transaction -
-Transaction -
-Transaction -
-Transaction -
-Transaction -
-Transaction -
-TransactionDetails -
-TransactionKeyAuthentication -
-TransactionStatusType -
-TransactionType -
-TransactionType -
-TransactionType -
-TransactionType -
-TransactionType -
-TransactionType -
-ValidationModeType -
-XMLTransaction -
-XmlTreeUtil -
-
- - - diff --git a/docs/javadocs/allclasses-noframe.html b/docs/javadocs/allclasses-noframe.html deleted file mode 100644 index 62095e4..0000000 --- a/docs/javadocs/allclasses-noframe.html +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - -All Classes (Authorize.Net Java SDK) - - - - - - - - - - - -All Classes -
- - - - - -
AbstractMerchantAuthentication -
-AbstractMobileMerchantAuthentication -
-Address -
-AuthNetField -
-AVSCode -
-BankAccount -
-BankAccountType -
-BasicXmlDocument -
-BatchDetails -
-BatchStatistics -
-Button -
-ButtonType -
-CardCodeResponseType -
-CardType -
-CAVVResponseType -
-CreditCard -
-Customer -
-CustomerProfile -
-CustomerType -
-DateUtil -
-DeviceType -
-DirectResponse -
-DriversLicense -
-ECheck -
-ECheckType -
-EmailReceipt -
-Environment -
-FDSFilter -
-FDSFilterActionType -
-Fingerprint -
-HostedPaymentFormSettings -
-HostedReceiptPageSettings -
-HttpClient -
-ImageButton -
-IMerchantAuthentication -
-ITransaction -
-LinkMethod -
-Luhn -
-MarketType -
-Merchant -
-MerchantAuthenticationType -
-MerchantContact -
-MessageType -
-MobileDevice -
-NOCCode -
-NVPTransaction -
-Order -
-OrderItem -
-PasswordAuthentication -
-Payment -
-PaymentMethod -
-PaymentProfile -
-PaymentSchedule -
-PermissionType -
-PrepaidCard -
-ReportingDetails -
-ReportingTransactionType -
-ResponseCode -
-ResponseField -
-ResponseParser -
-ResponseReasonCode -
-Result -
-Result -
-Result -
-Result -
-Result -
-Result -
-Result -
-Result -
-Result -
-ReturnCode -
-SessionTokenAuthentication -
-SettlementStateType -
-ShippingAddress -
-ShippingCharges -
-SplitTenderPayment -
-SplitTenderStatus -
-StringUtils -
-Subscription -
-SubscriptionStatusType -
-SubscriptionUnitType -
-TextButton -
-Transaction -
-Transaction -
-Transaction -
-Transaction -
-Transaction -
-Transaction -
-Transaction -
-TransactionDetails -
-TransactionKeyAuthentication -
-TransactionStatusType -
-TransactionType -
-TransactionType -
-TransactionType -
-TransactionType -
-TransactionType -
-TransactionType -
-ValidationModeType -
-XMLTransaction -
-XmlTreeUtil -
-
- - - diff --git a/docs/javadocs/constant-values.html b/docs/javadocs/constant-values.html deleted file mode 100644 index ca5043b..0000000 --- a/docs/javadocs/constant-values.html +++ /dev/null @@ -1,606 +0,0 @@ - - - - - - -Constant Field Values (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Constant Field Values

-
-
-Contents - - - - - - -
-net.authorize.*
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
net.authorize.ITransaction
-public static final intCURRENCY_DECIMAL_PLACES2
-public static final java.lang.StringEMPTY_STRING""
-public static final java.lang.StringFALSE"FALSE"
-public static final intQUANTITY_DECIMAL_PLACES4
-public static final java.lang.StringTRUE"TRUE"
-public static final java.lang.StringVERSION"3.1"
-public static final java.lang.StringZERO_STRING"0.00"
- -

- -

- - - - - - - - - - - - - - - - - -
net.authorize.Merchant
-public static final intMAX_LOGIN_LENGTH20
-public static final intMAX_TRANSACTION_KEY_LENGTH16
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
net.authorize.data.Address
-public static final intMAX_ADDRESS_LENGTH60
-public static final intMAX_CITY_LENGTH40
-public static final intMAX_COMPANY_LENGTH50
-public static final intMAX_COUNTRY_LENGTH60
-public static final intMAX_FIRST_NAME_LENGTH50
-public static final intMAX_LAST_NAME_LENGTH50
-public static final intMAX_STATE_LENGTH40
-public static final intMAX_ZIP_LENGTH20
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
net.authorize.data.Customer
-public static final intMAX_ADDRES_LENGTH60
-public static final intMAX_CITY_LENGTH40
-public static final intMAX_COMPANY_LENGTH50
-public static final intMAX_COUNTRY_LENGTH60
-public static final intMAX_CUSTOMER_ID_LENGTH20
-public static final intMAX_CUSTOMER_IP_LENGTH15
-public static final intMAX_EMAIL_LENGTH255
-public static final intMAX_FAX_LENGTH25
-public static final intMAX_FIRST_NAME_LENGTH50
-public static final intMAX_LAST_NAME_LENGTH50
-public static final intMAX_STATE_LENGTH40
-public static final intMAX_ZIP_LENGTH20
- -

- -

- - - - - - - - - - - - -
net.authorize.data.EmailReceipt
-public static final intMAX_EMAIL_LENGTH255
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
net.authorize.data.Order
-public static final intMAX_DESCRIPTION_LENGTH255
-public static final intMAX_INVOICE_NUMBER_LENGTH20
-public static final intMAX_ORDER_ITEM_SIZE30
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
net.authorize.data.OrderItem
-public static final intMAX_ITEM_DESCRIPTION_LENGTH255
-public static final intMAX_ITEM_ID_LENGTH31
-public static final intMAX_ITEM_NAME_LENGTH31
- -

- -

- - - - - - - - - - - - -
net.authorize.data.ShippingCharges
-public static final intMAX_PO_NUMBER_LENGTH25
- -

- -

- - - - - - - - - - - - -
net.authorize.data.cim.DirectResponse
-public static final java.lang.StringRESPONSE_DELIMITER","
- -

- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
net.authorize.data.echeck.BankAccount
-public static final intMAX_ACCOUNT_NUMBER_LENGTH20
-public static final intMAX_BANK_ACCOUNT_LENGTH50
-public static final intMAX_BANK_CHECK_NUMBER_LENGTH15
-public static final intMAX_BANK_NAME_LENGTH50
-public static final intMAX_ROUTING_NUMBER_LENGTH9
- -

- -

- - - - - - - - - - - - - - - - - - - - - - -
net.authorize.sim.Transaction
-public static final java.lang.StringBRACKET_PIPE_DELIMITER"<|>"
-public static final intMAX_RECEIPT_LINK_TEXT_LENGTH50
-public static final java.lang.StringPAYMENT_FORM"PAYMENT_FORM"
- -

- -

- - - - - - - - - - - - -
net.authorize.util.HttpClient
-public static final java.lang.StringENCODING"UTF-8"
- -

- -

- - - - - - - - - - - - - - - - - -
net.authorize.xml.Result
-public static final java.lang.StringERROR"Error"
-public static final java.lang.StringOK"Ok"
- -

- -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/deprecated-list.html b/docs/javadocs/deprecated-list.html deleted file mode 100644 index 626b97e..0000000 --- a/docs/javadocs/deprecated-list.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - -Deprecated List (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Deprecated API

-
-
-Contents - - - - - - - - - - - - -
-Deprecated Methods
net.authorize.Environment.getBaseUrl() -
-          As of release 2.0.0, replaced by Environment.getNVPBaseUrl() 
net.authorize.TransactionType.getValue() -
-          As of release 2.0.0, replaced by TransactionType.getNVPValue() 
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/help-doc.html b/docs/javadocs/help-doc.html deleted file mode 100644 index bf1305d..0000000 --- a/docs/javadocs/help-doc.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - -API Help (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-How This API Document Is Organized

-
-This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.

-Overview

-
- -

-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

-

-Package

-
- -

-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:

    -
  • Interfaces (italic)
  • Classes
  • Enums
  • Exceptions
  • Errors
  • Annotation Types
-
-

-Class/Interface

-
- -

-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    -
  • Class inheritance diagram
  • Direct Subclasses
  • All Known Subinterfaces
  • All Known Implementing Classes
  • Class/interface declaration
  • Class/interface description -

    -

  • Nested Class Summary
  • Field Summary
  • Constructor Summary
  • Method Summary -

    -

  • Field Detail
  • Constructor Detail
  • Method Detail
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
- -

-Annotation Type

-
- -

-Each annotation type has its own separate page with the following sections:

    -
  • Annotation Type declaration
  • Annotation Type description
  • Required Element Summary
  • Optional Element Summary
  • Element Detail
-
- -

-Enum

-
- -

-Each enum has its own separate page with the following sections:

    -
  • Enum declaration
  • Enum description
  • Enum Constant Summary
  • Enum Constant Detail
-
-

-Use

-
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-

-Tree (Class Hierarchy)

-
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
    -
  • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
  • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-

-Deprecated API

-
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-

-Index

-
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-

-Prev/Next

-These links take you to the next or previous class, interface, package, or related page.

-Frames/No Frames

-These links show and hide the HTML frames. All pages are available with or without frames. -

-

-Serialized Form

-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. -

-

-Constant Field Values

-The Constant Field Values page lists the static final fields and their values. -

- - -This help file applies to API documentation generated using the standard doclet. - -
-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/index-all.html b/docs/javadocs/index-all.html deleted file mode 100644 index b231aca..0000000 --- a/docs/javadocs/index-all.html +++ /dev/null @@ -1,4017 +0,0 @@ - - - - - - -Index (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -A B C D E F G H I L M N O P Q R S T V X Z
-

-A

-
-
AbstractMerchantAuthentication - Class in net.authorize.auth
Abstract authenticator.
AbstractMerchantAuthentication() - -Constructor for class net.authorize.auth.AbstractMerchantAuthentication -
  -
AbstractMobileMerchantAuthentication - Class in net.authorize.auth
Abstract mobile merchant authenticator.
AbstractMobileMerchantAuthentication() - -Constructor for class net.authorize.auth.AbstractMobileMerchantAuthentication -
  -
addAuthentication(BasicXmlDocument) - -Method in class net.authorize.xml.XMLTransaction -
Add authentication to the request. -
addAuthentication(BasicXmlDocument, boolean) - -Method in class net.authorize.xml.XMLTransaction -
Add authentication to the request. -
addBatchStatistics(BatchStatistics) - -Method in class net.authorize.data.reporting.BatchDetails -
Add batch statistics object to the existing list. -
addCharEntity(int, StringBuilder) - -Static method in class net.authorize.util.StringUtils -
Convert integer to char entity -
addCustomerEmail(BasicXmlDocument) - -Method in class net.authorize.notification.Transaction -
Add the customerEmail to the request. -
addEmailSettings(BasicXmlDocument) - -Method in class net.authorize.notification.Transaction -
Add emailSettings to the request. -
addError(String) - -Method in class net.authorize.util.BasicXmlDocument -
  -
addExtraOption(String, String) - -Method in class net.authorize.cim.Transaction -
Add extra option to the extra options map. -
addFieldToRename(String, String) - -Method in class net.authorize.sim.Transaction -
Add a field to rename. -
addFormInput(String, String) - -Method in class net.authorize.sim.Transaction -
Add an input name and replacement data to the list of fields that should - not be auto populated in the createForm method. -
addOrderItem(OrderItem) - -Method in class net.authorize.data.Order -
Adds an OrderItem to the list of OrderItems - provided the list of items - isn't already at the max of 30. -
addPayment(Payment) - -Method in class net.authorize.data.cim.PaymentProfile -
Add a Payment container to the payment list. -
addPaymentProfile(PaymentProfile) - -Method in class net.authorize.cim.Transaction -
Add a payment profile. -
addRefId(BasicXmlDocument) - -Method in class net.authorize.xml.XMLTransaction -
Add the refId to the request. -
Address - Class in net.authorize.data
 
Address() - -Constructor for class net.authorize.data.Address -
  -
address - -Variable in class net.authorize.data.Address -
  -
addressId - -Variable in class net.authorize.data.Address -
  -
addShipToAddress(Address) - -Method in class net.authorize.data.cim.CustomerProfile -
Add an address to the ship to list. -
addTransId(BasicXmlDocument) - -Method in class net.authorize.notification.Transaction -
Add the transId to the request. -
ARB_EXPIRY_DATE_FORMAT - -Static variable in class net.authorize.data.creditcard.CreditCard -
  -
AuthNetField - Enum in net.authorize
Enumeration to handle all the x_ field names and xml element names
AVSCode - Enum in net.authorize.data.creditcard
Address Verification Service (AVS) response codes.
-
-

-B

-
-
BankAccount - Class in net.authorize.data.echeck
 
BankAccount() - -Constructor for class net.authorize.data.echeck.BankAccount -
  -
bankAccount - -Variable in class net.authorize.xml.XMLTransaction -
  -
bankAccountName - -Variable in class net.authorize.data.echeck.BankAccount -
  -
bankAccountNumber - -Variable in class net.authorize.data.echeck.BankAccount -
  -
bankAccountType - -Variable in class net.authorize.data.echeck.BankAccount -
  -
BankAccountType - Enum in net.authorize.data.echeck
Supported bank account types.
bankCheckNumber - -Variable in class net.authorize.data.echeck.BankAccount -
  -
bankName - -Variable in class net.authorize.data.echeck.BankAccount -
  -
BasicXmlDocument - Class in net.authorize.util
 
BasicXmlDocument() - -Constructor for class net.authorize.util.BasicXmlDocument -
  -
BasicXmlDocument(String) - -Constructor for class net.authorize.util.BasicXmlDocument -
  -
BatchDetails - Class in net.authorize.data.reporting
Batch related reporting information.
BatchStatistics - Class in net.authorize.data.reporting
Batch statistical data.
billTo - -Variable in class net.authorize.data.cim.PaymentProfile -
  -
billToAddress - -Variable in class net.authorize.NVPTransaction -
  -
billToAddress - -Variable in class net.authorize.xml.XMLTransaction -
  -
BRACKET_PIPE_DELIMITER - -Static variable in class net.authorize.sim.Transaction -
  -
Button - Class in net.authorize.sim.button
 
Button() - -Constructor for class net.authorize.sim.button.Button -
  -
buttonType - -Variable in class net.authorize.sim.button.Button -
  -
ButtonType - Enum in net.authorize.sim.button
 
-
-

-C

-
-
CardCodeResponseType - Enum in net.authorize.data.reporting
Card code type.
CardType - Enum in net.authorize.data.creditcard
Supported payment card types.
CAVVResponseType - Enum in net.authorize.data.reporting
Cardholder Authentication Verification type.
city - -Variable in class net.authorize.data.Address -
  -
clearRequest() - -Method in class net.authorize.xml.Result -
Clears the request data for security reasons. -
clearXmlResponse() - -Method in class net.authorize.xml.Result -
Clears the XML response and doc to work around memory issues on mobile - devices. -
company - -Variable in class net.authorize.data.Address -
  -
convertStreamToLoggableString(ITransaction, InputStream) - -Static method in class net.authorize.util.HttpClient -
Converts a response inputstream into a string. -
country - -Variable in class net.authorize.data.Address -
  -
createAddress() - -Static method in class net.authorize.data.Address -
  -
createAIMTransaction(TransactionType, BigDecimal) - -Method in class net.authorize.Merchant -
Creates a new AIM Transaction (includes Card Present) -
createARBTransaction(TransactionType, Subscription) - -Method in class net.authorize.Merchant -
Creates a new ARB Transaction. -
createBankAccount() - -Static method in class net.authorize.data.echeck.BankAccount -
  -
createBatchDetail() - -Static method in class net.authorize.data.reporting.BatchDetails -
  -
createBatchStatistics() - -Static method in class net.authorize.data.reporting.BatchStatistics -
  -
createButton(String, int, int, int, String) - -Static method in class net.authorize.sim.button.ImageButton -
  -
createButton(String, String) - -Static method in class net.authorize.sim.button.TextButton -
  -
createCIMTransaction(TransactionType) - -Method in class net.authorize.Merchant -
Creates a new CIM Transaction. -
createCreditCard() - -Static method in class net.authorize.data.creditcard.CreditCard -
  -
createCustomer() - -Static method in class net.authorize.data.Customer -
  -
createCustomer(CustomerType) - -Static method in class net.authorize.data.Customer -
  -
createCustomerProfile() - -Static method in class net.authorize.data.cim.CustomerProfile -
Create a new CustomerProfile object -
createDirectResponse(String) - -Static method in class net.authorize.data.cim.DirectResponse -
Create a validation direct response from a passed in string. -
createECheck() - -Static method in class net.authorize.data.echeck.ECheck -
  -
createElement(String) - -Method in class net.authorize.util.BasicXmlDocument -
  -
createEmailReceipt() - -Static method in class net.authorize.data.EmailReceipt -
  -
createEnvironment(String, String) - -Static method in enum net.authorize.Environment -
If a custom environment needs to be supported, this convenience create - method can be used to pass in custom URLS for NVP and xml gateways. -
createFDSFilter() - -Static method in class net.authorize.data.reporting.FDSFilter -
  -
createFingerprint(String, String, long, String) - -Static method in class net.authorize.sim.Fingerprint -
Creates a fingerprint with raw data fields. -
createFingerprint(Merchant, long, BigDecimal) - -Static method in class net.authorize.sim.Fingerprint -
Create a fingerprint with object based fields. -
createForm(String, String, Button) - -Method in class net.authorize.sim.Transaction -
Return an HTML form with all inputs. -
createHostedPaymentFormSettings() - -Static method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
createHostedReceiptPageSettings() - -Static method in class net.authorize.data.sim.HostedReceiptPageSettings -
Creates an instance of a HostedReceiptPageSettings class. -
createMerchant(Environment, IMerchantAuthentication) - -Static method in class net.authorize.Merchant -
  -
createMerchant(Environment, IMerchantAuthentication, String) - -Static method in class net.authorize.Merchant -
  -
createMerchantAuthentication(String, String, String) - -Static method in class net.authorize.auth.PasswordAuthentication -
Creates a password authenticator. -
createMerchantAuthentication(String, String, String) - -Static method in class net.authorize.auth.SessionTokenAuthentication -
Creates a session token authenticator. -
createMerchantAuthentication(SessionTokenAuthentication, String) - -Static method in class net.authorize.auth.SessionTokenAuthentication -
Creates a session token authenticator from an existing auth, but with an - updated sessionToken. -
createMerchantAuthentication(String, String) - -Static method in class net.authorize.auth.TransactionKeyAuthentication -
Creates a transaction key authenticator. -
createMerchantContact() - -Static method in class net.authorize.data.mobile.MerchantContact -
Create a merchant contact. -
createMerchantContact(String, String, String, String, String, String) - -Static method in class net.authorize.data.mobile.MerchantContact -
Create a merchant contact. -
createMobileDevice() - -Static method in class net.authorize.data.mobile.MobileDevice -
Create a MobileDevice. -
createMobileDevice(String, String, String) - -Static method in class net.authorize.data.mobile.MobileDevice -
Create a MobileDevice from description & phone number. -
createMobileTransaction(TransactionType) - -Method in class net.authorize.Merchant -
Creates a new Mobile Transaction. -
createNotificationTransaction(TransactionType) - -Method in class net.authorize.Merchant -
Creates a new notification Transaction. -
createOrder() - -Static method in class net.authorize.data.Order -
  -
createOrderItem() - -Static method in class net.authorize.data.OrderItem -
  -
createPayment(CreditCard) - -Static method in class net.authorize.data.Payment -
  -
createPayment(BankAccount) - -Static method in class net.authorize.data.Payment -
  -
createPaymentProfile() - -Static method in class net.authorize.data.cim.PaymentProfile -
  -
createPaymentSchedule() - -Static method in class net.authorize.data.arb.PaymentSchedule -
  -
createPrepaidCard() - -Static method in class net.authorize.data.aim.PrepaidCard -
  -
createRelayResponseRedirectUrl(String, Map<String, String[]>) - -Static method in class net.authorize.sim.Transaction -
Build a relay response url for the relay response redirect. -
createReportingDetails() - -Static method in class net.authorize.data.reporting.ReportingDetails -
  -
createReportingTransaction(TransactionType) - -Method in class net.authorize.Merchant -
Creates a new Reporting Transaction. -
createResult(ITransaction, String) - -Static method in class net.authorize.aim.Result -
Create a Result from the request and response data. -
createResult(ITransaction, String) - -Static method in class net.authorize.arb.Result -
  -
createResult(ITransaction, String) - -Static method in class net.authorize.cim.Result -
  -
createResult(ITransaction, String) - -Static method in class net.authorize.mobile.Result -
  -
createResult(ITransaction, String) - -Static method in class net.authorize.notification.Result -
  -
createResult(ITransaction, String) - -Static method in class net.authorize.reporting.Result -
  -
createResult(Map<ResponseField, String>) - -Static method in class net.authorize.sim.Result -
  -
createResult(String, String, Map<String, String[]>) - -Static method in class net.authorize.sim.Result -
Create a result for SIM based on the response map. -
createResult(ITransaction, String) - -Static method in class net.authorize.xml.Result -
Create a Result from the request and response data. -
createShippingAddress() - -Static method in class net.authorize.data.ShippingAddress -
  -
createShippingCharges() - -Static method in class net.authorize.data.ShippingCharges -
  -
createSIMTransaction(TransactionType, long, BigDecimal) - -Method in class net.authorize.Merchant -
Creates a new SIM Transaction. -
createSplitTenderPayment() - -Static method in class net.authorize.data.aim.SplitTenderPayment -
  -
createSubscription() - -Static method in class net.authorize.data.arb.Subscription -
Create a subscription. -
createTransaction(Merchant, TransactionType, BigDecimal) - -Static method in class net.authorize.aim.Transaction -
  -
createTransaction(Merchant, TransactionType, Subscription) - -Static method in class net.authorize.arb.Transaction -
Creates a transaction. -
createTransaction(Merchant, TransactionType) - -Static method in class net.authorize.cim.Transaction -
Creates a transaction. -
createTransaction(Merchant, TransactionType) - -Static method in class net.authorize.mobile.Transaction -
Creates a transaction. -
createTransaction(Merchant, TransactionType, String, String, EmailReceipt) - -Static method in class net.authorize.notification.Transaction -
Create a transaction. -
createTransaction(Merchant, TransactionType) - -Static method in class net.authorize.notification.Transaction -
Create a transaction. -
createTransaction(Merchant, TransactionType) - -Static method in class net.authorize.reporting.Transaction -
Creates a transaction. -
createTransaction(Transaction, Hashtable<ResponseField, String>) - -Static method in class net.authorize.sim.Transaction -
Create a transaction from a responseMap. -
createTransaction(Merchant, TransactionType, long, BigDecimal) - -Static method in class net.authorize.sim.Transaction -
Create a Transaction for a given merchant. -
createTransaction(Merchant, TransactionType, BigDecimal) - -Static method in class net.authorize.sim.Transaction -
Create a Transaction for a merchant. -
createTransactionDetails() - -Static method in class net.authorize.data.reporting.TransactionDetails -
  -
CreditCard - Class in net.authorize.data.creditcard
Credit card specific information.
CreditCard() - -Constructor for class net.authorize.data.creditcard.CreditCard -
  -
creditCard - -Variable in class net.authorize.NVPTransaction -
  -
creditCard - -Variable in class net.authorize.xml.XMLTransaction -
  -
CURRENCY_DECIMAL_PLACES - -Static variable in interface net.authorize.ITransaction -
  -
currentRequest - -Variable in class net.authorize.xml.XMLTransaction -
  -
Customer - Class in net.authorize.data
Customer specific information.
Customer() - -Constructor for class net.authorize.data.Customer -
  -
customer - -Variable in class net.authorize.NVPTransaction -
  -
customer - -Variable in class net.authorize.xml.XMLTransaction -
  -
customerPaymentProfileId - -Variable in class net.authorize.data.cim.PaymentProfile -
  -
customerPaymentProfileIdList - -Variable in class net.authorize.cim.Result -
  -
customerProfile - -Variable in class net.authorize.cim.Result -
  -
CustomerProfile - Class in net.authorize.data.cim
 
customerProfileId - -Variable in class net.authorize.data.cim.CustomerProfile -
  -
customerProfileIdList - -Variable in class net.authorize.cim.Result -
  -
customerShippingAddressIdList - -Variable in class net.authorize.cim.Result -
  -
customerType - -Variable in class net.authorize.data.cim.PaymentProfile -
  -
CustomerType - Enum in net.authorize.data
 
-
-

-D

-
-
DATE_FORMAT - -Static variable in class net.authorize.data.reporting.ReportingDetails -
  -
DATE_FORMAT_FULL - -Static variable in class net.authorize.data.reporting.ReportingDetails -
  -
DateUtil - Class in net.authorize.util
 
DateUtil() - -Constructor for class net.authorize.util.DateUtil -
  -
description - -Variable in class net.authorize.data.cim.CustomerProfile -
  -
description - -Variable in class net.authorize.data.Order -
  -
DeviceType - Enum in net.authorize.aim.cardpresent
DeviceType is used for Card Present transactions.
DirectResponse - Class in net.authorize.data.cim
 
directResponseList - -Variable in class net.authorize.cim.Result -
  -
DriversLicense - Class in net.authorize.data
 
DriversLicense() - -Constructor for class net.authorize.data.DriversLicense -
  -
dump() - -Method in class net.authorize.util.BasicXmlDocument -
  -
dump(boolean) - -Method in class net.authorize.util.BasicXmlDocument -
  -
dumpToDisk(String) - -Method in class net.authorize.util.BasicXmlDocument -
  -
dumpToDisk(String, boolean) - -Method in class net.authorize.util.BasicXmlDocument -
  -
-
-

-E

-
-
ECheck - Class in net.authorize.data.echeck
Container used to hold ECheck related information.
ECheck() - -Constructor for class net.authorize.data.echeck.ECheck -
  -
eCheck - -Variable in class net.authorize.NVPTransaction -
  -
eCheckType - -Variable in class net.authorize.data.echeck.BankAccount -
  -
ECheckType - Enum in net.authorize.data.echeck
eCheck.Net transaction types supported by the Authorize.Net Payment Gateway - - ARC - Accounts Receivable Conversion - BOC - Back Office Conversion - CCD - Cash Concentration or Disbursement - PPD - Prearranged Payment and Deposit Entry - TEL - Telephone-Initiated Entry - WEB - Internet-Initiated Entry
email - -Variable in class net.authorize.data.cim.CustomerProfile -
  -
EmailReceipt - Class in net.authorize.data
Merchants can opt to send a payment gateway generated email receipt to - customers who provide an email address with their transaction.
emailReceipt - -Variable in class net.authorize.NVPTransaction -
  -
emailReceipt - -Variable in class net.authorize.xml.XMLTransaction -
  -
EMPTY_STRING - -Static variable in interface net.authorize.ITransaction -
  -
ENCAP_CHAR_DELIMITER - -Static variable in class net.authorize.sim.Transaction -
  -
ENCODING - -Static variable in class net.authorize.util.HttpClient -
  -
Environment - Enum in net.authorize
Determines which environment to post transactions against.
environment - -Variable in class net.authorize.NVPTransaction -
  -
ERROR - -Static variable in class net.authorize.xml.Result -
  -
execute(Environment, ITransaction) - -Static method in class net.authorize.util.HttpClient -
Executes a Transaction against a given Environment. -
executeXML(Environment, ITransaction) - -Static method in class net.authorize.util.HttpClient -
Executes a Transaction against a given Environment. -
extraOptions - -Variable in class net.authorize.cim.Transaction -
  -
-
-

-F

-
-
FALSE - -Static variable in interface net.authorize.ITransaction -
  -
faxNumber - -Variable in class net.authorize.data.Address -
  -
FDSFilter - Class in net.authorize.data.reporting
Fraud Detection Suite filter enumeration.
FDSFilterActionType - Enum in net.authorize.data.reporting
The action taken for a transaction that triggered one or more of the - Advanced Fraud Detection Suite filters.
findByCode(String) - -Static method in enum net.authorize.data.echeck.NOCCode -
  -
findByCode(String) - -Static method in enum net.authorize.data.echeck.ReturnCode -
  -
findByFieldName(String) - -Static method in enum net.authorize.ResponseField -
Lookup a ResponseField by it's field name. -
findByName(String) - -Static method in enum net.authorize.data.CustomerType -
Lookup a CustomerType by it's name. -
findByReasonCode(int) - -Static method in enum net.authorize.ResponseReasonCode -
Lookup a response reason code by the reason response code itself. -
findByReasonCode(String) - -Static method in enum net.authorize.ResponseReasonCode -
Lookup a response reason code by the reason response code itself. -
findByResponseCode(int) - -Static method in enum net.authorize.ResponseCode -
Lookup a ResponseCode by it's response code. -
findByResponseCode(String) - -Static method in enum net.authorize.ResponseCode -
Lookup a ResponseCode by it's response code. -
findByValue(String) - -Static method in enum net.authorize.aim.cardpresent.DeviceType -
Lookup a DeviceType by it's value. -
findByValue(String) - -Static method in enum net.authorize.aim.cardpresent.MarketType -
Lookup a MarketType by it's value. -
findByValue(String) - -Static method in enum net.authorize.data.creditcard.AVSCode -
  -
findByValue(String) - -Static method in enum net.authorize.data.creditcard.CardType -
  -
findByValue(String) - -Static method in enum net.authorize.data.echeck.BankAccountType -
  -
findByValue(String) - -Static method in enum net.authorize.data.echeck.ECheckType -
  -
findByValue(String) - -Static method in enum net.authorize.data.PermissionType -
Lookup a permission by it's value. -
findByValue(String) - -Static method in enum net.authorize.data.reporting.CardCodeResponseType -
  -
findByValue(String) - -Static method in enum net.authorize.data.reporting.CAVVResponseType -
  -
findByValue(String) - -Static method in enum net.authorize.data.reporting.FDSFilterActionType -
  -
findByValue(String) - -Static method in enum net.authorize.xml.MessageType -
Lookup a response reason code by the reason response code itself. -
Fingerprint - Class in net.authorize.sim
 
firstName - -Variable in class net.authorize.data.Address -
  -
fromValue(String) - -Static method in enum net.authorize.data.arb.SubscriptionStatusType -
  -
fromValue(String) - -Static method in enum net.authorize.data.arb.SubscriptionUnitType -
  -
fromValue(String) - -Static method in enum net.authorize.data.reporting.ReportingTransactionType -
  -
fromValue(String) - -Static method in enum net.authorize.data.reporting.SettlementStateType -
  -
fromValue(String) - -Static method in enum net.authorize.data.reporting.TransactionStatusType -
  -
-
-

-G

-
-
get(int) - -Static method in enum net.authorize.ResponseField -
Get the ResponseField identified by the order specified. -
getAccountNumber() - -Method in class net.authorize.aim.Result -
Return the account number. -
getAccountNumber() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getAccountNumber() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getAccountType() - -Method in class net.authorize.aim.Result -
Return the account card type. -
getAccountType() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getAccountType() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getAccountType() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getAction() - -Method in class net.authorize.data.reporting.FDSFilter -
  -
getAddress() - -Method in class net.authorize.data.Address -
  -
getAddress() - -Method in class net.authorize.data.Customer -
  -
getAddress() - -Method in class net.authorize.data.mobile.MerchantContact -
  -
getAddressId() - -Method in class net.authorize.data.Address -
  -
getAlt() - -Method in class net.authorize.sim.button.ImageButton -
  -
getAmount() - -Method in class net.authorize.data.arb.Subscription -
Get the subscription amount. -
getApprovalCode() - -Method in class net.authorize.cim.Transaction -
  -
getApprovedAmount() - -Method in class net.authorize.data.aim.PrepaidCard -
  -
getApprovedAmount() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getAuthAmount() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getAuthCode() - -Method in class net.authorize.aim.Result -
Return the authorization code. -
getAuthCode() - -Method in class net.authorize.aim.Transaction -
  -
getAuthCode() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getAuthCode() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getAuthorizationCode() - -Method in class net.authorize.sim.Transaction -
Get the authorization code of the transaction. -
getAvsCode() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getAvsResponse() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getAvsResultCode() - -Method in class net.authorize.aim.Result -
Return the AVS result code. -
getBackgroundColor() - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
getBackgroundUrl() - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
getBalanceOnCard() - -Method in class net.authorize.data.aim.PrepaidCard -
  -
getBalanceOnCard() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getBankAccount() - -Method in class net.authorize.data.Payment -
  -
getBankAccount() - -Method in interface net.authorize.ITransaction -
  -
getBankAccount() - -Method in class net.authorize.NVPTransaction -
Returns the bank account/eCheck account information. -
getBankAccount() - -Method in class net.authorize.xml.XMLTransaction -
  -
getBankAccountName() - -Method in class net.authorize.data.echeck.BankAccount -
  -
getBankAccountNumber() - -Method in class net.authorize.data.echeck.BankAccount -
  -
getBankAccountNumberMasked() - -Method in class net.authorize.cim.Transaction -
  -
getBankAccountType() - -Method in class net.authorize.data.echeck.BankAccount -
  -
getBankCheckNumber() - -Method in class net.authorize.data.echeck.BankAccount -
  -
getBankName() - -Method in class net.authorize.data.echeck.BankAccount -
  -
getBankRoutingNumberMasked() - -Method in class net.authorize.cim.Transaction -
  -
getBaseUrl() - -Method in enum net.authorize.Environment -
Deprecated. As of release 2.0.0, replaced by Environment.getNVPBaseUrl() -
getBatch() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getBatchDetailsList() - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
getBatchFirstSettlementDate() - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
getBatchId() - -Method in class net.authorize.data.reporting.BatchDetails -
  -
getBatchId() - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
getBatchLastSettlementDate() - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
getBatchStatisticsList() - -Method in class net.authorize.data.reporting.BatchDetails -
  -
getBillTo() - -Method in class net.authorize.data.cim.PaymentProfile -
Gets the value of the billTo property. -
getBillTo() - -Method in class net.authorize.data.Customer -
  -
getBirthDate() - -Method in class net.authorize.data.DriversLicense -
  -
getBorder() - -Method in class net.authorize.sim.button.ImageButton -
  -
getButtonType() - -Method in class net.authorize.sim.button.Button -
  -
getCardCode() - -Method in class net.authorize.cim.Transaction -
  -
getCardCode() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getCardCodeResponse() - -Method in class net.authorize.aim.Result -
Return the card code response. -
getCardCodeResponse() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getCardholderAuthenticationIndicator() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getCardholderAuthenticationValue() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getCardType() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getCardType(String) - -Static method in class net.authorize.util.Luhn -
Return the CardType by inspecting the first digits of the card number. -
getCAVVResponse() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getCavvResultCode() - -Method in class net.authorize.aim.Result -
Return the CAVV result code. -
getChargeAmount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getChargebackAmount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getChargebackCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getChargeChargebackAmount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getChargeChargebackCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getChargeCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getChargeReturnedItemsAmount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getChargeReturnedItemsCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getCIMValue() - -Method in enum net.authorize.TransactionType -
Return the value needed for CIM integrations. -
getCity() - -Method in class net.authorize.data.Address -
  -
getCity() - -Method in class net.authorize.data.Customer -
  -
getCity() - -Method in class net.authorize.data.mobile.MerchantContact -
  -
getCode() - -Method in enum net.authorize.data.echeck.NOCCode -
  -
getCode() - -Method in enum net.authorize.data.echeck.ReturnCode -
  -
getCode() - -Method in enum net.authorize.ResponseCode -
  -
getCompany() - -Method in class net.authorize.data.Address -
  -
getCompany() - -Method in class net.authorize.data.Customer -
  -
getCompanyName() - -Method in class net.authorize.data.mobile.MerchantContact -
  -
getCorrectionNoticeCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getCountry() - -Method in class net.authorize.data.Address -
  -
getCountry() - -Method in class net.authorize.data.Customer -
  -
getCreditCard() - -Method in class net.authorize.data.Payment -
  -
getCreditCard() - -Method in interface net.authorize.ITransaction -
  -
getCreditCard() - -Method in class net.authorize.NVPTransaction -
  -
getCreditCard() - -Method in class net.authorize.sim.Transaction -
Get the CreditCard associated with the transaction. -
getCreditCard() - -Method in class net.authorize.xml.XMLTransaction -
  -
getCreditCardNumber() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getCreditCardNumberMasked() - -Method in class net.authorize.cim.Transaction -
  -
getCssClass() - -Method in class net.authorize.sim.button.TextButton -
  -
getCurrencyCode() - -Method in class net.authorize.sim.Transaction -
Get the currency code for Card Present transactions. -
getCurrentRequest() - -Method in class net.authorize.xml.XMLTransaction -
Returns the current request. -
getCurrentResponse() - -Method in class net.authorize.sim.Transaction -
Return a response XML doc if the transaction was a Card Present transaction. -
getCustomer() - -Method in class net.authorize.data.arb.Subscription -
Get the customer container. -
getCustomer() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getCustomer() - -Method in interface net.authorize.ITransaction -
  -
getCustomer() - -Method in class net.authorize.NVPTransaction -
  -
getCustomer() - -Method in class net.authorize.sim.Transaction -
Get the Customer information associated with the transaction. -
getCustomer() - -Method in class net.authorize.xml.XMLTransaction -
  -
getCustomerEmailAddress() - -Method in class net.authorize.notification.Transaction -
  -
getCustomerId() - -Method in class net.authorize.data.Customer -
  -
getCustomerIP() - -Method in class net.authorize.data.Customer -
  -
getCustomerIP() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getCustomerPaymentProfile() - -Method in class net.authorize.cim.Result -
Get the first/only payment profile from a possible list of many -
getCustomerPaymentProfileId() - -Method in class net.authorize.cim.Transaction -
  -
getCustomerPaymentProfileId() - -Method in class net.authorize.data.cim.PaymentProfile -
  -
getCustomerPaymentProfileIdList() - -Method in class net.authorize.cim.Result -
  -
getCustomerPaymentProfileList() - -Method in class net.authorize.cim.Result -
  -
getCustomerProfile() - -Method in class net.authorize.cim.Result -
  -
getCustomerProfileId() - -Method in class net.authorize.cim.Result -
Get the first/only customer profile id from a possible list of many -
getCustomerProfileId() - -Method in class net.authorize.data.cim.CustomerProfile -
Get the customer profile id. -
getCustomerProfileIdList() - -Method in class net.authorize.cim.Result -
  -
getCustomerShippingAddress() - -Method in class net.authorize.cim.Result -
Get the customer shipping address. -
getCustomerShippingAddressId() - -Method in class net.authorize.cim.Transaction -
  -
getCustomerShippingAddressIdList() - -Method in class net.authorize.cim.Result -
  -
getCustomerType() - -Method in class net.authorize.data.cim.PaymentProfile -
Gets the value of the customerType property. -
getCustomerType() - -Method in class net.authorize.data.Customer -
  -
getDateFromFormattedDate(String, String) - -Static method in class net.authorize.util.DateUtil -
  -
getDeclineCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getDescription() - -Method in class net.authorize.data.cim.CustomerProfile -
Gets the value of the description property. -
getDescription() - -Method in enum net.authorize.data.creditcard.AVSCode -
  -
getDescription() - -Method in enum net.authorize.data.echeck.NOCCode -
  -
getDescription() - -Method in class net.authorize.data.mobile.MobileDevice -
Get the description of the mobile device. -
getDescription() - -Method in class net.authorize.data.Order -
  -
getDescription() - -Method in enum net.authorize.data.reporting.CardCodeResponseType -
  -
getDescription() - -Method in enum net.authorize.data.reporting.CAVVResponseType -
  -
getDescription() - -Method in enum net.authorize.ResponseCode -
  -
getDeviceType() - -Method in class net.authorize.Merchant -
  -
getDirectResponseList() - -Method in class net.authorize.cim.Result -
Get the directResponse list -
getDirectResponseMap() - -Method in class net.authorize.data.cim.DirectResponse -
  -
getDirectResponseString() - -Method in class net.authorize.data.cim.DirectResponse -
  -
getDocument() - -Method in class net.authorize.util.BasicXmlDocument -
  -
getDocumentElement() - -Method in class net.authorize.util.BasicXmlDocument -
  -
getDuplicateTxnWindowSeconds() - -Method in class net.authorize.Merchant -
  -
getDutyAmount() - -Method in class net.authorize.data.ShippingCharges -
  -
getDutyItemDescription() - -Method in class net.authorize.data.ShippingCharges -
  -
getDutyItemName() - -Method in class net.authorize.data.ShippingCharges -
  -
getECheck() - -Method in class net.authorize.NVPTransaction -
  -
getECheck() - -Method in class net.authorize.sim.Transaction -
  -
getECheckType() - -Method in class net.authorize.data.echeck.BankAccount -
  -
getElementText(Element, String) - -Static method in class net.authorize.util.BasicXmlDocument -
Helper for getting element text from a parent. -
getElementText(Element, String, boolean) - -Static method in class net.authorize.util.BasicXmlDocument -
Helper for getting element text from a parent. -
getElementText(Element, String) - -Static method in class net.authorize.xml.Result -
Local wrapper for getting element text from a parent. -
getElementText(Element, String, boolean) - -Static method in class net.authorize.xml.Result -
Local wrapper for getting element text from a parent. -
getEmail() - -Method in class net.authorize.data.cim.CustomerProfile -
Gets the value of the email property. -
getEmail() - -Method in class net.authorize.data.Customer -
  -
getEmailReceipt() - -Method in interface net.authorize.ITransaction -
  -
getEmailReceipt() - -Method in class net.authorize.NVPTransaction -
  -
getEmailReceipt() - -Method in class net.authorize.sim.Transaction -
Get the EmailReceipt associated with the transaction. -
getEmailReceipt() - -Method in class net.authorize.xml.XMLTransaction -
  -
getEnvironment() - -Method in class net.authorize.Merchant -
Get the Environment that transactions will be posted against. -
getEnvironment() - -Method in class net.authorize.NVPTransaction -
  -
getEnvironment() - -Method in class net.authorize.sim.Transaction -
  -
getErrorCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getErrors() - -Method in class net.authorize.util.BasicXmlDocument -
  -
getExpirationDate() - -Method in class net.authorize.data.creditcard.CreditCard -
Return the expiration date. -
getExpirationMonth() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getExpirationYear() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getExtraOptions() - -Method in class net.authorize.cim.Transaction -
  -
getFax() - -Method in class net.authorize.data.Customer -
  -
getFaxNumber() - -Method in class net.authorize.data.Address -
  -
getFDSFilterAction() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getFDSFilterList() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getFieldName() - -Method in enum net.authorize.AuthNetField -
  -
getFieldName() - -Method in enum net.authorize.ResponseField -
  -
getFieldsToRename() - -Method in class net.authorize.sim.Transaction -
  -
getFingerprint() - -Method in class net.authorize.sim.Transaction -
  -
getFingerprintHash() - -Method in class net.authorize.sim.Fingerprint -
Get the fingerprint hash. -
getFirstName() - -Method in class net.authorize.data.Address -
  -
getFirstName() - -Method in class net.authorize.data.Customer -
  -
getFirstName() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getFooter() - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
getFooterEmailReceipt() - -Method in class net.authorize.data.EmailReceipt -
  -
getFormattedDate(Date, String) - -Static method in class net.authorize.util.DateUtil -
  -
getFormInputs() - -Method in class net.authorize.sim.Transaction -
Get the field names that should not be auto populated - in the createForm method. -
getFreightAmount() - -Method in class net.authorize.data.ShippingCharges -
  -
getFreightDescription() - -Method in class net.authorize.data.ShippingCharges -
  -
getFreightItemName() - -Method in class net.authorize.data.ShippingCharges -
  -
getHeader() - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
getHeaderEmailReceipt() - -Method in class net.authorize.data.EmailReceipt -
  -
getHeight() - -Method in class net.authorize.sim.button.ImageButton -
  -
getHostedPaymentFormSettings() - -Method in class net.authorize.sim.Transaction -
  -
getHostedReceiptPageSettings() - -Method in class net.authorize.sim.Transaction -
  -
getId() - -Method in class net.authorize.data.Customer -
  -
getIntervaLength() - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
getInvoiceNumber() - -Method in class net.authorize.data.Order -
  -
getInvoiceNumber() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getItemDescription() - -Method in class net.authorize.data.OrderItem -
  -
getItemId() - -Method in class net.authorize.data.OrderItem -
  -
getItemName() - -Method in class net.authorize.data.OrderItem -
  -
getItemPrice() - -Method in class net.authorize.data.OrderItem -
  -
getItemQuantity() - -Method in class net.authorize.data.OrderItem -
  -
getLastName() - -Method in class net.authorize.data.Address -
  -
getLastName() - -Method in class net.authorize.data.Customer -
  -
getLastName() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getLicense() - -Method in class net.authorize.data.Customer -
  -
getLinkColor() - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
getLinkMethod() - -Method in class net.authorize.data.sim.HostedReceiptPageSettings -
  -
getLinkText() - -Method in class net.authorize.data.sim.HostedReceiptPageSettings -
  -
getLinkUrl() - -Method in class net.authorize.data.sim.HostedReceiptPageSettings -
  -
getMarketType() - -Method in class net.authorize.Merchant -
  -
getMD5Value() - -Method in interface net.authorize.ITransaction -
  -
getMD5Value() - -Method in class net.authorize.Merchant -
  -
getMD5Value() - -Method in class net.authorize.NVPTransaction -
  -
getMD5Value() - -Method in class net.authorize.sim.Transaction -
  -
getMD5Value() - -Method in class net.authorize.xml.XMLTransaction -
  -
getMerchant() - -Method in interface net.authorize.ITransaction -
  -
getMerchant() - -Method in class net.authorize.NVPTransaction -
Return the Merchant container. -
getMerchant() - -Method in class net.authorize.xml.XMLTransaction -
Return the Merchant container. -
getMerchantAuthentication() - -Method in class net.authorize.Merchant -
Get the merchant authenticator. -
getMerchantAuthenticationType() - -Method in class net.authorize.auth.AbstractMerchantAuthentication -
  -
getMerchantAuthenticationType() - -Method in interface net.authorize.auth.IMerchantAuthentication -
Returns the merchant authentication type. -
getMerchantContact() - -Method in class net.authorize.mobile.Result -
  -
getMerchantCustomerId() - -Method in class net.authorize.data.cim.CustomerProfile -
Gets the value of the merchantCustomerId property. -
getMerchantDefinedField(String) - -Method in class net.authorize.sim.Transaction -
Get a merchant defined field. -
getMerchantDefinedMap() - -Method in class net.authorize.aim.Result -
Return the merchant defined fields map. -
getMerchantDefinedMap() - -Method in class net.authorize.aim.Transaction -
  -
getMerchantDefinedMap() - -Method in class net.authorize.sim.Transaction -
Get the merchant defined data map. -
getMerchantEmail() - -Method in class net.authorize.Merchant -
  -
getMerchantLogoUrl() - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
getMessages() - -Method in class net.authorize.xml.Result -
  -
getMethod() - -Method in enum net.authorize.data.PaymentMethod -
  -
getMobileDevice() - -Method in class net.authorize.mobile.Transaction -
  -
getMobileDeviceId() - -Method in class net.authorize.auth.AbstractMobileMerchantAuthentication -
Mobile device id. -
getMobileDeviceId() - -Method in class net.authorize.data.mobile.MobileDevice -
  -
getName() - -Method in class net.authorize.auth.AbstractMerchantAuthentication -
  -
getName() - -Method in interface net.authorize.auth.IMerchantAuthentication -
Return the name associated used in conjunction with the authentication value. -
getName() - -Method in class net.authorize.data.arb.Subscription -
Get the name of the subscription. -
getName() - -Method in class net.authorize.data.reporting.FDSFilter -
  -
getName() - -Method in class net.authorize.sim.button.TextButton -
  -
getNocReason() - -Method in enum net.authorize.data.echeck.NOCCode -
  -
getNotes() - -Method in enum net.authorize.ResponseReasonCode -
  -
getNumber() - -Method in class net.authorize.data.DriversLicense -
  -
getNVPBaseUrl() - -Method in enum net.authorize.Environment -
Return the name-value-pair base url. -
getNVPValue() - -Method in enum net.authorize.TransactionType -
Return the value needed for SIM/DPM integrations. -
getOrder() - -Method in class net.authorize.data.arb.Subscription -
  -
getOrder() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getOrder() - -Method in interface net.authorize.ITransaction -
  -
getOrder() - -Method in class net.authorize.NVPTransaction -
  -
getOrder() - -Method in class net.authorize.sim.Transaction -
Get the Order associated with the transaction. -
getOrder() - -Method in class net.authorize.xml.XMLTransaction -
  -
getOrderItems() - -Method in class net.authorize.data.Order -
  -
getParseTime() - -Method in class net.authorize.util.BasicXmlDocument -
  -
getPayment() - -Method in class net.authorize.data.arb.Subscription -
Get the payment container. -
getPayment() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getPaymentList() - -Method in class net.authorize.data.cim.PaymentProfile -
  -
getPaymentMethod() - -Method in class net.authorize.data.reporting.BatchDetails -
  -
getPaymentProfileList() - -Method in class net.authorize.cim.Transaction -
  -
getPaymentTransactionType() - -Method in class net.authorize.cim.Transaction -
  -
getPhone() - -Method in class net.authorize.data.Customer -
  -
getPhone() - -Method in class net.authorize.data.mobile.MerchantContact -
  -
getPhoneNumber() - -Method in class net.authorize.data.Address -
  -
getPhoneNumber() - -Method in class net.authorize.data.mobile.MobileDevice -
Get the phone number of the mobile device. -
getPrepaidBalanceRemaining() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getPrepaidCard() - -Method in class net.authorize.aim.Result -
Return the prepaid card information. -
getPurchaseOrderNumber() - -Method in class net.authorize.data.Order -
  -
getPurchaseOrderNumber() - -Method in class net.authorize.data.ShippingCharges -
  -
getReasonResponseCode() - -Method in class net.authorize.sim.Result -
  -
getReasonText() - -Method in enum net.authorize.ResponseReasonCode -
  -
getRefId() - -Method in class net.authorize.aim.Transaction -
  -
getRefId() - -Method in class net.authorize.arb.Transaction -
  -
getRefId() - -Method in class net.authorize.cim.Result -
  -
getRefId() - -Method in class net.authorize.mobile.Transaction -
  -
getRefId() - -Method in class net.authorize.xml.Result -
Returns the refId. -
getRefId() - -Method in class net.authorize.xml.XMLTransaction -
  -
getRefTransId() - -Method in class net.authorize.aim.Result -
Return the payment gateway assigned transaction ID of an original - transaction -
getRefTransId() - -Method in class net.authorize.aim.Transaction -
  -
getRefTransId() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getRefundAmount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getRefundChargebackAmount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getRefundChargebackCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getRefundCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getRefundReturnedItemsAmount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getRefundReturnedItemsCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getRelayResponseUrl() - -Method in class net.authorize.sim.Transaction -
SIM applications use relay response. -
getReportingDetails() - -Method in class net.authorize.reporting.Result -
  -
getReportingDetails() - -Method in class net.authorize.reporting.Transaction -
  -
getRequestedAmount() - -Method in class net.authorize.data.aim.PrepaidCard -
  -
getRequestedAmount() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getRequestedAmount() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getRequestMap() - -Method in class net.authorize.sim.Transaction -
  -
getRequestTransaction() - -Method in class net.authorize.Result -
  -
getRequestTransactionType() - -Method in class net.authorize.xml.Result -
Returns the "generic" Enum transaction type. -
getResponseCode() - -Method in class net.authorize.aim.Result -
Return the ResponseCode -
getResponseCode() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getResponseCode() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getResponseCode() - -Method in enum net.authorize.ResponseReasonCode -
  -
getResponseCode() - -Method in class net.authorize.sim.Result -
  -
getResponseField(ResponseField) - -Method in class net.authorize.sim.Transaction -
Returns the payment gateway response data for a specific ResponseField. -
getResponseMap() - -Method in class net.authorize.sim.Result -
  -
getResponseMap() - -Method in class net.authorize.sim.Transaction -
Return the payment gateway response data map. -
getResponseOrder() - -Method in enum net.authorize.ResponseField -
  -
getResponseReasonCode() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getResponseReasonCode() - -Method in enum net.authorize.ResponseReasonCode -
  -
getResponseText() - -Method in class net.authorize.aim.Result -
Return the response text. -
getResponseText() - -Method in class net.authorize.sim.Result -
  -
getResponseToCustomer() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getResponsOrder() - -Method in enum net.authorize.ResponseField -
Get the true response order. -
getResultCode() - -Method in class net.authorize.xml.Result -
Returns the result code. -
getResultSubscriptionId() - -Method in class net.authorize.arb.Result -
Returns the result subscription id. -
getReturnedItemAmount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getReturnedItemCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getReturnType() - -Method in enum net.authorize.data.echeck.ReturnCode -
  -
getRoutingNumber() - -Method in class net.authorize.data.echeck.BankAccount -
  -
getSchedule() - -Method in class net.authorize.data.arb.Subscription -
Get the payment schedule of the subscription. -
getSecret() - -Method in class net.authorize.auth.AbstractMerchantAuthentication -
  -
getSecret() - -Method in interface net.authorize.auth.IMerchantAuthentication -
Return the authentication secret/value associated with the name. -
getSequence() - -Method in class net.authorize.sim.Fingerprint -
Get the sequence that was used in creating the fingerprint. -
getSessionToken() - -Method in class net.authorize.xml.Result -
Return the sesssionToken that was passed back. -
getSettleAmount() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getSettlementState() - -Method in class net.authorize.data.reporting.BatchDetails -
  -
getSettlementTimeLocal() - -Method in class net.authorize.data.reporting.BatchDetails -
  -
getSettlementTimeUTC() - -Method in class net.authorize.data.reporting.BatchDetails -
  -
getShippingAddress() - -Method in interface net.authorize.ITransaction -
  -
getShippingAddress() - -Method in class net.authorize.NVPTransaction -
  -
getShippingAddress() - -Method in class net.authorize.sim.Transaction -
Get the ShippingAddress for the transaction request. -
getShippingAddress() - -Method in class net.authorize.xml.XMLTransaction -
  -
getShippingCharges() - -Method in class net.authorize.data.Order -
Get the shipping charges associated with this order. -
getShippingCharges() - -Method in interface net.authorize.ITransaction -
  -
getShippingCharges() - -Method in class net.authorize.NVPTransaction -
  -
getShippingCharges() - -Method in class net.authorize.sim.Transaction -
Get the ShippingCharges associated with the transaction. -
getShippingCharges() - -Method in class net.authorize.xml.XMLTransaction -
  -
getShipTo() - -Method in class net.authorize.data.Customer -
  -
getShipToAddress() - -Method in class net.authorize.data.cim.CustomerProfile -
Return the first (perhaps only) address in the list. -
getShipToAddressList() - -Method in class net.authorize.data.cim.CustomerProfile -
  -
getShortTitle() - -Method in enum net.authorize.data.echeck.ReturnCode -
  -
getSplitTenderId() - -Method in class net.authorize.aim.Result -
Return the split tender transaction id. -
getSplitTenderId() - -Method in class net.authorize.aim.Transaction -
  -
getSplitTenderId() - -Method in class net.authorize.cim.Transaction -
  -
getSplitTenderId() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getSplitTenderPayments() - -Method in class net.authorize.aim.Result -
Return a list of split tender payment information. -
getSplitTenderStatus() - -Method in class net.authorize.cim.Transaction -
  -
getSrc() - -Method in class net.authorize.sim.button.ImageButton -
  -
getStartDate() - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
getState() - -Method in class net.authorize.data.Address -
  -
getState() - -Method in class net.authorize.data.Customer -
  -
getState() - -Method in class net.authorize.data.DriversLicense -
  -
getState() - -Method in class net.authorize.data.mobile.MerchantContact -
  -
getSubmitTimeLocal() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getSubmitTimeUTC() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getSubscriptionId() - -Method in class net.authorize.data.arb.Subscription -
Get the subscription id. -
getSubscriptionStatus() - -Method in class net.authorize.arb.Result -
  -
getSubscriptionUnit() - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
getTaxAmount() - -Method in class net.authorize.data.ShippingCharges -
  -
getTaxDescription() - -Method in class net.authorize.data.ShippingCharges -
  -
getTaxId() - -Method in class net.authorize.data.Customer -
  -
getTaxItemName() - -Method in class net.authorize.data.ShippingCharges -
  -
getText() - -Method in enum net.authorize.xml.MessageType -
  -
getTextColor() - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
getTimeStamp() - -Method in class net.authorize.sim.Fingerprint -
Get the timestamp that was used in creating the fingerprint. -
getTotalAmount() - -Method in class net.authorize.aim.Transaction -
  -
getTotalAmount() - -Method in class net.authorize.data.Order -
Return the total amount of the order. -
getTotalOccurrences() - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
getTrack1() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getTrack2() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
getTransactionDetailList() - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
getTransactionId() - -Method in class net.authorize.cim.Transaction -
  -
getTransactionId() - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
getTransactionId() - -Method in class net.authorize.sim.Transaction -
Return the payment gateway assigned transaction ID of the transaction. -
getTransactionResponseErrors() - -Method in class net.authorize.aim.Result -
Returns a list of transaction response errors. -
getTransactionResponseMessages() - -Method in class net.authorize.aim.Result -
Return the transaction response messages. -
getTransactionStatus() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getTransactionType() - -Method in class net.authorize.aim.Transaction -
  -
getTransactionType() - -Method in class net.authorize.arb.Transaction -
  -
getTransactionType() - -Method in class net.authorize.cim.Transaction -
  -
getTransactionType() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getTransactionType() - -Method in interface net.authorize.ITransaction -
  -
getTransactionType() - -Method in class net.authorize.mobile.Transaction -
  -
getTransactionType() - -Method in class net.authorize.notification.Transaction -
  -
getTransactionType() - -Method in class net.authorize.NVPTransaction -
  -
getTransactionType() - -Method in class net.authorize.reporting.Transaction -
  -
getTransactionType() - -Method in class net.authorize.sim.Transaction -
Get the transaction type. -
getTransHash() - -Method in class net.authorize.aim.Result -
Return the payment gateway generated MD5 hash value that can be used to - authenticate the transaction response. -
getTransId() - -Method in class net.authorize.aim.Result -
Return the transaction id. -
getTransId() - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
getTransId() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
getTransId() - -Method in class net.authorize.notification.Transaction -
  -
getTrialAmount() - -Method in class net.authorize.data.arb.Subscription -
Get the trial amount of the subscription. -
getTrialOccurrences() - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
getUserPermissions() - -Method in class net.authorize.mobile.Result -
  -
getUserRef() - -Method in class net.authorize.Merchant -
Get the UserRef value. -
getValidationMode() - -Method in class net.authorize.cim.Transaction -
Get the validation mode. -
getValue() - -Method in enum net.authorize.aim.cardpresent.DeviceType -
Return the DeviceType value. -
getValue() - -Method in enum net.authorize.aim.cardpresent.MarketType -
Return the MarketType value. -
getValue() - -Method in enum net.authorize.arb.TransactionType -
  -
getValue() - -Method in enum net.authorize.cim.TransactionType -
  -
getValue() - -Method in enum net.authorize.cim.ValidationModeType -
  -
getValue() - -Method in enum net.authorize.data.creditcard.AVSCode -
  -
getValue() - -Method in enum net.authorize.data.creditcard.CardType -
  -
getValue() - -Method in enum net.authorize.data.CustomerType -
  -
getValue() - -Method in enum net.authorize.data.echeck.BankAccountType -
  -
getValue() - -Method in enum net.authorize.data.echeck.ECheckType -
  -
getValue() - -Method in enum net.authorize.data.PermissionType -
  -
getValue() - -Method in enum net.authorize.data.reporting.CardCodeResponseType -
  -
getValue() - -Method in enum net.authorize.data.reporting.CAVVResponseType -
  -
getValue() - -Method in enum net.authorize.mobile.TransactionType -
  -
getValue() - -Method in enum net.authorize.notification.TransactionType -
  -
getValue() - -Method in enum net.authorize.reporting.TransactionType -
  -
getValue() - -Method in class net.authorize.sim.button.TextButton -
  -
getValue() - -Method in enum net.authorize.TransactionType -
Deprecated. As of release 2.0.0, replaced by TransactionType.getNVPValue() -
getValue() - -Method in enum net.authorize.xml.MessageType -
  -
getVoidCount() - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
getWidth() - -Method in class net.authorize.sim.button.ImageButton -
  -
getXmlBaseUrl() - -Method in enum net.authorize.Environment -
Return the XML base url. -
getXmlResponse() - -Method in class net.authorize.xml.Result -
Returns the raw XML response. -
getXmlResponseDoc() - -Method in class net.authorize.xml.Result -
Return the XML response doc. -
getXmlValue() - -Method in enum net.authorize.TransactionType -
Return the value needed for AIM (XML-based) integrations. -
getZip() - -Method in class net.authorize.data.mobile.MerchantContact -
  -
getZipPostalCode() - -Method in class net.authorize.data.Address -
  -
getZipPostalCode() - -Method in class net.authorize.data.Customer -
  -
-
-

-H

-
-
HostedPaymentFormSettings - Class in net.authorize.data.sim
When using the hosted payment form, settings can be configured to match the look of - the merchantÕs website.
HostedReceiptPageSettings - Class in net.authorize.data.sim
The hosted receipt page provides the customer with the status of their transaction and can include a - link back to the merchantÕs website.
HTTP_CONNECTION_TIMEOUT - -Static variable in class net.authorize.util.HttpClient -
  -
HTTP_SOCKET_CONNECTION_TIMEOUT - -Static variable in class net.authorize.util.HttpClient -
  -
HttpClient - Class in net.authorize.util
Transportation object used to facilitate the communication with the respective gateway.
HttpClient() - -Constructor for class net.authorize.util.HttpClient -
  -
-
-

-I

-
-
ImageButton - Class in net.authorize.sim.button
 
IMerchantAuthentication - Interface in net.authorize.auth
Common interface for merchant authenticators.
importRefId() - -Method in class net.authorize.xml.Result -
Import the refId. -
importResponseMessages() - -Method in class net.authorize.xml.Result -
Import the response messages into the result. -
importSessionToken() - -Method in class net.authorize.xml.Result -
Import the sessionToken. -
importSubscriptionInfo() - -Method in class net.authorize.arb.Result -
Import the subscription information into the result. -
invoiceNumber - -Variable in class net.authorize.data.Order -
  -
isAccessible() - -Method in class net.authorize.util.BasicXmlDocument -
  -
isAllowPartialAuth() - -Method in class net.authorize.Merchant -
Return true if the merchant has been enabled, via the SDK, to allow - partial AUTH transactions. -
isApproved() - -Method in class net.authorize.sim.Result -
  -
isApproved() - -Method in class net.authorize.xml.Result -
Return true if the request was Approved. -
isAuthorizeNet() - -Method in class net.authorize.aim.Result -
Verify that the relay response post is actually coming from AuthorizeNet. -
isAuthorizeNet() - -Method in class net.authorize.sim.Result -
Verify that the relay response post is actually coming from - AuthorizeNet. -
isBatchIncludeStatistics() - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
isCardPresent() - -Method in class net.authorize.data.creditcard.CreditCard -
  -
isCardValid(String) - -Static method in class net.authorize.util.Luhn -
Return true if the card number provided passes the Luhn (mod 10) algorithm. -
isDeclined() - -Method in class net.authorize.sim.Result -
  -
isDeclined() - -Method in class net.authorize.xml.Result -
Returns true if the request was Declined. -
isDriversLicenseSpecified() - -Method in class net.authorize.data.Customer -
  -
isEmailCustomer() - -Method in class net.authorize.Merchant -
  -
isEmpty(String) - -Static method in class net.authorize.util.StringUtils -
Return true if the string is null or "". -
isError() - -Method in class net.authorize.sim.Result -
  -
isError() - -Method in class net.authorize.xml.Result -
Returns true if the request had an error. -
isFullTransactionDetails() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
isItemTaxable() - -Method in class net.authorize.data.OrderItem -
  -
isItemTaxExempt() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
isNotEmpty(String) - -Static method in class net.authorize.util.StringUtils -
Return true if the string is not null and not == "". -
isOk() - -Method in class net.authorize.xml.Result -
Returns true if the response is Ok. -
isRecurringBilling() - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
isRecurringBilling() - -Method in class net.authorize.Merchant -
  -
isResponseAuthenticationError() - -Method in class net.authorize.xml.Result -
Returns true if the response is from an authentication error. -
isResponseError() - -Method in class net.authorize.xml.Result -
Returns true if the response is Error. -
isResponseErrorRetryable() - -Method in class net.authorize.xml.Result -
Returns true if the response is from an error that should cause a retry. -
isResponseOk() - -Method in class net.authorize.xml.Result -
Returns true if the response is Ok. -
isReview() - -Method in class net.authorize.sim.Result -
  -
isReview() - -Method in class net.authorize.xml.Result -
Returns true if the request is under review. -
isSandboxEnvironment() - -Method in class net.authorize.Merchant -
Return true if the environment is a sandbox type environment. -
isShowPaymentForm() - -Method in class net.authorize.sim.Transaction -
Returns true if the payment data collection form should be displayed/used. -
isTaxExempt() - -Method in class net.authorize.data.ShippingCharges -
  -
isTestRequest() - -Method in class net.authorize.aim.Result -
Return true if the request was a test request. -
isTrue(String) - -Static method in class net.authorize.util.StringUtils -
Returns true if the string is 1 or "true" -
itemDescription - -Variable in class net.authorize.data.OrderItem -
  -
itemId - -Variable in class net.authorize.data.OrderItem -
  -
itemName - -Variable in class net.authorize.data.OrderItem -
  -
itemPrice - -Variable in class net.authorize.data.OrderItem -
  -
itemQuantity - -Variable in class net.authorize.data.OrderItem -
  -
itemTaxable - -Variable in class net.authorize.data.OrderItem -
  -
ITransaction - Interface in net.authorize
Interface for Transactions.
-
-

-L

-
-
lastName - -Variable in class net.authorize.data.Address -
  -
LICENSE_DATE_FORMAT - -Static variable in class net.authorize.data.DriversLicense -
  -
LinkMethod - Enum in net.authorize.sim
The type of link back to the merchant's website.
Luhn - Class in net.authorize.util
 
Luhn() - -Constructor for class net.authorize.util.Luhn -
  -
-
-

-M

-
-
MarketType - Enum in net.authorize.aim.cardpresent
MarketType is used for Card Present transactions.
MAX_ACCOUNT_NUMBER_LENGTH - -Static variable in class net.authorize.data.echeck.BankAccount -
  -
MAX_ADDRES_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_ADDRESS_LENGTH - -Static variable in class net.authorize.data.Address -
  -
MAX_BANK_ACCOUNT_LENGTH - -Static variable in class net.authorize.data.echeck.BankAccount -
  -
MAX_BANK_CHECK_NUMBER_LENGTH - -Static variable in class net.authorize.data.echeck.BankAccount -
  -
MAX_BANK_NAME_LENGTH - -Static variable in class net.authorize.data.echeck.BankAccount -
  -
MAX_CITY_LENGTH - -Static variable in class net.authorize.data.Address -
  -
MAX_CITY_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_COMPANY_LENGTH - -Static variable in class net.authorize.data.Address -
  -
MAX_COMPANY_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_COUNTRY_LENGTH - -Static variable in class net.authorize.data.Address -
  -
MAX_COUNTRY_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_CUSTOMER_ID_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_CUSTOMER_IP_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_DESCRIPTION_LENGTH - -Static variable in class net.authorize.data.Order -
  -
MAX_EMAIL_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_EMAIL_LENGTH - -Static variable in class net.authorize.data.EmailReceipt -
  -
MAX_FAX_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_FIRST_NAME_LENGTH - -Static variable in class net.authorize.data.Address -
  -
MAX_FIRST_NAME_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_INVOICE_NUMBER_LENGTH - -Static variable in class net.authorize.data.Order -
  -
MAX_ITEM_DESCRIPTION_LENGTH - -Static variable in class net.authorize.data.OrderItem -
  -
MAX_ITEM_ID_LENGTH - -Static variable in class net.authorize.data.OrderItem -
  -
MAX_ITEM_NAME_LENGTH - -Static variable in class net.authorize.data.OrderItem -
  -
MAX_LAST_NAME_LENGTH - -Static variable in class net.authorize.data.Address -
  -
MAX_LAST_NAME_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_LOGIN_LENGTH - -Static variable in class net.authorize.Merchant -
  -
MAX_ORDER_ITEM_SIZE - -Static variable in class net.authorize.data.Order -
  -
MAX_PO_NUMBER_LENGTH - -Static variable in class net.authorize.data.ShippingCharges -
  -
MAX_RECEIPT_LINK_TEXT_LENGTH - -Static variable in class net.authorize.sim.Transaction -
  -
MAX_ROUTING_NUMBER_LENGTH - -Static variable in class net.authorize.data.echeck.BankAccount -
  -
MAX_STATE_LENGTH - -Static variable in class net.authorize.data.Address -
  -
MAX_STATE_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
MAX_TRANSACTION_KEY_LENGTH - -Static variable in class net.authorize.Merchant -
  -
MAX_ZIP_LENGTH - -Static variable in class net.authorize.data.Address -
  -
MAX_ZIP_LENGTH - -Static variable in class net.authorize.data.Customer -
  -
md5Value - -Variable in class net.authorize.NVPTransaction -
  -
md5Value - -Variable in class net.authorize.xml.XMLTransaction -
  -
Merchant - Class in net.authorize
Container to hold authentication credentials.
merchant - -Variable in class net.authorize.NVPTransaction -
  -
merchant - -Variable in class net.authorize.xml.XMLTransaction -
  -
merchantAuthenticationType - -Variable in class net.authorize.auth.AbstractMerchantAuthentication -
  -
MerchantAuthenticationType - Enum in net.authorize.auth
Defines the type of merchant authentication mechanisms that are supported.
MerchantContact - Class in net.authorize.data.mobile
 
merchantCustomerId - -Variable in class net.authorize.data.cim.CustomerProfile -
  -
merchantDefinedMap - -Variable in class net.authorize.aim.Result -
  -
merchantDefinedMap - -Variable in class net.authorize.aim.Transaction -
  -
merchantDefinedMap - -Variable in class net.authorize.sim.Transaction -
  -
messages - -Variable in class net.authorize.xml.Result -
  -
MessageType - Enum in net.authorize.xml
 
MobileDevice - Class in net.authorize.data.mobile
Defines a MobileDevice
mobileDeviceId - -Variable in class net.authorize.auth.AbstractMobileMerchantAuthentication -
  -
-
-

-N

-
-
name - -Variable in class net.authorize.auth.AbstractMerchantAuthentication -
  -
net.authorize - package net.authorize
 
net.authorize.aim - package net.authorize.aim
 
net.authorize.aim.cardpresent - package net.authorize.aim.cardpresent
 
net.authorize.arb - package net.authorize.arb
 
net.authorize.auth - package net.authorize.auth
 
net.authorize.cim - package net.authorize.cim
 
net.authorize.data - package net.authorize.data
 
net.authorize.data.aim - package net.authorize.data.aim
 
net.authorize.data.arb - package net.authorize.data.arb
 
net.authorize.data.cim - package net.authorize.data.cim
 
net.authorize.data.creditcard - package net.authorize.data.creditcard
 
net.authorize.data.echeck - package net.authorize.data.echeck
 
net.authorize.data.mobile - package net.authorize.data.mobile
 
net.authorize.data.reporting - package net.authorize.data.reporting
 
net.authorize.data.sim - package net.authorize.data.sim
 
net.authorize.mobile - package net.authorize.mobile
 
net.authorize.notification - package net.authorize.notification
 
net.authorize.reporting - package net.authorize.reporting
 
net.authorize.sim - package net.authorize.sim
 
net.authorize.sim.button - package net.authorize.sim.button
 
net.authorize.util - package net.authorize.util
 
net.authorize.xml - package net.authorize.xml
 
NOCCode - Enum in net.authorize.data.echeck
ACH notice of change (NOC) codes that may be received from the customer's - bank in the event of a discrepancy in the bank information provided with the transaction.
NVPTransaction - Class in net.authorize
 
NVPTransaction() - -Constructor for class net.authorize.NVPTransaction -
  -
-
-

-O

-
-
OK - -Static variable in class net.authorize.xml.Result -
  -
Order - Class in net.authorize.data
General order related information.
Order() - -Constructor for class net.authorize.data.Order -
  -
order - -Variable in class net.authorize.NVPTransaction -
  -
order - -Variable in class net.authorize.xml.XMLTransaction -
  -
OrderItem - Class in net.authorize.data
Itemized order information.
OrderItem() - -Constructor for class net.authorize.data.OrderItem -
  -
orderItems - -Variable in class net.authorize.data.Order -
  -
-
-

-P

-
-
parse() - -Method in class net.authorize.util.BasicXmlDocument -
  -
parse(String) - -Method in class net.authorize.util.BasicXmlDocument -
  -
parse(File) - -Method in class net.authorize.util.BasicXmlDocument -
  -
parse(InputStream) - -Method in class net.authorize.util.BasicXmlDocument -
  -
parseBytes(byte[]) - -Method in class net.authorize.util.BasicXmlDocument -
  -
parseResponseString(String) - -Static method in class net.authorize.util.ResponseParser -
Take a string and parses it into a Map keyed on ResponseFields. -
parseResponseString(String, String) - -Static method in class net.authorize.util.ResponseParser -
Take a string and parses it into a Map keyed on ResponseFields. -
parseString(String) - -Method in class net.authorize.util.BasicXmlDocument -
  -
PasswordAuthentication - Class in net.authorize.auth
Password authenticator.
Payment - Class in net.authorize.data
 
Payment() - -Constructor for class net.authorize.data.Payment -
  -
PAYMENT_FORM - -Static variable in class net.authorize.sim.Transaction -
  -
paymentList - -Variable in class net.authorize.data.cim.PaymentProfile -
  -
PaymentMethod - Enum in net.authorize.data
The method of payment for the transaction.
PaymentProfile - Class in net.authorize.data.cim
 
paymentProfileList - -Variable in class net.authorize.cim.Result -
  -
PaymentSchedule - Class in net.authorize.data.arb
 
PaymentSchedule() - -Constructor for class net.authorize.data.arb.PaymentSchedule -
  -
PermissionType - Enum in net.authorize.data
Permissions that are associated with accounts.
phoneNumber - -Variable in class net.authorize.data.Address -
  -
postTransaction(ITransaction) - -Method in class net.authorize.Merchant -
Post a Transaction request to the payment gateway. -
PrepaidCard - Class in net.authorize.data.aim
Container used in split tender transactions.
printMessages() - -Method in class net.authorize.arb.Result -
  -
printMessages() - -Method in class net.authorize.cim.Result -
Print out messages for debugging. -
printMessages() - -Method in class net.authorize.xml.Result -
Print messages to stdout for debugging. -
printTree(Document) - -Method in class net.authorize.util.XmlTreeUtil -
  -
printTree(Document, OutputStream) - -Method in class net.authorize.util.XmlTreeUtil -
  -
printTreeBytes(Document) - -Method in class net.authorize.util.XmlTreeUtil -
  -
purchaseOrderNumber - -Variable in class net.authorize.data.Order -
  -
-
-

-Q

-
-
QUANTITY_DECIMAL_PLACES - -Static variable in interface net.authorize.ITransaction -
  -
-
-

-R

-
-
refId - -Variable in class net.authorize.xml.Result -
  -
refId - -Variable in class net.authorize.xml.XMLTransaction -
  -
removeChildren(Node) - -Method in class net.authorize.util.BasicXmlDocument -
  -
ReportingDetails - Class in net.authorize.data.reporting
Reporting details.
reportingDetails - -Variable in class net.authorize.reporting.Result -
  -
ReportingTransactionType - Enum in net.authorize.data.reporting
ReportingTransactionType enumeration.
requestMap - -Variable in class net.authorize.sim.Transaction -
  -
requestTransaction - -Variable in class net.authorize.Result -
  -
requestTransactionType - -Variable in class net.authorize.xml.Result -
  -
RESPONSE_DELIMITER - -Static variable in class net.authorize.data.cim.DirectResponse -
  -
ResponseCode - Enum in net.authorize
Response code indicates the overall status of the transaction - with possible values of approved, declined, error, or held for review.
responseCode - -Variable in class net.authorize.xml.Result -
  -
ResponseField - Enum in net.authorize
ResponseField mappings used in processing and matching the returned data from - the payment gateway.
ResponseParser - Class in net.authorize.util
Parses a response string from Authorize.net into a Map of values.
ResponseParser() - -Constructor for class net.authorize.util.ResponseParser -
  -
ResponseReasonCode - Enum in net.authorize
Response Reason Code is a numeric representation of a more specific reason for the transaction status.
Result - Class in net.authorize.aim
Extends the core net.authorize.xml.Result for specific AIM result data.
Result() - -Constructor for class net.authorize.aim.Result -
  -
Result(ITransaction, String) - -Constructor for class net.authorize.aim.Result -
Result constructor. -
Result - Class in net.authorize.arb
Wrapper container for passing back the result from the request gateway.
Result() - -Constructor for class net.authorize.arb.Result -
  -
Result(ITransaction, String) - -Constructor for class net.authorize.arb.Result -
  -
Result - Class in net.authorize.cim
Wrapper container for passing back the result from the gateway request.
Result() - -Constructor for class net.authorize.cim.Result -
  -
Result(ITransaction, String) - -Constructor for class net.authorize.cim.Result -
  -
Result - Class in net.authorize.mobile
Templated wrapper container for passing back the result from the request gateway.
Result() - -Constructor for class net.authorize.mobile.Result -
  -
Result(ITransaction, String) - -Constructor for class net.authorize.mobile.Result -
  -
Result - Class in net.authorize.notification
Wrapper container for passing back the result from the request gateway.
Result(ITransaction, String) - -Constructor for class net.authorize.notification.Result -
Result constructor. -
Result - Class in net.authorize.reporting
Reporting specific templated wrapper container for passing back the result from the request gateway.
Result() - -Constructor for class net.authorize.reporting.Result -
  -
Result(ITransaction, String) - -Constructor for class net.authorize.reporting.Result -
  -
Result - Class in net.authorize
 
Result() - -Constructor for class net.authorize.Result -
  -
Result - Class in net.authorize.sim
 
Result - Class in net.authorize.xml
Wrapper container for passing back the result from the XML gateway request.
Result() - -Constructor for class net.authorize.xml.Result -
  -
Result(ITransaction, String) - -Constructor for class net.authorize.xml.Result -
Result constructor. -
resultCode - -Variable in class net.authorize.xml.Result -
  -
resultSubscriptionId - -Variable in class net.authorize.arb.Result -
  -
ReturnCode - Enum in net.authorize.data.echeck
 
routingNumber - -Variable in class net.authorize.data.echeck.BankAccount -
  -
-
-

-S

-
-
safeFormat(char, String) - -Static method in class net.authorize.util.Luhn -
Format a credit card number for display. -
sanitizeString(String) - -Static method in class net.authorize.util.StringUtils -
Sanitize strings for output -
saveDocument(String) - -Method in class net.authorize.util.BasicXmlDocument -
  -
SCHEDULE_DATE_FORMAT - -Static variable in class net.authorize.data.arb.PaymentSchedule -
  -
secret - -Variable in class net.authorize.auth.AbstractMerchantAuthentication -
  -
sessionToken - -Variable in class net.authorize.xml.Result -
  -
SessionTokenAuthentication - Class in net.authorize.auth
Session token authenticator.
setAccountNumber(String) - -Method in class net.authorize.aim.Result -
Set the account number. -
setAccountNumber(String) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setAccountNumber(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setAccountType(CardType) - -Method in class net.authorize.aim.Result -
Set the account card type. -
setAccountType(CardType) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setAccountType(CardType) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setAccountType(CardType) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setAccountType(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setAction(FDSFilterActionType) - -Method in class net.authorize.data.reporting.FDSFilter -
  -
setAddress(String) - -Method in class net.authorize.data.Address -
  -
setAddress(String) - -Method in class net.authorize.data.Customer -
  -
setAddress(String) - -Method in class net.authorize.data.mobile.MerchantContact -
  -
setAddressId(String) - -Method in class net.authorize.data.Address -
  -
setAllowPartialAuth(boolean) - -Method in class net.authorize.Merchant -
Indicates if the transaction is enabled for partial authorization. -
setAlt(String) - -Method in class net.authorize.sim.button.ImageButton -
  -
setAmount(BigDecimal) - -Method in class net.authorize.data.arb.Subscription -
Set the subscription amount. -
setApprovalCode(String) - -Method in class net.authorize.cim.Transaction -
  -
setApprovedAmount(BigDecimal) - -Method in class net.authorize.data.aim.PrepaidCard -
  -
setApprovedAmount(BigDecimal) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setAuthAmount(BigDecimal) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setAuthAmount(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setAuthCode(String) - -Method in class net.authorize.aim.Result -
Set the authorization code. -
setAuthCode(String) - -Method in class net.authorize.aim.Transaction -
  -
setAuthCode(String) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setAuthCode(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setAuthorizationCode(String) - -Method in class net.authorize.sim.Transaction -
The authorization code of an original transaction not captured on the payment gateway. -
setAvsCode(AVSCode) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setAvsResponse(AVSCode) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setAvsResultCode(AVSCode) - -Method in class net.authorize.aim.Result -
Set the AVS result code. -
setBackgroundColor(String) - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
setBackgroundUrl(String) - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
setBalanceOnCard(BigDecimal) - -Method in class net.authorize.data.aim.PrepaidCard -
  -
setBalanceOnCard(BigDecimal) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setBankAccount(BankAccount) - -Method in class net.authorize.data.Payment -
  -
setBankAccount(BankAccount) - -Method in interface net.authorize.ITransaction -
  -
setBankAccount(BankAccount) - -Method in class net.authorize.NVPTransaction -
Set the bank account / eCheck information. -
setBankAccount(BankAccount) - -Method in class net.authorize.xml.XMLTransaction -
  -
setBankAccountName(String) - -Method in class net.authorize.data.echeck.BankAccount -
  -
setBankAccountNumber(String) - -Method in class net.authorize.data.echeck.BankAccount -
  -
setBankAccountNumberMasked(String) - -Method in class net.authorize.cim.Transaction -
  -
setBankAccountType(BankAccountType) - -Method in class net.authorize.data.echeck.BankAccount -
  -
setBankCheckNumber(String) - -Method in class net.authorize.data.echeck.BankAccount -
  -
setBankName(String) - -Method in class net.authorize.data.echeck.BankAccount -
  -
setBankRoutingNumberMasked(String) - -Method in class net.authorize.cim.Transaction -
  -
setBatch(BatchDetails) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setBatchDetailsList(ArrayList<BatchDetails>) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setBatchFirstSettlementDate(Date) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setBatchFirstSettlementDate(String) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setBatchId(String) - -Method in class net.authorize.data.reporting.BatchDetails -
  -
setBatchId(String) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setBatchIncludeStatistics(boolean) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setBatchLastSettlementDate(Date) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setBatchLastSettlementDate(String) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setBatchStatisticsList(ArrayList<BatchStatistics>) - -Method in class net.authorize.data.reporting.BatchDetails -
  -
setBillTo(Address) - -Method in class net.authorize.data.cim.PaymentProfile -
Sets the value of the billTo property. -
setBillTo(Address) - -Method in class net.authorize.data.Customer -
  -
setBirthDate(String) - -Method in class net.authorize.data.DriversLicense -
  -
setBirthDate(Date) - -Method in class net.authorize.data.DriversLicense -
  -
setBorder(int) - -Method in class net.authorize.sim.button.ImageButton -
  -
setCardCode(String) - -Method in class net.authorize.cim.Transaction -
Set the card code for specific transactions. -
setCardCode(String) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setCardCodeResponse(CardCodeResponseType) - -Method in class net.authorize.aim.Result -
Set the card code response. -
setCardCodeResponse(CardCodeResponseType) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setCardholderAuthenticationIndicator(String) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setCardholderAuthenticationValue(String) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setCardPresent(boolean) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setCardType(CardType) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setCAVVResponse(CAVVResponseType) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setCavvResultCode(CAVVResponseType) - -Method in class net.authorize.aim.Result -
Set the CAVV result code. -
setChargeAmount(BigDecimal) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeAmount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargebackAmount(BigDecimal) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargebackAmount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargebackCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargebackCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeChargebackAmount(BigDecimal) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeChargebackAmount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeChargebackCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeChargebackCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeReturnedItemsAmount(BigDecimal) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeReturnedItemsAmount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeReturnedItemsCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setChargeReturnedItemsCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setCity(String) - -Method in class net.authorize.data.Address -
  -
setCity(String) - -Method in class net.authorize.data.Customer -
  -
setCity(String) - -Method in class net.authorize.data.mobile.MerchantContact -
  -
setCollapsed() - -Method in class net.authorize.util.XmlTreeUtil -
  -
setCompany(String) - -Method in class net.authorize.data.Address -
  -
setCompany(String) - -Method in class net.authorize.data.Customer -
  -
setCompanyName(String) - -Method in class net.authorize.data.mobile.MerchantContact -
  -
setCorrectionNoticeCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setCorrectionNoticeCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setCountry(String) - -Method in class net.authorize.data.Address -
  -
setCountry(String) - -Method in class net.authorize.data.Customer -
  -
setCreditCard(CreditCard) - -Method in class net.authorize.data.Payment -
  -
setCreditCard(CreditCard) - -Method in interface net.authorize.ITransaction -
  -
setCreditCard(CreditCard) - -Method in class net.authorize.NVPTransaction -
  -
setCreditCard(CreditCard) - -Method in class net.authorize.sim.Transaction -
Set the CreditCard information for the transaction request. -
setCreditCard(CreditCard) - -Method in class net.authorize.xml.XMLTransaction -
  -
setCreditCardNumber(String) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setCreditCardNumberMasked(String) - -Method in class net.authorize.cim.Transaction -
  -
setCssClass(String) - -Method in class net.authorize.sim.button.TextButton -
  -
setCurrencyCode(String) - -Method in class net.authorize.sim.Transaction -
Set the currency code for Card Present transactions. -
setCustomer(Customer) - -Method in class net.authorize.data.arb.Subscription -
Set the customer container. -
setCustomer(Customer) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setCustomer(Customer) - -Method in interface net.authorize.ITransaction -
  -
setCustomer(Customer) - -Method in class net.authorize.NVPTransaction -
  -
setCustomer(Customer) - -Method in class net.authorize.sim.Transaction -
Set the Customer information for the transaction request. -
setCustomer(Customer) - -Method in class net.authorize.xml.XMLTransaction -
  -
setCustomerEmailAddress(String) - -Method in class net.authorize.notification.Transaction -
  -
setCustomerId(String) - -Method in class net.authorize.data.Customer -
  -
setCustomerIP(String) - -Method in class net.authorize.data.Customer -
  -
setCustomerIP(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setCustomerPaymentProfileId(String) - -Method in class net.authorize.cim.Transaction -
Set the customer payment profile id. -
setCustomerPaymentProfileId(String) - -Method in class net.authorize.data.cim.PaymentProfile -
  -
setCustomerProfile(CustomerProfile) - -Method in class net.authorize.cim.Transaction -
Set the customer profile. -
setCustomerProfileId(String) - -Method in class net.authorize.cim.Transaction -
Set the customer profile id. -
setCustomerProfileId(String) - -Method in class net.authorize.data.cim.CustomerProfile -
Set the customer profile id. -
setCustomerShippingAddressId(String) - -Method in class net.authorize.cim.Transaction -
Set the customer shipping address id. -
setCustomerType(CustomerType) - -Method in class net.authorize.data.cim.PaymentProfile -
Sets the value of the customerType property. -
setCustomerType(CustomerType) - -Method in class net.authorize.data.Customer -
  -
setDeclineCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setDeclineCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setDescription(String) - -Method in class net.authorize.data.cim.CustomerProfile -
Sets the value of the description property. -
setDescription(String) - -Method in class net.authorize.data.mobile.MobileDevice -
Set the description of the mobile device. -
setDescription(String) - -Method in class net.authorize.data.Order -
  -
setDeviceType(DeviceType) - -Method in class net.authorize.Merchant -
  -
setDuplicateTxnWindowSeconds(int) - -Method in class net.authorize.Merchant -
  -
setDuplicateWindow(int) - -Method in class net.authorize.sim.Transaction -
The window of time after the submission of a transaction that a duplicate transaction can not be submitted. -
setDutyAmount(BigDecimal) - -Method in class net.authorize.data.ShippingCharges -
  -
setDutyAmount(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setDutyItemDescription(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setDutyItemName(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setECheck(ECheck) - -Method in class net.authorize.NVPTransaction -
  -
setECheck(ECheck) - -Method in class net.authorize.sim.Transaction -
  -
setECheckType(ECheckType) - -Method in class net.authorize.data.echeck.BankAccount -
  -
setEmail(String) - -Method in class net.authorize.data.cim.CustomerProfile -
Sets the value of the email property. -
setEmail(String) - -Method in class net.authorize.data.Customer -
  -
setEmailCustomer(boolean) - -Method in class net.authorize.Merchant -
  -
setEmailReceipt(EmailReceipt) - -Method in interface net.authorize.ITransaction -
  -
setEmailReceipt(EmailReceipt) - -Method in class net.authorize.NVPTransaction -
  -
setEmailReceipt(EmailReceipt) - -Method in class net.authorize.sim.Transaction -
Set the EmailReceipt information for the transaction request. -
setEmailReceipt(EmailReceipt) - -Method in class net.authorize.xml.XMLTransaction -
  -
setEncapCharDelimiter(String) - -Static method in class net.authorize.sim.Transaction -
Convenience method for overriding the encap char delimiter. -
setEnvironment(Environment) - -Method in class net.authorize.Merchant -
Set the environment that transactions will be posted against. -
setErrorCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setErrorCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setExpirationDate(Date) - -Method in class net.authorize.data.creditcard.CreditCard -
Set the expiration date. -
setExpirationDate(String) - -Method in class net.authorize.data.creditcard.CreditCard -
Set the expiration date using yyyy-MM as the format. -
setExpirationMonth(String) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setExpirationYear(String) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setExtraOptions(Hashtable<String, String>) - -Method in class net.authorize.cim.Transaction -
Sets the extra options. -
setFax(String) - -Method in class net.authorize.data.Customer -
  -
setFaxNumber(String) - -Method in class net.authorize.data.Address -
  -
setFDSFilterAction(FDSFilterActionType) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setFDSFilterList(ArrayList<FDSFilter>) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setFieldsToRename(Map<String, String>) - -Method in class net.authorize.sim.Transaction -
  -
setFirstName(String) - -Method in class net.authorize.data.Address -
  -
setFirstName(String) - -Method in class net.authorize.data.Customer -
  -
setFirstName(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setFooter(String) - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
setFooterEmailReceipt(String) - -Method in class net.authorize.data.EmailReceipt -
  -
setFormInputs(LinkedHashMap<String, String>) - -Method in class net.authorize.sim.Transaction -
  -
setFreightAmount(BigDecimal) - -Method in class net.authorize.data.ShippingCharges -
  -
setFreightAmount(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setFreightDescription(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setFreightItemName(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setFullTransactionDetails(boolean) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setHeader(String) - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
setHeaderEmailReceipt(String) - -Method in class net.authorize.data.EmailReceipt -
  -
setHeight(int) - -Method in class net.authorize.sim.button.ImageButton -
  -
setHostedPaymentFormSettings(HostedPaymentFormSettings) - -Method in class net.authorize.sim.Transaction -
  -
setHostedReceiptPageSettings(HostedReceiptPageSettings) - -Method in class net.authorize.sim.Transaction -
  -
setId(String) - -Method in class net.authorize.data.Customer -
  -
setIntervalLength(int) - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
setInvoiceNumber(String) - -Method in class net.authorize.data.Order -
  -
setInvoiceNumber(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setItemDescription(String) - -Method in class net.authorize.data.OrderItem -
  -
setItemId(String) - -Method in class net.authorize.data.OrderItem -
  -
setItemName(String) - -Method in class net.authorize.data.OrderItem -
  -
setItemPrice(BigDecimal) - -Method in class net.authorize.data.OrderItem -
  -
setItemPrice(String) - -Method in class net.authorize.data.OrderItem -
  -
setItemQuantity(BigDecimal) - -Method in class net.authorize.data.OrderItem -
  -
setItemQuantity(String) - -Method in class net.authorize.data.OrderItem -
  -
setItemTaxable(boolean) - -Method in class net.authorize.data.OrderItem -
  -
setItemTaxable(String) - -Method in class net.authorize.data.OrderItem -
  -
setItemTaxExempt(boolean) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setItemTaxExempt(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setLastName(String) - -Method in class net.authorize.data.Address -
  -
setLastName(String) - -Method in class net.authorize.data.Customer -
  -
setLastName(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setLicense(DriversLicense) - -Method in class net.authorize.data.Customer -
  -
setLinkColor(String) - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
setLinkMethod(LinkMethod) - -Method in class net.authorize.data.sim.HostedReceiptPageSettings -
  -
setLinkText(String) - -Method in class net.authorize.data.sim.HostedReceiptPageSettings -
  -
setLinkUrl(String) - -Method in class net.authorize.data.sim.HostedReceiptPageSettings -
  -
setMarketType(MarketType) - -Method in class net.authorize.Merchant -
  -
setMaskedCreditCardNumber(String) - -Method in class net.authorize.data.creditcard.CreditCard -
Used in the response that comes back to offer access to the partial credit card number. -
setMD5Value(String) - -Method in class net.authorize.Merchant -
  -
setMerchantAuthentication(IMerchantAuthentication) - -Method in class net.authorize.Merchant -
Set the merchant authenticator. -
setMerchantCustomerId(String) - -Method in class net.authorize.data.cim.CustomerProfile -
Sets the value of the merchantCustomerId property. -
setMerchantDefinedField(String, String) - -Method in class net.authorize.aim.Transaction -
Add merchant defined field to the merchant defined fields map. -
setMerchantDefinedField(String, String) - -Method in class net.authorize.sim.Transaction -
Set a merchant defined field. -
setMerchantDefinedMap(Hashtable<String, String>) - -Method in class net.authorize.aim.Result -
Sets the merchant defined fields map. -
setMerchantDefinedMap(Hashtable<String, String>) - -Method in class net.authorize.aim.Transaction -
  -
setMerchantEmail(String) - -Method in class net.authorize.Merchant -
  -
setMerchantLogoUrl(String) - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
setMobileDevice(MobileDevice) - -Method in class net.authorize.mobile.Transaction -
  -
setMobileDeviceId(String) - -Method in class net.authorize.data.mobile.MobileDevice -
  -
setName(String) - -Method in class net.authorize.data.arb.Subscription -
Set the name of the subscription. -
setName(String) - -Method in class net.authorize.data.reporting.FDSFilter -
  -
setName(String) - -Method in class net.authorize.sim.button.TextButton -
  -
setNumber(String) - -Method in class net.authorize.data.DriversLicense -
  -
setOrder(Order) - -Method in class net.authorize.data.arb.Subscription -
  -
setOrder(Order) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setOrder(Order) - -Method in interface net.authorize.ITransaction -
  -
setOrder(Order) - -Method in class net.authorize.NVPTransaction -
  -
setOrder(Order) - -Method in class net.authorize.sim.Transaction -
Set the Order (and OrderItems) for the transaction request. -
setOrder(Order) - -Method in class net.authorize.xml.XMLTransaction -
  -
setOrderItems(List<OrderItem>) - -Method in class net.authorize.data.Order -
Sets the list of OrderItems to the list being passed in. -
setPayment(Payment) - -Method in class net.authorize.data.arb.Subscription -
Set the payment container for the subscription. -
setPayment(Payment) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setPaymentList(ArrayList<Payment>) - -Method in class net.authorize.data.cim.PaymentProfile -
  -
setPaymentMethod(String) - -Method in class net.authorize.data.reporting.BatchDetails -
  -
setPaymentProfileList(ArrayList<PaymentProfile>) - -Method in class net.authorize.cim.Transaction -
  -
setPaymentTransactionType(TransactionType) - -Method in class net.authorize.cim.Transaction -
  -
setPhone(String) - -Method in class net.authorize.data.Customer -
  -
setPhone(String) - -Method in class net.authorize.data.mobile.MerchantContact -
  -
setPhoneNumber(String) - -Method in class net.authorize.data.Address -
  -
setPhoneNumber(String) - -Method in class net.authorize.data.mobile.MobileDevice -
Set the phone number of the mobile device. -
setPrepaidBalanceRemaining(BigDecimal) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setPrepaidBalanceRemaining(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setPrepaidCard(PrepaidCard) - -Method in class net.authorize.aim.Result -
Set the prepaid card information. -
setPrintDocumentNode(boolean) - -Method in class net.authorize.util.XmlTreeUtil -
  -
setPurchaseOrderNumber(String) - -Method in class net.authorize.data.Order -
  -
setPurchaseOrderNumber(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setReasonText(String) - -Method in enum net.authorize.ResponseReasonCode -
Set the reasonText. -
setRecurringBilling(boolean) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setRecurringBilling(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setRecurringBilling(boolean) - -Method in class net.authorize.Merchant -
  -
setRecurringBilling(boolean) - -Method in class net.authorize.sim.Transaction -
Indicating marker used by merchant account providers to identify transactions which originate from merchant - hosted recurring billing applications. -
setRefId(String) - -Method in class net.authorize.aim.Transaction -
  -
setRefId(String) - -Method in class net.authorize.arb.Transaction -
  -
setRefId(String) - -Method in class net.authorize.mobile.Transaction -
  -
setRefId(String) - -Method in class net.authorize.xml.XMLTransaction -
  -
setRefTransId(String) - -Method in class net.authorize.aim.Result -
Set the payment gateway assigned transaction ID of an original - transaction -
setRefTransId(String) - -Method in class net.authorize.aim.Transaction -
  -
setRefTransId(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setRefundAmount(BigDecimal) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundAmount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundChargebackAmount(BigDecimal) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundChargebackAmount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundChargebackCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundChargebackCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundReturnedItemsAmount(BigDecimal) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundReturnedItemsAmount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundReturnedItemsCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRefundReturnedItemsCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRelayResponseUrl(String) - -Method in class net.authorize.sim.Transaction -
SIM applications use relay response to redirect the user back to the merchant server. -
setReportingDetails(ReportingDetails) - -Method in class net.authorize.reporting.Transaction -
  -
setRequestedAmount(BigDecimal) - -Method in class net.authorize.data.aim.PrepaidCard -
  -
setRequestedAmount(BigDecimal) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setRequestedAmount(BigDecimal) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setRequestedAmount(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setResolvePath(String) - -Method in class net.authorize.util.BasicXmlDocument -
  -
setResponseCode(ResponseCode) - -Method in class net.authorize.aim.Result -
Set the response code. -
setResponseCode(ResponseCode) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setResponseCode(ResponseCode) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setResponseReasonCode(ResponseReasonCode) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setResponseText(String) - -Method in class net.authorize.aim.Result -
Set the response text. -
setResponseToCustomer(String) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setReturnedItemAmount(BigDecimal) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setReturnedItemAmount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setReturnedItemCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setReturnedItemCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setRoutingNumber(String) - -Method in class net.authorize.data.echeck.BankAccount -
  -
setSchedule(PaymentSchedule) - -Method in class net.authorize.data.arb.Subscription -
Set the payment schedule of the subscription. -
setSettleAmount(BigDecimal) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setSettleAmount(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setSettlementState(SettlementStateType) - -Method in class net.authorize.data.reporting.BatchDetails -
  -
setSettlementTimeLocal(Date) - -Method in class net.authorize.data.reporting.BatchDetails -
  -
setSettlementTimeLocal(String) - -Method in class net.authorize.data.reporting.BatchDetails -
  -
setSettlementTimeUTC(Date) - -Method in class net.authorize.data.reporting.BatchDetails -
  -
setSettlementTimeUTC(String) - -Method in class net.authorize.data.reporting.BatchDetails -
Set the settlement time UTC. -
setShippingAddress(ShippingAddress) - -Method in interface net.authorize.ITransaction -
  -
setShippingAddress(ShippingAddress) - -Method in class net.authorize.NVPTransaction -
  -
setShippingAddress(ShippingAddress) - -Method in class net.authorize.sim.Transaction -
Set the ShippingAddress for the transaction request. -
setShippingAddress(ShippingAddress) - -Method in class net.authorize.xml.XMLTransaction -
  -
setShippingCharges(ShippingCharges) - -Method in class net.authorize.data.Order -
Set the shipping charges assocaited with this order. -
setShippingCharges(ShippingCharges) - -Method in interface net.authorize.ITransaction -
  -
setShippingCharges(ShippingCharges) - -Method in class net.authorize.NVPTransaction -
  -
setShippingCharges(ShippingCharges) - -Method in class net.authorize.sim.Transaction -
Set the ShippingCharges for the transaction request. -
setShippingCharges(ShippingCharges) - -Method in class net.authorize.xml.XMLTransaction -
  -
setShipTo(Address) - -Method in class net.authorize.cim.Transaction -
Set shipping information. -
setShipTo(Address) - -Method in class net.authorize.data.Customer -
  -
setShipToAddressList(ArrayList<Address>) - -Method in class net.authorize.data.cim.CustomerProfile -
  -
setShowPaymentForm(boolean) - -Method in class net.authorize.sim.Transaction -
If true, will populate a field that indicates that the merchant would like to - use the payment gateway hosted payment form to collect payment data. -
setSplitTenderId(String) - -Method in class net.authorize.aim.Result -
Set the split tender transaction id. -
setSplitTenderId(String) - -Method in class net.authorize.aim.Transaction -
  -
setSplitTenderId(String) - -Method in class net.authorize.cim.Transaction -
  -
setSplitTenderId(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setSplitTenderId(String) - -Method in class net.authorize.sim.Transaction -
The payment gateway assigned slit tender ID of an original transaction. -
setSplitTenderPayments(ArrayList<SplitTenderPayment>) - -Method in class net.authorize.aim.Result -
Set the split tender payment information. -
setSplitTenderStatus(SplitTenderStatus) - -Method in class net.authorize.cim.Transaction -
  -
setSrc(String) - -Method in class net.authorize.sim.button.ImageButton -
  -
setStartDate(Date) - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
setStartDate(String) - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
setState(String) - -Method in class net.authorize.data.Address -
  -
setState(String) - -Method in class net.authorize.data.Customer -
  -
setState(String) - -Method in class net.authorize.data.DriversLicense -
  -
setState(String) - -Method in class net.authorize.data.mobile.MerchantContact -
  -
setSubmitTimeLocal(Date) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setSubmitTimeLocal(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setSubmitTimeUTC(Date) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setSubmitTimeUTC(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setSubscriptionId(String) - -Method in class net.authorize.data.arb.Subscription -
Set the subscription id. -
setSubscriptionUnit(SubscriptionUnitType) - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
setTaxAmount(BigDecimal) - -Method in class net.authorize.data.ShippingCharges -
  -
setTaxAmount(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setTaxDescription(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setTaxExempt(boolean) - -Method in class net.authorize.data.ShippingCharges -
  -
setTaxId(String) - -Method in class net.authorize.data.Customer -
  -
setTaxItemName(String) - -Method in class net.authorize.data.ShippingCharges -
  -
setTestRequest(boolean) - -Method in class net.authorize.aim.Result -
Set the testRequest value. -
setText(String) - -Method in enum net.authorize.xml.MessageType -
  -
setTextColor(String) - -Method in class net.authorize.data.sim.HostedPaymentFormSettings -
  -
SettlementStateType - Enum in net.authorize.data.reporting
Settlement state enumeration.
setTotalAmount(BigDecimal) - -Method in class net.authorize.data.Order -
Set the total amount of the order. -
setTotalOccurrences(int) - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
setTrack1(String) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setTrack2(String) - -Method in class net.authorize.data.creditcard.CreditCard -
  -
setTransactionDetailList(ArrayList<TransactionDetails>) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setTransactionFieldDelimiter(String) - -Static method in class net.authorize.sim.Transaction -
Convenience method for overriding the transaction field delimited. -
setTransactionId(String) - -Method in class net.authorize.cim.Transaction -
  -
setTransactionId(String) - -Method in class net.authorize.data.reporting.ReportingDetails -
  -
setTransactionId(String) - -Method in class net.authorize.sim.Transaction -
The payment gateway assigned transaction ID of an original transaction. -
setTransactionResponseErrors(ArrayList<ResponseReasonCode>) - -Method in class net.authorize.aim.Result -
Sets the transaction response errors. -
setTransactionResponseMessages(ArrayList<ResponseReasonCode>) - -Method in class net.authorize.aim.Result -
Set the transaction response messages. -
setTransactionStatus(TransactionStatusType) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setTransactionStatus(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setTransactionType(ReportingTransactionType) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setTransHash(String) - -Method in class net.authorize.aim.Result -
Set the payment gateway generated MD5 hash value that can be used to - authenticate the transaction response. -
setTransId(String) - -Method in class net.authorize.aim.Result -
Set the transaction id. -
setTransId(String) - -Method in class net.authorize.cim.Transaction -
  -
setTransId(String) - -Method in class net.authorize.data.aim.SplitTenderPayment -
  -
setTransId(String) - -Method in class net.authorize.data.reporting.TransactionDetails -
  -
setTransId(String) - -Method in class net.authorize.notification.Transaction -
  -
setTrialAmount(BigDecimal) - -Method in class net.authorize.data.arb.Subscription -
Set the trial amount of the subscription. -
setTrialOccurrences(int) - -Method in class net.authorize.data.arb.PaymentSchedule -
  -
setUserRef(String) - -Method in class net.authorize.Merchant -
Set the userRef for Card Present transactions. -
setValidationMode(ValidationModeType) - -Method in class net.authorize.cim.Transaction -
Set the validation mode for the request. -
setValue(String) - -Method in class net.authorize.sim.button.TextButton -
  -
setVoidCount(long) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setVoidCount(String) - -Method in class net.authorize.data.reporting.BatchStatistics -
  -
setWidth(int) - -Method in class net.authorize.sim.button.ImageButton -
  -
setZip(String) - -Method in class net.authorize.data.mobile.MerchantContact -
  -
setZipPostalCode(String) - -Method in class net.authorize.data.Address -
  -
setZipPostalCode(String) - -Method in class net.authorize.data.Customer -
  -
ShippingAddress - Class in net.authorize.data
Product shipping address.
shippingAddress - -Variable in class net.authorize.NVPTransaction -
  -
shippingAddress - -Variable in class net.authorize.xml.XMLTransaction -
  -
shippingCharges - -Variable in class net.authorize.data.Order -
  -
ShippingCharges - Class in net.authorize.data
Shipping charges (tax, freight/shipping, duty)
shippingCharges - -Variable in class net.authorize.NVPTransaction -
  -
shippingCharges - -Variable in class net.authorize.xml.XMLTransaction -
  -
shipToAddressList - -Variable in class net.authorize.data.cim.CustomerProfile -
  -
SplitTenderPayment - Class in net.authorize.data.aim
 
SplitTenderPayment() - -Constructor for class net.authorize.data.aim.SplitTenderPayment -
  -
SplitTenderStatus - Enum in net.authorize.cim
 
state - -Variable in class net.authorize.data.Address -
  -
StringUtils - Class in net.authorize.util
 
StringUtils() - -Constructor for class net.authorize.util.StringUtils -
  -
stripNonDigits(String) - -Static method in class net.authorize.util.Luhn -
Strips non-digits from the cardNumber provided. -
Subscription - Class in net.authorize.data.arb
Subscription container.
Subscription() - -Constructor for class net.authorize.data.arb.Subscription -
  -
subscriptionStatus - -Variable in class net.authorize.arb.Result -
  -
SubscriptionStatusType - Enum in net.authorize.data.arb
 
SubscriptionUnitType - Enum in net.authorize.data.arb
 
subString(String, int) - -Static method in class net.authorize.util.StringUtils -
Returns a sub string of the string "str" that has a length that's less - than the maxLength, but not larger than it's current length. -
-
-

-T

-
-
TextButton - Class in net.authorize.sim.button
 
toAuthNetPOSTString() - -Method in class net.authorize.aim.Transaction -
Convert request to XML. -
toAuthNetPOSTString() - -Method in class net.authorize.arb.Transaction -
Convert request to XML. -
toAuthNetPOSTString() - -Method in class net.authorize.cim.Transaction -
Convert request to XML. -
toAuthNetPOSTString() - -Method in interface net.authorize.ITransaction -
  -
toAuthNetPOSTString() - -Method in class net.authorize.mobile.Transaction -
Convert request to XML. -
toAuthNetPOSTString() - -Method in class net.authorize.notification.Transaction -
Convert request to XML. -
toAuthNetPOSTString() - -Method in class net.authorize.reporting.Transaction -
Convert request to XML. -
toAuthNetPOSTString() - -Method in class net.authorize.sim.Transaction -
Prepare the name/value pair mapping based on the Map(s) provided. -
totalAmount - -Variable in class net.authorize.data.Order -
  -
Transaction - Class in net.authorize.aim
Container to hold all payment related information that gets passed back and - forth to the payment gateway.
Transaction() - -Constructor for class net.authorize.aim.Transaction -
  -
Transaction(Merchant, TransactionType) - -Constructor for class net.authorize.aim.Transaction -
Constructor for creation a transaction with typed objects. -
Transaction - Class in net.authorize.arb
Transaction object for ARB.
Transaction - Class in net.authorize.cim
Transaction object for CIM.
Transaction(Merchant, TransactionType) - -Constructor for class net.authorize.cim.Transaction -
Private constructor. -
Transaction - Class in net.authorize.mobile
Transaction object for Mobile.
Transaction - Class in net.authorize.notification
Transaction object for ARB.
Transaction - Class in net.authorize.reporting
Transaction object for Reporting.
Transaction - Class in net.authorize.sim
 
Transaction(Merchant, TransactionType, BigDecimal) - -Constructor for class net.authorize.sim.Transaction -
Constructor for creation a transaction with typed objects. -
TRANSACTION_FIELD_DELIMITER - -Static variable in class net.authorize.sim.Transaction -
  -
TransactionDetails - Class in net.authorize.data.reporting
Reporting transaction details.
TransactionKeyAuthentication - Class in net.authorize.auth
Transaction key authenticator.
TransactionStatusType - Enum in net.authorize.data.reporting
Transaction status enumeration.
transactionType - -Variable in class net.authorize.aim.Transaction -
  -
TransactionType - Enum in net.authorize.arb
 
TransactionType - Enum in net.authorize.cim
Enumeration of CIM transaction types that are supported by Authorize.Net
TransactionType - Enum in net.authorize.mobile
Transaction types specific for mobile.
TransactionType - Enum in net.authorize.notification
 
transactionType - -Variable in class net.authorize.NVPTransaction -
  -
TransactionType - Enum in net.authorize.reporting
Enumeration of Reporting transaction types that are supported by Authorize.Net
TransactionType - Enum in net.authorize
The credit card transaction types supported by the payment gateway.
TRUE - -Static variable in interface net.authorize.ITransaction -
  -
-
-

-V

-
-
ValidationModeType - Enum in net.authorize.cim
 
value() - -Method in enum net.authorize.data.arb.SubscriptionStatusType -
  -
value() - -Method in enum net.authorize.data.arb.SubscriptionUnitType -
  -
value() - -Method in enum net.authorize.data.reporting.ReportingTransactionType -
  -
value() - -Method in enum net.authorize.data.reporting.SettlementStateType -
  -
value() - -Method in enum net.authorize.data.reporting.TransactionStatusType -
  -
valueOf(String) - -Static method in enum net.authorize.aim.cardpresent.DeviceType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.aim.cardpresent.MarketType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.arb.TransactionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.auth.MerchantAuthenticationType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.AuthNetField -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.cim.SplitTenderStatus -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.cim.TransactionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.cim.ValidationModeType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.arb.SubscriptionStatusType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.arb.SubscriptionUnitType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.creditcard.AVSCode -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.creditcard.CardType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.CustomerType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.echeck.BankAccountType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.echeck.ECheckType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.echeck.NOCCode -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.echeck.ReturnCode -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.PaymentMethod -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.PermissionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.reporting.CardCodeResponseType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.reporting.CAVVResponseType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.reporting.FDSFilterActionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.reporting.ReportingTransactionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.reporting.SettlementStateType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.data.reporting.TransactionStatusType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.Environment -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.mobile.TransactionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.notification.TransactionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.reporting.TransactionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.ResponseCode -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.ResponseField -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.ResponseReasonCode -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.sim.button.ButtonType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.sim.LinkMethod -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.TransactionType -
Returns the enum constant of this type with the specified name. -
valueOf(String) - -Static method in enum net.authorize.xml.MessageType -
Returns the enum constant of this type with the specified name. -
values() - -Static method in enum net.authorize.aim.cardpresent.DeviceType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.aim.cardpresent.MarketType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.arb.TransactionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.auth.MerchantAuthenticationType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.AuthNetField -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.cim.SplitTenderStatus -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.cim.TransactionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.cim.ValidationModeType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.arb.SubscriptionStatusType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.arb.SubscriptionUnitType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.creditcard.AVSCode -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.creditcard.CardType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.CustomerType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.echeck.BankAccountType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.echeck.ECheckType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.echeck.NOCCode -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.echeck.ReturnCode -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.PaymentMethod -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.PermissionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.reporting.CardCodeResponseType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.reporting.CAVVResponseType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.reporting.FDSFilterActionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.reporting.ReportingTransactionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.reporting.SettlementStateType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.data.reporting.TransactionStatusType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.Environment -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.mobile.TransactionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.notification.TransactionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.reporting.TransactionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.ResponseCode -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.ResponseField -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.ResponseReasonCode -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.sim.button.ButtonType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.sim.LinkMethod -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.TransactionType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
values() - -Static method in enum net.authorize.xml.MessageType -
Returns an array containing the constants of this enum type, in -the order they are declared. -
VERSION - -Static variable in interface net.authorize.ITransaction -
  -
-
-

-X

-
-
XML_NAMESPACE - -Static variable in class net.authorize.xml.XMLTransaction -
  -
XML_XSD - -Static variable in class net.authorize.xml.XMLTransaction -
  -
XML_XSI - -Static variable in class net.authorize.xml.XMLTransaction -
  -
xmlResponse - -Variable in class net.authorize.xml.Result -
  -
xmlResponseDoc - -Variable in class net.authorize.xml.Result -
  -
XMLTransaction - Class in net.authorize.xml
Contains all the necessary core components used in building an XML based - transaction.
XMLTransaction() - -Constructor for class net.authorize.xml.XMLTransaction -
  -
XmlTreeUtil - Class in net.authorize.util
 
XmlTreeUtil() - -Constructor for class net.authorize.util.XmlTreeUtil -
  -
-
-

-Z

-
-
ZERO_AMOUNT - -Static variable in interface net.authorize.ITransaction -
  -
ZERO_STRING - -Static variable in interface net.authorize.ITransaction -
  -
zipPostalCode - -Variable in class net.authorize.data.Address -
  -
-
-A B C D E F G H I L M N O P Q R S T V X Z - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/index.html b/docs/javadocs/index.html deleted file mode 100644 index 50a0a0e..0000000 --- a/docs/javadocs/index.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - -Authorize.Net Java SDK - - - - - - - - - - - -<H2> -Frame Alert</H2> - -<P> -This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. -<BR> -Link to<A HREF="overview-summary.html">Non-frame version.</A> - - - diff --git a/docs/javadocs/net/authorize/AuthNetField.html b/docs/javadocs/net/authorize/AuthNetField.html deleted file mode 100644 index bdcbaf2..0000000 --- a/docs/javadocs/net/authorize/AuthNetField.html +++ /dev/null @@ -1,5466 +0,0 @@ - - - - - - -AuthNetField (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Enum AuthNetField

-
-java.lang.Object
-  extended by java.lang.Enum<AuthNetField>
-      extended by net.authorize.AuthNetField
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AuthNetField>
-
-
-
-
public enum AuthNetField
extends java.lang.Enum<AuthNetField>
- - -

-Enumeration to handle all the x_ field names and xml element names -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
ELEMENT__ACCOUNT_NUMBER - -
-           
ELEMENT__ACCOUNT_TYPE - -
-           
ELEMENT__AUTH_CODE - -
-           
ELEMENT__AVS_RESPONSE - -
-           
ELEMENT__AVS_RESULT_CODE - -
-           
ELEMENT__CAVV_RESPONSE - -
-           
ELEMENT__CODE - -
-           
ELEMENT__CVV_RESULT_CODE - -
-           
ELEMENT__DESCRIPTION - -
-           
ELEMENT__ERROR - -
-           
ELEMENT__ERROR_CODE - -
-           
ELEMENT__ERROR_TEXT - -
-           
ELEMENT__FDS_FILTER - -
-           
ELEMENT__FDS_FILTER_ACTION - -
-           
ELEMENT__FDS_FILTERS - -
-           
ELEMENT__MESSAGE - -
-           
ELEMENT__REF_TRANS_ID - -
-           
ELEMENT__RESPONSE_CODE - -
-           
ELEMENT__TEST_MODE - -
-           
ELEMENT__TRANS_HASH - -
-           
ELEMENT__TRANS_ID - -
-           
ELEMENT__USER_REF - -
-           
ELEMENT_ACCOUNT_NUMBER - -
-           
ELEMENT_ACCOUNT_TYPE - -
-           
ELEMENT_ACTION - -
-           
ELEMENT_ADDRESS - -
-           
ELEMENT_AMOUNT - -
-           
ELEMENT_APPROVAL_CODE - -
-           
ELEMENT_APPROVED_AMOUNT - -
-           
ELEMENT_AUTH_AMOUNT - -
-           
ELEMENT_AUTH_CODE - -
-           
ELEMENT_AVS_RESULT_CODE - -
-           
ELEMENT_BALANCE_ON_CARD - -
-           
ELEMENT_BANK_ACCOUNT - -
-           
ELEMENT_BANK_ACCOUNT_NUMBER_MASKED - -
-           
ELEMENT_BANK_NAME - -
-           
ELEMENT_BANK_ROUTING_NUMBER_MASKED - -
-           
ELEMENT_BATCH - -
-           
ELEMENT_BATCH_ID - -
-           
ELEMENT_BATCH_LIST - -
-           
ELEMENT_BILL_TO - -
-           
ELEMENT_CARD_CODE - -
-           
ELEMENT_CARD_CODE_RESPONSE - -
-           
ELEMENT_CARD_NUMBER - -
-           
ELEMENT_CAVV_RESULT_CODE - -
-           
ELEMENT_CHARGE_AMOUNT - -
-           
ELEMENT_CHARGE_CHARGEBACK_AMOUNT - -
-           
ELEMENT_CHARGE_CHARGEBACK_COUNT - -
-           
ELEMENT_CHARGE_COUNT - -
-           
ELEMENT_CHARGE_RETURNED_ITEMS_AMOUNT - -
-           
ELEMENT_CHARGE_RETURNED_ITEMS_COUNT - -
-           
ELEMENT_CHARGEBACK_AMOUNT - -
-           
ELEMENT_CHARGEBACK_COUNT - -
-           
ELEMENT_CITY - -
-           
ELEMENT_CODE - -
-           
ELEMENT_COMPANY - -
-           
ELEMENT_CORRECTION_NOTICE_COUNT - -
-           
ELEMENT_COUNTRY - -
-           
ELEMENT_CREATE_TRANSACTION_REQUEST - -
-           
ELEMENT_CREDIT_CARD - -
-           
ELEMENT_CREDIT_CARD_EXPIRY - -
-           
ELEMENT_CREDIT_CARD_NUMBER - -
-           
ELEMENT_CREDIT_CARD_NUMBER_MASKED - -
-           
ELEMENT_CUSTOMER - -
-           
ELEMENT_CUSTOMER_ADDRESS_ID - -
-           
ELEMENT_CUSTOMER_EMAIL - -
-           
ELEMENT_CUSTOMER_IP - -
-           
ELEMENT_CUSTOMER_PAYMENT_PROFILE_ID - -
-           
ELEMENT_CUSTOMER_PAYMENT_PROFILE_ID_LIST - -
-           
ELEMENT_CUSTOMER_PROFILE_ID - -
-           
ELEMENT_CUSTOMER_SHIPPING_ADDRESS_ID - -
-           
ELEMENT_CUSTOMER_SHIPPING_ADDRESS_ID_LIST - -
-           
ELEMENT_CUSTOMER_TYPE - -
-           
ELEMENT_CVV_RESULT_CODE - -
-           
ELEMENT_DECLINE_COUNT - -
-           
ELEMENT_DESCRIPTION - -
-           
ELEMENT_DEVICE_TYPE - -
-           
ELEMENT_DIRECT_RESPONSE - -
-           
ELEMENT_DRIVER_LICENSE - -
-           
ELEMENT_DUTY - -
-           
ELEMENT_ECHECK_TYPE - -
-           
ELEMENT_EMAIL - -
-           
ELEMENT_ERROR - -
-           
ELEMENT_ERROR_CODE - -
-           
ELEMENT_ERROR_COUNT - -
-           
ELEMENT_ERROR_TEXT - -
-           
ELEMENT_ERRORS - -
-           
ELEMENT_EXPIRATION_DATE - -
-           
ELEMENT_EXTRA_OPTIONS - -
-           
ELEMENT_FAX_NUMBER - -
-           
ELEMENT_FIRST_NAME - -
-           
ELEMENT_FIRST_SETTLEMENT_DATE - -
-           
ELEMENT_FOOTER_EMAIL_RECEIPT - -
-           
ELEMENT_HEADER_EMAIL_RECEIPT - -
-           
ELEMENT_ID - -
-           
ELEMENT_IDS - -
-           
ELEMENT_INCLUDE_STATISTICS - -
-           
ELEMENT_INTERVAL - -
-           
ELEMENT_INVOICE_NUMBER - -
-           
ELEMENT_ITEM_ID - -
-           
ELEMENT_LAST_NAME - -
-           
ELEMENT_LAST_SETTLEMENT_DATE - -
-           
ELEMENT_LENGTH - -
-           
ELEMENT_LINE_ITEM - -
-           
ELEMENT_LINE_ITEMS - -
-           
ELEMENT_MARKET_TYPE - -
-           
ELEMENT_MERCHANT_ADDRESS - -
-           
ELEMENT_MERCHANT_AUTHENTICATION - -
-           
ELEMENT_MERCHANT_CITY - -
-           
ELEMENT_MERCHANT_CONTACT - -
-           
ELEMENT_MERCHANT_CUSTOMER_ID - -
-           
ELEMENT_MERCHANT_EMAIL - -
-           
ELEMENT_MERCHANT_NAME - -
-           
ELEMENT_MERCHANT_PHONE - -
-           
ELEMENT_MERCHANT_STATE - -
-           
ELEMENT_MERCHANT_ZIP - -
-           
ELEMENT_MESSAGE - -
-           
ELEMENT_MESSAGES - -
-           
ELEMENT_MOBILE_DEVICE - -
-           
ELEMENT_MOBILE_DEVICE_ID - -
-           
ELEMENT_NAME - -
-           
ELEMENT_NAME_ALLOW_PARTIAL_AUTH - -
-           
ELEMENT_NAME_DUPLICATE_WINDOW - -
-           
ELEMENT_NAME_EMAIL_CUSTOMER - -
-           
ELEMENT_NAME_ON_ACCOUNT - -
-           
ELEMENT_NAME_RECURRING_BILLING - -
-           
ELEMENT_NAME_TEST_REQUEST - -
-           
ELEMENT_ORDER - -
-           
ELEMENT_PASSWORD - -
-           
ELEMENT_PAYMENT - -
-           
ELEMENT_PAYMENT_METHOD - -
-           
ELEMENT_PAYMENT_PROFILE - -
-           
ELEMENT_PAYMENT_PROFILES - -
-           
ELEMENT_PAYMENT_SCHEDULE - -
-           
ELEMENT_PERMISSION - -
-           
ELEMENT_PERMISSION_NAME - -
-           
ELEMENT_PHONE_NUMBER - -
-           
ELEMENT_PO_NUMBER - -
-           
ELEMENT_PREPAID_BALANCE_REMAINING - -
-           
ELEMENT_PREPAID_CARD - -
-           
ELEMENT_PROFILE - -
-           
ELEMENT_PROFILE_TRANS_AUTH_ONLY - -
-           
ELEMENT_PURCHASE_ORDER_NUMBER - -
-           
ELEMENT_QUANTITY - -
-           
ELEMENT_RECURRING_BILLING - -
-           
ELEMENT_REF_TRANS_HASH - -
-           
ELEMENT_REF_TRANS_ID - -
-           
ELEMENT_REF_TRANS_IDD - -
-           
ELEMENT_REFID - -
-           
ELEMENT_REFUND_AMOUNT - -
-           
ELEMENT_REFUND_CHARGEBACK_AMOUNT - -
-           
ELEMENT_REFUND_CHARGEBACK_COUNT - -
-           
ELEMENT_REFUND_COUNT - -
-           
ELEMENT_REFUND_RETURNED_ITEMS_AMOUNT - -
-           
ELEMENT_REFUND_RETURNED_ITEMS_COUNT - -
-           
ELEMENT_REQUESTED_AMOUNT - -
-           
ELEMENT_RESPONSE_CODE - -
-           
ELEMENT_RESPONSE_REASON_CODE - -
-           
ELEMENT_RESPONSE_REASON_DESCRIPTION - -
-           
ELEMENT_RESPONSE_TO_CUSTOMER - -
-           
ELEMENT_RESULT_CODE - -
-           
ELEMENT_RETAIL - -
-           
ELEMENT_RETURNED_ITEM_AMOUNT - -
-           
ELEMENT_RETURNED_ITEM_COUNT - -
-           
ELEMENT_ROUTING_NUMBER - -
-           
ELEMENT_SESSION_TOKEN - -
-           
ELEMENT_SETTING - -
-           
ELEMENT_SETTING_NAME - -
-           
ELEMENT_SETTING_VALUE - -
-           
ELEMENT_SETTLE_AMOUNT - -
-           
ELEMENT_SETTLEMENT_STATE - -
-           
ELEMENT_SETTLEMENT_TIME_LOCAL - -
-           
ELEMENT_SETTLEMENT_TIME_UTC - -
-           
ELEMENT_SHIP_TO - -
-           
ELEMENT_SHIP_TO_LIST - -
-           
ELEMENT_SHIPPING - -
-           
ELEMENT_SPLIT_TENDER_ID - -
-           
ELEMENT_SPLIT_TENDER_PAYMENT - -
-           
ELEMENT_SPLIT_TENDER_PAYMENTS - -
-           
ELEMENT_SPLIT_TENDER_STATUS - -
-           
ELEMENT_START_DATE - -
-           
ELEMENT_STATE - -
-           
ELEMENT_STATISTIC - -
-           
ELEMENT_STATISTICS - -
-           
ELEMENT_SUBMIT_TIME_LOCAL - -
-           
ELEMENT_SUBMIT_TIME_UTC - -
-           
ELEMENT_SUBSCRIPTION - -
-           
ELEMENT_SUBSCRIPTION_ID - -
-           
ELEMENT_SUBSCRIPTION_STATUS - -
-           
ELEMENT_TAX - -
-           
ELEMENT_TAX_EXEMPT - -
-           
ELEMENT_TAX_ID - -
-           
ELEMENT_TAXABLE - -
-           
ELEMENT_TEST_REQUEST - -
-           
ELEMENT_TEXT - -
-           
ELEMENT_TOTAL_OCCURRENCES - -
-           
ELEMENT_TRACK_DATA - -
-           
ELEMENT_TRACK1 - -
-           
ELEMENT_TRACK2 - -
-           
ELEMENT_TRANS_HASH - -
-           
ELEMENT_TRANS_ID - -
-           
ELEMENT_TRANSACTION - -
-           
ELEMENT_TRANSACTION_ID - -
-           
ELEMENT_TRANSACTION_KEY - -
-           
ELEMENT_TRANSACTION_REQUEST - -
-           
ELEMENT_TRANSACTION_RESPONSE - -
-           
ELEMENT_TRANSACTION_SETTINGS - -
-           
ELEMENT_TRANSACTION_STATUS - -
-           
ELEMENT_TRANSACTION_TYPE - -
-           
ELEMENT_TRANSACTIONS - -
-           
ELEMENT_TRIAL_AMOUNT - -
-           
ELEMENT_TRIAL_OCCURRENCES - -
-           
ELEMENT_TYPE - -
-           
ELEMENT_UNIT - -
-           
ELEMENT_UNIT_PRICE - -
-           
ELEMENT_USER_FIELD - -
-           
ELEMENT_USER_FIELDS - -
-           
ELEMENT_USER_PERMISSIONS - -
-           
ELEMENT_VALIDATION_DIRECT_RESPONSE - -
-           
ELEMENT_VALIDATION_DIRECT_RESPONSE_LIST - -
-           
ELEMENT_VALIDATION_MODE - -
-           
ELEMENT_VALUE - -
-           
ELEMENT_VOID_COUNT - -
-           
ELEMENT_ZIP - -
-           
X_ACCOUNT_NUMBER - -
-           
X_ADDRESS - -
-           
X_ALLOW_PARTIAL_AUTH - -
-           
X_AMOUNT - -
-           
X_AUTH_CODE - -
-           
X_AUTHENTICATION_INDICATOR - -
-           
X_AVS_CODE - -
-           
X_BACKGROUND_URL - -
-           
X_BANK_ABA_CODE - -
-           
X_BANK_ACCT_NAME - -
-           
X_BANK_ACCT_NUM - -
-           
X_BANK_ACCT_TYPE - -
-           
X_BANK_CHECK_NUMBER - -
-           
X_BANK_NAME - -
-           
X_CARD_CODE - -
-           
X_CARD_NUM - -
-           
X_CARD_TYPE - -
-           
X_CARDHOLDER_AUTHENTICATION_VALUE - -
-           
X_CAVV_RESPONSE - -
-           
X_CITY - -
-           
X_COLOR_BACKGROUND - -
-           
X_COLOR_LINK - -
-           
X_COLOR_TEXT - -
-           
X_COMPANY - -
-           
X_COUNTRY - -
-           
X_CPVERSION - -
-           
X_CURRENCY_CODE - -
-           
X_CUST_ID - -
-           
X_CUSTOMER_IP - -
-           
X_CVV2_RESP_CODE - -
-           
X_DELIM_CHAR_FIELD - -
-           
X_DELIM_DATA - -
-           
X_DELIM_DATA_FIELD - -
-           
X_DESCRIPTION - -
-           
X_DEVICE_TYPE - -
-           
X_DUPLICATE_WINDOW - -
-           
X_DUTY - -
-           
X_ECHECK_TYPE - -
-           
X_EMAIL - -
-           
X_EMAIL_CUSTOMER - -
-           
X_ENCAP_CHAR - -
-           
X_EXP_DATE - -
-           
X_FAX - -
-           
X_FIRST_NAME - -
-           
X_FOOTER_EMAIL_RECEIPT - -
-           
X_FOOTER_HTML_PAYMENT_FORM - -
-           
X_FP_HASH - -
-           
X_FP_SEQUENCE - -
-           
X_FP_TIMESTAMP - -
-           
X_FREIGHT - -
-           
X_HEADER_EMAIL_RECEIPT - -
-           
X_HEADER_HTML_PAYMENT_FORM - -
-           
X_INVOICE_NUM - -
-           
X_LAST_NAME - -
-           
X_LINE_ITEM - -
-           
X_LOGIN - -
-           
X_LOGO_URL - -
-           
X_MARKET_TYPE - -
-           
X_MD5_HASH - -
-           
X_MERCHANT_EMAIL - -
-           
X_METHOD - -
-           
X_PHONE - -
-           
X_PO_NUM - -
-           
X_PREPAID_BALANCE_ON_CARD - -
-           
X_PREPAID_REQUESTED_AMOUNT - -
-           
X_RECEIPT_LINK_METHOD - -
-           
X_RECEIPT_LINK_TEXT - -
-           
X_RECEIPT_LINK_URL - -
-           
X_RECURRING_BILLING - -
-           
X_RELAY_RESPONSE - -
-           
X_RELAY_URL - -
-           
X_RENAME - -
-           
X_RESPONSE_CODE - -
-           
X_RESPONSE_FORMAT - -
-           
X_RESPONSE_REASON_CODE - -
-           
X_RESPONSE_REASON_TEXT - -
-           
X_SHIP_TO_ADDRESS - -
-           
X_SHIP_TO_CITY - -
-           
X_SHIP_TO_COMPANY - -
-           
X_SHIP_TO_COUNTRY - -
-           
X_SHIP_TO_FIRST_NAME - -
-           
X_SHIP_TO_LAST_NAME - -
-           
X_SHIP_TO_STATE - -
-           
X_SHIP_TO_ZIP - -
-           
X_SHOW_FORM - -
-           
X_SPLIT_TENDER_ID - -
-           
X_STATE - -
-           
X_TAX - -
-           
X_TAX_EXEMPT - -
-           
X_TEST_REQUEST - -
-           
X_TRACK1 - -
-           
X_TRACK2 - -
-           
X_TRAN_KEY - -
-           
X_TRANS_ID - -
-           
X_TYPE - -
-           
X_USER_REF - -
-           
X_VERSION_FIELD - -
-           
X_ZIP - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetFieldName() - -
-           
-static AuthNetFieldvalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static AuthNetField[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-ELEMENT__ACCOUNT_NUMBER

-
-public static final AuthNetField ELEMENT__ACCOUNT_NUMBER
-
-
-
-
-
- -

-ELEMENT__ACCOUNT_TYPE

-
-public static final AuthNetField ELEMENT__ACCOUNT_TYPE
-
-
-
-
-
- -

-ELEMENT__AUTH_CODE

-
-public static final AuthNetField ELEMENT__AUTH_CODE
-
-
-
-
-
- -

-ELEMENT__AVS_RESPONSE

-
-public static final AuthNetField ELEMENT__AVS_RESPONSE
-
-
-
-
-
- -

-ELEMENT__AVS_RESULT_CODE

-
-public static final AuthNetField ELEMENT__AVS_RESULT_CODE
-
-
-
-
-
- -

-ELEMENT__CAVV_RESPONSE

-
-public static final AuthNetField ELEMENT__CAVV_RESPONSE
-
-
-
-
-
- -

-ELEMENT__CODE

-
-public static final AuthNetField ELEMENT__CODE
-
-
-
-
-
- -

-ELEMENT__CVV_RESULT_CODE

-
-public static final AuthNetField ELEMENT__CVV_RESULT_CODE
-
-
-
-
-
- -

-ELEMENT__DESCRIPTION

-
-public static final AuthNetField ELEMENT__DESCRIPTION
-
-
-
-
-
- -

-ELEMENT__ERROR

-
-public static final AuthNetField ELEMENT__ERROR
-
-
-
-
-
- -

-ELEMENT__ERROR_CODE

-
-public static final AuthNetField ELEMENT__ERROR_CODE
-
-
-
-
-
- -

-ELEMENT__ERROR_TEXT

-
-public static final AuthNetField ELEMENT__ERROR_TEXT
-
-
-
-
-
- -

-ELEMENT__FDS_FILTER

-
-public static final AuthNetField ELEMENT__FDS_FILTER
-
-
-
-
-
- -

-ELEMENT__FDS_FILTER_ACTION

-
-public static final AuthNetField ELEMENT__FDS_FILTER_ACTION
-
-
-
-
-
- -

-ELEMENT__FDS_FILTERS

-
-public static final AuthNetField ELEMENT__FDS_FILTERS
-
-
-
-
-
- -

-ELEMENT__MESSAGE

-
-public static final AuthNetField ELEMENT__MESSAGE
-
-
-
-
-
- -

-ELEMENT__REF_TRANS_ID

-
-public static final AuthNetField ELEMENT__REF_TRANS_ID
-
-
-
-
-
- -

-ELEMENT__RESPONSE_CODE

-
-public static final AuthNetField ELEMENT__RESPONSE_CODE
-
-
-
-
-
- -

-ELEMENT__TEST_MODE

-
-public static final AuthNetField ELEMENT__TEST_MODE
-
-
-
-
-
- -

-ELEMENT__TRANS_HASH

-
-public static final AuthNetField ELEMENT__TRANS_HASH
-
-
-
-
-
- -

-ELEMENT__TRANS_ID

-
-public static final AuthNetField ELEMENT__TRANS_ID
-
-
-
-
-
- -

-ELEMENT__USER_REF

-
-public static final AuthNetField ELEMENT__USER_REF
-
-
-
-
-
- -

-ELEMENT_ACCOUNT_NUMBER

-
-public static final AuthNetField ELEMENT_ACCOUNT_NUMBER
-
-
-
-
-
- -

-ELEMENT_ACCOUNT_TYPE

-
-public static final AuthNetField ELEMENT_ACCOUNT_TYPE
-
-
-
-
-
- -

-ELEMENT_ACTION

-
-public static final AuthNetField ELEMENT_ACTION
-
-
-
-
-
- -

-ELEMENT_ADDRESS

-
-public static final AuthNetField ELEMENT_ADDRESS
-
-
-
-
-
- -

-ELEMENT_AMOUNT

-
-public static final AuthNetField ELEMENT_AMOUNT
-
-
-
-
-
- -

-ELEMENT_APPROVAL_CODE

-
-public static final AuthNetField ELEMENT_APPROVAL_CODE
-
-
-
-
-
- -

-ELEMENT_APPROVED_AMOUNT

-
-public static final AuthNetField ELEMENT_APPROVED_AMOUNT
-
-
-
-
-
- -

-ELEMENT_AUTH_AMOUNT

-
-public static final AuthNetField ELEMENT_AUTH_AMOUNT
-
-
-
-
-
- -

-ELEMENT_AUTH_CODE

-
-public static final AuthNetField ELEMENT_AUTH_CODE
-
-
-
-
-
- -

-ELEMENT_AVS_RESULT_CODE

-
-public static final AuthNetField ELEMENT_AVS_RESULT_CODE
-
-
-
-
-
- -

-ELEMENT_BALANCE_ON_CARD

-
-public static final AuthNetField ELEMENT_BALANCE_ON_CARD
-
-
-
-
-
- -

-ELEMENT_BANK_ACCOUNT

-
-public static final AuthNetField ELEMENT_BANK_ACCOUNT
-
-
-
-
-
- -

-ELEMENT_BANK_ACCOUNT_NUMBER_MASKED

-
-public static final AuthNetField ELEMENT_BANK_ACCOUNT_NUMBER_MASKED
-
-
-
-
-
- -

-ELEMENT_BANK_NAME

-
-public static final AuthNetField ELEMENT_BANK_NAME
-
-
-
-
-
- -

-ELEMENT_BANK_ROUTING_NUMBER_MASKED

-
-public static final AuthNetField ELEMENT_BANK_ROUTING_NUMBER_MASKED
-
-
-
-
-
- -

-ELEMENT_BATCH

-
-public static final AuthNetField ELEMENT_BATCH
-
-
-
-
-
- -

-ELEMENT_BATCH_ID

-
-public static final AuthNetField ELEMENT_BATCH_ID
-
-
-
-
-
- -

-ELEMENT_BATCH_LIST

-
-public static final AuthNetField ELEMENT_BATCH_LIST
-
-
-
-
-
- -

-ELEMENT_BILL_TO

-
-public static final AuthNetField ELEMENT_BILL_TO
-
-
-
-
-
- -

-ELEMENT_CARD_CODE

-
-public static final AuthNetField ELEMENT_CARD_CODE
-
-
-
-
-
- -

-ELEMENT_CARD_CODE_RESPONSE

-
-public static final AuthNetField ELEMENT_CARD_CODE_RESPONSE
-
-
-
-
-
- -

-ELEMENT_CARD_NUMBER

-
-public static final AuthNetField ELEMENT_CARD_NUMBER
-
-
-
-
-
- -

-ELEMENT_CAVV_RESULT_CODE

-
-public static final AuthNetField ELEMENT_CAVV_RESULT_CODE
-
-
-
-
-
- -

-ELEMENT_CHARGE_AMOUNT

-
-public static final AuthNetField ELEMENT_CHARGE_AMOUNT
-
-
-
-
-
- -

-ELEMENT_CHARGE_CHARGEBACK_AMOUNT

-
-public static final AuthNetField ELEMENT_CHARGE_CHARGEBACK_AMOUNT
-
-
-
-
-
- -

-ELEMENT_CHARGE_CHARGEBACK_COUNT

-
-public static final AuthNetField ELEMENT_CHARGE_CHARGEBACK_COUNT
-
-
-
-
-
- -

-ELEMENT_CHARGE_COUNT

-
-public static final AuthNetField ELEMENT_CHARGE_COUNT
-
-
-
-
-
- -

-ELEMENT_CHARGE_RETURNED_ITEMS_AMOUNT

-
-public static final AuthNetField ELEMENT_CHARGE_RETURNED_ITEMS_AMOUNT
-
-
-
-
-
- -

-ELEMENT_CHARGE_RETURNED_ITEMS_COUNT

-
-public static final AuthNetField ELEMENT_CHARGE_RETURNED_ITEMS_COUNT
-
-
-
-
-
- -

-ELEMENT_CHARGEBACK_AMOUNT

-
-public static final AuthNetField ELEMENT_CHARGEBACK_AMOUNT
-
-
-
-
-
- -

-ELEMENT_CHARGEBACK_COUNT

-
-public static final AuthNetField ELEMENT_CHARGEBACK_COUNT
-
-
-
-
-
- -

-ELEMENT_CITY

-
-public static final AuthNetField ELEMENT_CITY
-
-
-
-
-
- -

-ELEMENT_CODE

-
-public static final AuthNetField ELEMENT_CODE
-
-
-
-
-
- -

-ELEMENT_COMPANY

-
-public static final AuthNetField ELEMENT_COMPANY
-
-
-
-
-
- -

-ELEMENT_CORRECTION_NOTICE_COUNT

-
-public static final AuthNetField ELEMENT_CORRECTION_NOTICE_COUNT
-
-
-
-
-
- -

-ELEMENT_COUNTRY

-
-public static final AuthNetField ELEMENT_COUNTRY
-
-
-
-
-
- -

-ELEMENT_CREATE_TRANSACTION_REQUEST

-
-public static final AuthNetField ELEMENT_CREATE_TRANSACTION_REQUEST
-
-
-
-
-
- -

-ELEMENT_CREDIT_CARD

-
-public static final AuthNetField ELEMENT_CREDIT_CARD
-
-
-
-
-
- -

-ELEMENT_CREDIT_CARD_EXPIRY

-
-public static final AuthNetField ELEMENT_CREDIT_CARD_EXPIRY
-
-
-
-
-
- -

-ELEMENT_CREDIT_CARD_NUMBER

-
-public static final AuthNetField ELEMENT_CREDIT_CARD_NUMBER
-
-
-
-
-
- -

-ELEMENT_CREDIT_CARD_NUMBER_MASKED

-
-public static final AuthNetField ELEMENT_CREDIT_CARD_NUMBER_MASKED
-
-
-
-
-
- -

-ELEMENT_CUSTOMER

-
-public static final AuthNetField ELEMENT_CUSTOMER
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_ADDRESS_ID

-
-public static final AuthNetField ELEMENT_CUSTOMER_ADDRESS_ID
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_EMAIL

-
-public static final AuthNetField ELEMENT_CUSTOMER_EMAIL
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_IP

-
-public static final AuthNetField ELEMENT_CUSTOMER_IP
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_PAYMENT_PROFILE_ID

-
-public static final AuthNetField ELEMENT_CUSTOMER_PAYMENT_PROFILE_ID
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_PAYMENT_PROFILE_ID_LIST

-
-public static final AuthNetField ELEMENT_CUSTOMER_PAYMENT_PROFILE_ID_LIST
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_PROFILE_ID

-
-public static final AuthNetField ELEMENT_CUSTOMER_PROFILE_ID
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_SHIPPING_ADDRESS_ID

-
-public static final AuthNetField ELEMENT_CUSTOMER_SHIPPING_ADDRESS_ID
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_SHIPPING_ADDRESS_ID_LIST

-
-public static final AuthNetField ELEMENT_CUSTOMER_SHIPPING_ADDRESS_ID_LIST
-
-
-
-
-
- -

-ELEMENT_CUSTOMER_TYPE

-
-public static final AuthNetField ELEMENT_CUSTOMER_TYPE
-
-
-
-
-
- -

-ELEMENT_CVV_RESULT_CODE

-
-public static final AuthNetField ELEMENT_CVV_RESULT_CODE
-
-
-
-
-
- -

-ELEMENT_DECLINE_COUNT

-
-public static final AuthNetField ELEMENT_DECLINE_COUNT
-
-
-
-
-
- -

-ELEMENT_DESCRIPTION

-
-public static final AuthNetField ELEMENT_DESCRIPTION
-
-
-
-
-
- -

-ELEMENT_DEVICE_TYPE

-
-public static final AuthNetField ELEMENT_DEVICE_TYPE
-
-
-
-
-
- -

-ELEMENT_DIRECT_RESPONSE

-
-public static final AuthNetField ELEMENT_DIRECT_RESPONSE
-
-
-
-
-
- -

-ELEMENT_DRIVER_LICENSE

-
-public static final AuthNetField ELEMENT_DRIVER_LICENSE
-
-
-
-
-
- -

-ELEMENT_DUTY

-
-public static final AuthNetField ELEMENT_DUTY
-
-
-
-
-
- -

-ELEMENT_ECHECK_TYPE

-
-public static final AuthNetField ELEMENT_ECHECK_TYPE
-
-
-
-
-
- -

-ELEMENT_EMAIL

-
-public static final AuthNetField ELEMENT_EMAIL
-
-
-
-
-
- -

-ELEMENT_ERROR

-
-public static final AuthNetField ELEMENT_ERROR
-
-
-
-
-
- -

-ELEMENT_ERROR_CODE

-
-public static final AuthNetField ELEMENT_ERROR_CODE
-
-
-
-
-
- -

-ELEMENT_ERROR_COUNT

-
-public static final AuthNetField ELEMENT_ERROR_COUNT
-
-
-
-
-
- -

-ELEMENT_ERROR_TEXT

-
-public static final AuthNetField ELEMENT_ERROR_TEXT
-
-
-
-
-
- -

-ELEMENT_ERRORS

-
-public static final AuthNetField ELEMENT_ERRORS
-
-
-
-
-
- -

-ELEMENT_EXPIRATION_DATE

-
-public static final AuthNetField ELEMENT_EXPIRATION_DATE
-
-
-
-
-
- -

-ELEMENT_EXTRA_OPTIONS

-
-public static final AuthNetField ELEMENT_EXTRA_OPTIONS
-
-
-
-
-
- -

-ELEMENT_FAX_NUMBER

-
-public static final AuthNetField ELEMENT_FAX_NUMBER
-
-
-
-
-
- -

-ELEMENT_FIRST_NAME

-
-public static final AuthNetField ELEMENT_FIRST_NAME
-
-
-
-
-
- -

-ELEMENT_FIRST_SETTLEMENT_DATE

-
-public static final AuthNetField ELEMENT_FIRST_SETTLEMENT_DATE
-
-
-
-
-
- -

-ELEMENT_FOOTER_EMAIL_RECEIPT

-
-public static final AuthNetField ELEMENT_FOOTER_EMAIL_RECEIPT
-
-
-
-
-
- -

-ELEMENT_HEADER_EMAIL_RECEIPT

-
-public static final AuthNetField ELEMENT_HEADER_EMAIL_RECEIPT
-
-
-
-
-
- -

-ELEMENT_ID

-
-public static final AuthNetField ELEMENT_ID
-
-
-
-
-
- -

-ELEMENT_IDS

-
-public static final AuthNetField ELEMENT_IDS
-
-
-
-
-
- -

-ELEMENT_INCLUDE_STATISTICS

-
-public static final AuthNetField ELEMENT_INCLUDE_STATISTICS
-
-
-
-
-
- -

-ELEMENT_INTERVAL

-
-public static final AuthNetField ELEMENT_INTERVAL
-
-
-
-
-
- -

-ELEMENT_INVOICE_NUMBER

-
-public static final AuthNetField ELEMENT_INVOICE_NUMBER
-
-
-
-
-
- -

-ELEMENT_ITEM_ID

-
-public static final AuthNetField ELEMENT_ITEM_ID
-
-
-
-
-
- -

-ELEMENT_LAST_NAME

-
-public static final AuthNetField ELEMENT_LAST_NAME
-
-
-
-
-
- -

-ELEMENT_LAST_SETTLEMENT_DATE

-
-public static final AuthNetField ELEMENT_LAST_SETTLEMENT_DATE
-
-
-
-
-
- -

-ELEMENT_LENGTH

-
-public static final AuthNetField ELEMENT_LENGTH
-
-
-
-
-
- -

-ELEMENT_LINE_ITEM

-
-public static final AuthNetField ELEMENT_LINE_ITEM
-
-
-
-
-
- -

-ELEMENT_LINE_ITEMS

-
-public static final AuthNetField ELEMENT_LINE_ITEMS
-
-
-
-
-
- -

-ELEMENT_MARKET_TYPE

-
-public static final AuthNetField ELEMENT_MARKET_TYPE
-
-
-
-
-
- -

-ELEMENT_MERCHANT_ADDRESS

-
-public static final AuthNetField ELEMENT_MERCHANT_ADDRESS
-
-
-
-
-
- -

-ELEMENT_MERCHANT_AUTHENTICATION

-
-public static final AuthNetField ELEMENT_MERCHANT_AUTHENTICATION
-
-
-
-
-
- -

-ELEMENT_MERCHANT_CITY

-
-public static final AuthNetField ELEMENT_MERCHANT_CITY
-
-
-
-
-
- -

-ELEMENT_MERCHANT_CONTACT

-
-public static final AuthNetField ELEMENT_MERCHANT_CONTACT
-
-
-
-
-
- -

-ELEMENT_MERCHANT_CUSTOMER_ID

-
-public static final AuthNetField ELEMENT_MERCHANT_CUSTOMER_ID
-
-
-
-
-
- -

-ELEMENT_MERCHANT_EMAIL

-
-public static final AuthNetField ELEMENT_MERCHANT_EMAIL
-
-
-
-
-
- -

-ELEMENT_MERCHANT_NAME

-
-public static final AuthNetField ELEMENT_MERCHANT_NAME
-
-
-
-
-
- -

-ELEMENT_MERCHANT_PHONE

-
-public static final AuthNetField ELEMENT_MERCHANT_PHONE
-
-
-
-
-
- -

-ELEMENT_MERCHANT_STATE

-
-public static final AuthNetField ELEMENT_MERCHANT_STATE
-
-
-
-
-
- -

-ELEMENT_MERCHANT_ZIP

-
-public static final AuthNetField ELEMENT_MERCHANT_ZIP
-
-
-
-
-
- -

-ELEMENT_MESSAGE

-
-public static final AuthNetField ELEMENT_MESSAGE
-
-
-
-
-
- -

-ELEMENT_MESSAGES

-
-public static final AuthNetField ELEMENT_MESSAGES
-
-
-
-
-
- -

-ELEMENT_MOBILE_DEVICE

-
-public static final AuthNetField ELEMENT_MOBILE_DEVICE
-
-
-
-
-
- -

-ELEMENT_MOBILE_DEVICE_ID

-
-public static final AuthNetField ELEMENT_MOBILE_DEVICE_ID
-
-
-
-
-
- -

-ELEMENT_NAME

-
-public static final AuthNetField ELEMENT_NAME
-
-
-
-
-
- -

-ELEMENT_NAME_ALLOW_PARTIAL_AUTH

-
-public static final AuthNetField ELEMENT_NAME_ALLOW_PARTIAL_AUTH
-
-
-
-
-
- -

-ELEMENT_NAME_DUPLICATE_WINDOW

-
-public static final AuthNetField ELEMENT_NAME_DUPLICATE_WINDOW
-
-
-
-
-
- -

-ELEMENT_NAME_EMAIL_CUSTOMER

-
-public static final AuthNetField ELEMENT_NAME_EMAIL_CUSTOMER
-
-
-
-
-
- -

-ELEMENT_NAME_ON_ACCOUNT

-
-public static final AuthNetField ELEMENT_NAME_ON_ACCOUNT
-
-
-
-
-
- -

-ELEMENT_NAME_RECURRING_BILLING

-
-public static final AuthNetField ELEMENT_NAME_RECURRING_BILLING
-
-
-
-
-
- -

-ELEMENT_NAME_TEST_REQUEST

-
-public static final AuthNetField ELEMENT_NAME_TEST_REQUEST
-
-
-
-
-
- -

-ELEMENT_ORDER

-
-public static final AuthNetField ELEMENT_ORDER
-
-
-
-
-
- -

-ELEMENT_PASSWORD

-
-public static final AuthNetField ELEMENT_PASSWORD
-
-
-
-
-
- -

-ELEMENT_PAYMENT

-
-public static final AuthNetField ELEMENT_PAYMENT
-
-
-
-
-
- -

-ELEMENT_PAYMENT_METHOD

-
-public static final AuthNetField ELEMENT_PAYMENT_METHOD
-
-
-
-
-
- -

-ELEMENT_PAYMENT_PROFILE

-
-public static final AuthNetField ELEMENT_PAYMENT_PROFILE
-
-
-
-
-
- -

-ELEMENT_PAYMENT_PROFILES

-
-public static final AuthNetField ELEMENT_PAYMENT_PROFILES
-
-
-
-
-
- -

-ELEMENT_PAYMENT_SCHEDULE

-
-public static final AuthNetField ELEMENT_PAYMENT_SCHEDULE
-
-
-
-
-
- -

-ELEMENT_PERMISSION

-
-public static final AuthNetField ELEMENT_PERMISSION
-
-
-
-
-
- -

-ELEMENT_PERMISSION_NAME

-
-public static final AuthNetField ELEMENT_PERMISSION_NAME
-
-
-
-
-
- -

-ELEMENT_PHONE_NUMBER

-
-public static final AuthNetField ELEMENT_PHONE_NUMBER
-
-
-
-
-
- -

-ELEMENT_PO_NUMBER

-
-public static final AuthNetField ELEMENT_PO_NUMBER
-
-
-
-
-
- -

-ELEMENT_PREPAID_BALANCE_REMAINING

-
-public static final AuthNetField ELEMENT_PREPAID_BALANCE_REMAINING
-
-
-
-
-
- -

-ELEMENT_PREPAID_CARD

-
-public static final AuthNetField ELEMENT_PREPAID_CARD
-
-
-
-
-
- -

-ELEMENT_PROFILE

-
-public static final AuthNetField ELEMENT_PROFILE
-
-
-
-
-
- -

-ELEMENT_PROFILE_TRANS_AUTH_ONLY

-
-public static final AuthNetField ELEMENT_PROFILE_TRANS_AUTH_ONLY
-
-
-
-
-
- -

-ELEMENT_PURCHASE_ORDER_NUMBER

-
-public static final AuthNetField ELEMENT_PURCHASE_ORDER_NUMBER
-
-
-
-
-
- -

-ELEMENT_QUANTITY

-
-public static final AuthNetField ELEMENT_QUANTITY
-
-
-
-
-
- -

-ELEMENT_RECURRING_BILLING

-
-public static final AuthNetField ELEMENT_RECURRING_BILLING
-
-
-
-
-
- -

-ELEMENT_REF_TRANS_HASH

-
-public static final AuthNetField ELEMENT_REF_TRANS_HASH
-
-
-
-
-
- -

-ELEMENT_REF_TRANS_ID

-
-public static final AuthNetField ELEMENT_REF_TRANS_ID
-
-
-
-
-
- -

-ELEMENT_REF_TRANS_IDD

-
-public static final AuthNetField ELEMENT_REF_TRANS_IDD
-
-
-
-
-
- -

-ELEMENT_REFID

-
-public static final AuthNetField ELEMENT_REFID
-
-
-
-
-
- -

-ELEMENT_REFUND_AMOUNT

-
-public static final AuthNetField ELEMENT_REFUND_AMOUNT
-
-
-
-
-
- -

-ELEMENT_REFUND_CHARGEBACK_AMOUNT

-
-public static final AuthNetField ELEMENT_REFUND_CHARGEBACK_AMOUNT
-
-
-
-
-
- -

-ELEMENT_REFUND_CHARGEBACK_COUNT

-
-public static final AuthNetField ELEMENT_REFUND_CHARGEBACK_COUNT
-
-
-
-
-
- -

-ELEMENT_REFUND_COUNT

-
-public static final AuthNetField ELEMENT_REFUND_COUNT
-
-
-
-
-
- -

-ELEMENT_REFUND_RETURNED_ITEMS_AMOUNT

-
-public static final AuthNetField ELEMENT_REFUND_RETURNED_ITEMS_AMOUNT
-
-
-
-
-
- -

-ELEMENT_REFUND_RETURNED_ITEMS_COUNT

-
-public static final AuthNetField ELEMENT_REFUND_RETURNED_ITEMS_COUNT
-
-
-
-
-
- -

-ELEMENT_REQUESTED_AMOUNT

-
-public static final AuthNetField ELEMENT_REQUESTED_AMOUNT
-
-
-
-
-
- -

-ELEMENT_RESPONSE_CODE

-
-public static final AuthNetField ELEMENT_RESPONSE_CODE
-
-
-
-
-
- -

-ELEMENT_RESPONSE_REASON_CODE

-
-public static final AuthNetField ELEMENT_RESPONSE_REASON_CODE
-
-
-
-
-
- -

-ELEMENT_RESPONSE_REASON_DESCRIPTION

-
-public static final AuthNetField ELEMENT_RESPONSE_REASON_DESCRIPTION
-
-
-
-
-
- -

-ELEMENT_RESPONSE_TO_CUSTOMER

-
-public static final AuthNetField ELEMENT_RESPONSE_TO_CUSTOMER
-
-
-
-
-
- -

-ELEMENT_RESULT_CODE

-
-public static final AuthNetField ELEMENT_RESULT_CODE
-
-
-
-
-
- -

-ELEMENT_RETAIL

-
-public static final AuthNetField ELEMENT_RETAIL
-
-
-
-
-
- -

-ELEMENT_RETURNED_ITEM_AMOUNT

-
-public static final AuthNetField ELEMENT_RETURNED_ITEM_AMOUNT
-
-
-
-
-
- -

-ELEMENT_RETURNED_ITEM_COUNT

-
-public static final AuthNetField ELEMENT_RETURNED_ITEM_COUNT
-
-
-
-
-
- -

-ELEMENT_ROUTING_NUMBER

-
-public static final AuthNetField ELEMENT_ROUTING_NUMBER
-
-
-
-
-
- -

-ELEMENT_SESSION_TOKEN

-
-public static final AuthNetField ELEMENT_SESSION_TOKEN
-
-
-
-
-
- -

-ELEMENT_SETTING

-
-public static final AuthNetField ELEMENT_SETTING
-
-
-
-
-
- -

-ELEMENT_SETTING_NAME

-
-public static final AuthNetField ELEMENT_SETTING_NAME
-
-
-
-
-
- -

-ELEMENT_SETTING_VALUE

-
-public static final AuthNetField ELEMENT_SETTING_VALUE
-
-
-
-
-
- -

-ELEMENT_SETTLE_AMOUNT

-
-public static final AuthNetField ELEMENT_SETTLE_AMOUNT
-
-
-
-
-
- -

-ELEMENT_SETTLEMENT_STATE

-
-public static final AuthNetField ELEMENT_SETTLEMENT_STATE
-
-
-
-
-
- -

-ELEMENT_SETTLEMENT_TIME_LOCAL

-
-public static final AuthNetField ELEMENT_SETTLEMENT_TIME_LOCAL
-
-
-
-
-
- -

-ELEMENT_SETTLEMENT_TIME_UTC

-
-public static final AuthNetField ELEMENT_SETTLEMENT_TIME_UTC
-
-
-
-
-
- -

-ELEMENT_SHIP_TO

-
-public static final AuthNetField ELEMENT_SHIP_TO
-
-
-
-
-
- -

-ELEMENT_SHIP_TO_LIST

-
-public static final AuthNetField ELEMENT_SHIP_TO_LIST
-
-
-
-
-
- -

-ELEMENT_SHIPPING

-
-public static final AuthNetField ELEMENT_SHIPPING
-
-
-
-
-
- -

-ELEMENT_SPLIT_TENDER_ID

-
-public static final AuthNetField ELEMENT_SPLIT_TENDER_ID
-
-
-
-
-
- -

-ELEMENT_SPLIT_TENDER_PAYMENT

-
-public static final AuthNetField ELEMENT_SPLIT_TENDER_PAYMENT
-
-
-
-
-
- -

-ELEMENT_SPLIT_TENDER_PAYMENTS

-
-public static final AuthNetField ELEMENT_SPLIT_TENDER_PAYMENTS
-
-
-
-
-
- -

-ELEMENT_SPLIT_TENDER_STATUS

-
-public static final AuthNetField ELEMENT_SPLIT_TENDER_STATUS
-
-
-
-
-
- -

-ELEMENT_START_DATE

-
-public static final AuthNetField ELEMENT_START_DATE
-
-
-
-
-
- -

-ELEMENT_STATE

-
-public static final AuthNetField ELEMENT_STATE
-
-
-
-
-
- -

-ELEMENT_STATISTIC

-
-public static final AuthNetField ELEMENT_STATISTIC
-
-
-
-
-
- -

-ELEMENT_STATISTICS

-
-public static final AuthNetField ELEMENT_STATISTICS
-
-
-
-
-
- -

-ELEMENT_SUBMIT_TIME_LOCAL

-
-public static final AuthNetField ELEMENT_SUBMIT_TIME_LOCAL
-
-
-
-
-
- -

-ELEMENT_SUBMIT_TIME_UTC

-
-public static final AuthNetField ELEMENT_SUBMIT_TIME_UTC
-
-
-
-
-
- -

-ELEMENT_SUBSCRIPTION

-
-public static final AuthNetField ELEMENT_SUBSCRIPTION
-
-
-
-
-
- -

-ELEMENT_SUBSCRIPTION_ID

-
-public static final AuthNetField ELEMENT_SUBSCRIPTION_ID
-
-
-
-
-
- -

-ELEMENT_SUBSCRIPTION_STATUS

-
-public static final AuthNetField ELEMENT_SUBSCRIPTION_STATUS
-
-
-
-
-
- -

-ELEMENT_TAX

-
-public static final AuthNetField ELEMENT_TAX
-
-
-
-
-
- -

-ELEMENT_TAX_EXEMPT

-
-public static final AuthNetField ELEMENT_TAX_EXEMPT
-
-
-
-
-
- -

-ELEMENT_TAX_ID

-
-public static final AuthNetField ELEMENT_TAX_ID
-
-
-
-
-
- -

-ELEMENT_TAXABLE

-
-public static final AuthNetField ELEMENT_TAXABLE
-
-
-
-
-
- -

-ELEMENT_TEST_REQUEST

-
-public static final AuthNetField ELEMENT_TEST_REQUEST
-
-
-
-
-
- -

-ELEMENT_TEXT

-
-public static final AuthNetField ELEMENT_TEXT
-
-
-
-
-
- -

-ELEMENT_TOTAL_OCCURRENCES

-
-public static final AuthNetField ELEMENT_TOTAL_OCCURRENCES
-
-
-
-
-
- -

-ELEMENT_TRACK_DATA

-
-public static final AuthNetField ELEMENT_TRACK_DATA
-
-
-
-
-
- -

-ELEMENT_TRACK1

-
-public static final AuthNetField ELEMENT_TRACK1
-
-
-
-
-
- -

-ELEMENT_TRACK2

-
-public static final AuthNetField ELEMENT_TRACK2
-
-
-
-
-
- -

-ELEMENT_TRANS_HASH

-
-public static final AuthNetField ELEMENT_TRANS_HASH
-
-
-
-
-
- -

-ELEMENT_TRANS_ID

-
-public static final AuthNetField ELEMENT_TRANS_ID
-
-
-
-
-
- -

-ELEMENT_TRANSACTION

-
-public static final AuthNetField ELEMENT_TRANSACTION
-
-
-
-
-
- -

-ELEMENT_TRANSACTION_ID

-
-public static final AuthNetField ELEMENT_TRANSACTION_ID
-
-
-
-
-
- -

-ELEMENT_TRANSACTION_KEY

-
-public static final AuthNetField ELEMENT_TRANSACTION_KEY
-
-
-
-
-
- -

-ELEMENT_TRANSACTION_REQUEST

-
-public static final AuthNetField ELEMENT_TRANSACTION_REQUEST
-
-
-
-
-
- -

-ELEMENT_TRANSACTION_RESPONSE

-
-public static final AuthNetField ELEMENT_TRANSACTION_RESPONSE
-
-
-
-
-
- -

-ELEMENT_TRANSACTION_SETTINGS

-
-public static final AuthNetField ELEMENT_TRANSACTION_SETTINGS
-
-
-
-
-
- -

-ELEMENT_TRANSACTION_STATUS

-
-public static final AuthNetField ELEMENT_TRANSACTION_STATUS
-
-
-
-
-
- -

-ELEMENT_TRANSACTION_TYPE

-
-public static final AuthNetField ELEMENT_TRANSACTION_TYPE
-
-
-
-
-
- -

-ELEMENT_TRANSACTIONS

-
-public static final AuthNetField ELEMENT_TRANSACTIONS
-
-
-
-
-
- -

-ELEMENT_TRIAL_AMOUNT

-
-public static final AuthNetField ELEMENT_TRIAL_AMOUNT
-
-
-
-
-
- -

-ELEMENT_TRIAL_OCCURRENCES

-
-public static final AuthNetField ELEMENT_TRIAL_OCCURRENCES
-
-
-
-
-
- -

-ELEMENT_TYPE

-
-public static final AuthNetField ELEMENT_TYPE
-
-
-
-
-
- -

-ELEMENT_UNIT

-
-public static final AuthNetField ELEMENT_UNIT
-
-
-
-
-
- -

-ELEMENT_UNIT_PRICE

-
-public static final AuthNetField ELEMENT_UNIT_PRICE
-
-
-
-
-
- -

-ELEMENT_USER_FIELD

-
-public static final AuthNetField ELEMENT_USER_FIELD
-
-
-
-
-
- -

-ELEMENT_USER_FIELDS

-
-public static final AuthNetField ELEMENT_USER_FIELDS
-
-
-
-
-
- -

-ELEMENT_USER_PERMISSIONS

-
-public static final AuthNetField ELEMENT_USER_PERMISSIONS
-
-
-
-
-
- -

-ELEMENT_VALIDATION_DIRECT_RESPONSE

-
-public static final AuthNetField ELEMENT_VALIDATION_DIRECT_RESPONSE
-
-
-
-
-
- -

-ELEMENT_VALIDATION_DIRECT_RESPONSE_LIST

-
-public static final AuthNetField ELEMENT_VALIDATION_DIRECT_RESPONSE_LIST
-
-
-
-
-
- -

-ELEMENT_VALIDATION_MODE

-
-public static final AuthNetField ELEMENT_VALIDATION_MODE
-
-
-
-
-
- -

-ELEMENT_VALUE

-
-public static final AuthNetField ELEMENT_VALUE
-
-
-
-
-
- -

-ELEMENT_VOID_COUNT

-
-public static final AuthNetField ELEMENT_VOID_COUNT
-
-
-
-
-
- -

-ELEMENT_ZIP

-
-public static final AuthNetField ELEMENT_ZIP
-
-
-
-
-
- -

-X_ACCOUNT_NUMBER

-
-public static final AuthNetField X_ACCOUNT_NUMBER
-
-
-
-
-
- -

-X_ADDRESS

-
-public static final AuthNetField X_ADDRESS
-
-
-
-
-
- -

-X_ALLOW_PARTIAL_AUTH

-
-public static final AuthNetField X_ALLOW_PARTIAL_AUTH
-
-
-
-
-
- -

-X_AMOUNT

-
-public static final AuthNetField X_AMOUNT
-
-
-
-
-
- -

-X_AUTH_CODE

-
-public static final AuthNetField X_AUTH_CODE
-
-
-
-
-
- -

-X_AUTHENTICATION_INDICATOR

-
-public static final AuthNetField X_AUTHENTICATION_INDICATOR
-
-
-
-
-
- -

-X_AVS_CODE

-
-public static final AuthNetField X_AVS_CODE
-
-
-
-
-
- -

-X_BACKGROUND_URL

-
-public static final AuthNetField X_BACKGROUND_URL
-
-
-
-
-
- -

-X_BANK_ABA_CODE

-
-public static final AuthNetField X_BANK_ABA_CODE
-
-
-
-
-
- -

-X_BANK_ACCT_NAME

-
-public static final AuthNetField X_BANK_ACCT_NAME
-
-
-
-
-
- -

-X_BANK_ACCT_NUM

-
-public static final AuthNetField X_BANK_ACCT_NUM
-
-
-
-
-
- -

-X_BANK_ACCT_TYPE

-
-public static final AuthNetField X_BANK_ACCT_TYPE
-
-
-
-
-
- -

-X_BANK_CHECK_NUMBER

-
-public static final AuthNetField X_BANK_CHECK_NUMBER
-
-
-
-
-
- -

-X_BANK_NAME

-
-public static final AuthNetField X_BANK_NAME
-
-
-
-
-
- -

-X_CARD_CODE

-
-public static final AuthNetField X_CARD_CODE
-
-
-
-
-
- -

-X_CARD_NUM

-
-public static final AuthNetField X_CARD_NUM
-
-
-
-
-
- -

-X_CARD_TYPE

-
-public static final AuthNetField X_CARD_TYPE
-
-
-
-
-
- -

-X_CARDHOLDER_AUTHENTICATION_VALUE

-
-public static final AuthNetField X_CARDHOLDER_AUTHENTICATION_VALUE
-
-
-
-
-
- -

-X_CAVV_RESPONSE

-
-public static final AuthNetField X_CAVV_RESPONSE
-
-
-
-
-
- -

-X_CITY

-
-public static final AuthNetField X_CITY
-
-
-
-
-
- -

-X_COLOR_BACKGROUND

-
-public static final AuthNetField X_COLOR_BACKGROUND
-
-
-
-
-
- -

-X_COLOR_LINK

-
-public static final AuthNetField X_COLOR_LINK
-
-
-
-
-
- -

-X_COLOR_TEXT

-
-public static final AuthNetField X_COLOR_TEXT
-
-
-
-
-
- -

-X_COMPANY

-
-public static final AuthNetField X_COMPANY
-
-
-
-
-
- -

-X_COUNTRY

-
-public static final AuthNetField X_COUNTRY
-
-
-
-
-
- -

-X_CPVERSION

-
-public static final AuthNetField X_CPVERSION
-
-
-
-
-
- -

-X_CURRENCY_CODE

-
-public static final AuthNetField X_CURRENCY_CODE
-
-
-
-
-
- -

-X_CUST_ID

-
-public static final AuthNetField X_CUST_ID
-
-
-
-
-
- -

-X_CUSTOMER_IP

-
-public static final AuthNetField X_CUSTOMER_IP
-
-
-
-
-
- -

-X_CVV2_RESP_CODE

-
-public static final AuthNetField X_CVV2_RESP_CODE
-
-
-
-
-
- -

-X_DELIM_CHAR_FIELD

-
-public static final AuthNetField X_DELIM_CHAR_FIELD
-
-
-
-
-
- -

-X_DELIM_DATA

-
-public static final AuthNetField X_DELIM_DATA
-
-
-
-
-
- -

-X_DELIM_DATA_FIELD

-
-public static final AuthNetField X_DELIM_DATA_FIELD
-
-
-
-
-
- -

-X_DESCRIPTION

-
-public static final AuthNetField X_DESCRIPTION
-
-
-
-
-
- -

-X_DEVICE_TYPE

-
-public static final AuthNetField X_DEVICE_TYPE
-
-
-
-
-
- -

-X_DUPLICATE_WINDOW

-
-public static final AuthNetField X_DUPLICATE_WINDOW
-
-
-
-
-
- -

-X_DUTY

-
-public static final AuthNetField X_DUTY
-
-
-
-
-
- -

-X_ECHECK_TYPE

-
-public static final AuthNetField X_ECHECK_TYPE
-
-
-
-
-
- -

-X_EMAIL

-
-public static final AuthNetField X_EMAIL
-
-
-
-
-
- -

-X_EMAIL_CUSTOMER

-
-public static final AuthNetField X_EMAIL_CUSTOMER
-
-
-
-
-
- -

-X_ENCAP_CHAR

-
-public static final AuthNetField X_ENCAP_CHAR
-
-
-
-
-
- -

-X_EXP_DATE

-
-public static final AuthNetField X_EXP_DATE
-
-
-
-
-
- -

-X_FAX

-
-public static final AuthNetField X_FAX
-
-
-
-
-
- -

-X_FIRST_NAME

-
-public static final AuthNetField X_FIRST_NAME
-
-
-
-
-
- -

-X_FOOTER_EMAIL_RECEIPT

-
-public static final AuthNetField X_FOOTER_EMAIL_RECEIPT
-
-
-
-
-
- -

-X_FOOTER_HTML_PAYMENT_FORM

-
-public static final AuthNetField X_FOOTER_HTML_PAYMENT_FORM
-
-
-
-
-
- -

-X_FP_HASH

-
-public static final AuthNetField X_FP_HASH
-
-
-
-
-
- -

-X_FP_SEQUENCE

-
-public static final AuthNetField X_FP_SEQUENCE
-
-
-
-
-
- -

-X_FP_TIMESTAMP

-
-public static final AuthNetField X_FP_TIMESTAMP
-
-
-
-
-
- -

-X_FREIGHT

-
-public static final AuthNetField X_FREIGHT
-
-
-
-
-
- -

-X_HEADER_EMAIL_RECEIPT

-
-public static final AuthNetField X_HEADER_EMAIL_RECEIPT
-
-
-
-
-
- -

-X_HEADER_HTML_PAYMENT_FORM

-
-public static final AuthNetField X_HEADER_HTML_PAYMENT_FORM
-
-
-
-
-
- -

-X_INVOICE_NUM

-
-public static final AuthNetField X_INVOICE_NUM
-
-
-
-
-
- -

-X_LAST_NAME

-
-public static final AuthNetField X_LAST_NAME
-
-
-
-
-
- -

-X_LINE_ITEM

-
-public static final AuthNetField X_LINE_ITEM
-
-
-
-
-
- -

-X_LOGIN

-
-public static final AuthNetField X_LOGIN
-
-
-
-
-
- -

-X_LOGO_URL

-
-public static final AuthNetField X_LOGO_URL
-
-
-
-
-
- -

-X_MARKET_TYPE

-
-public static final AuthNetField X_MARKET_TYPE
-
-
-
-
-
- -

-X_MD5_HASH

-
-public static final AuthNetField X_MD5_HASH
-
-
-
-
-
- -

-X_MERCHANT_EMAIL

-
-public static final AuthNetField X_MERCHANT_EMAIL
-
-
-
-
-
- -

-X_METHOD

-
-public static final AuthNetField X_METHOD
-
-
-
-
-
- -

-X_PHONE

-
-public static final AuthNetField X_PHONE
-
-
-
-
-
- -

-X_PO_NUM

-
-public static final AuthNetField X_PO_NUM
-
-
-
-
-
- -

-X_PREPAID_BALANCE_ON_CARD

-
-public static final AuthNetField X_PREPAID_BALANCE_ON_CARD
-
-
-
-
-
- -

-X_PREPAID_REQUESTED_AMOUNT

-
-public static final AuthNetField X_PREPAID_REQUESTED_AMOUNT
-
-
-
-
-
- -

-X_RECEIPT_LINK_METHOD

-
-public static final AuthNetField X_RECEIPT_LINK_METHOD
-
-
-
-
-
- -

-X_RECEIPT_LINK_TEXT

-
-public static final AuthNetField X_RECEIPT_LINK_TEXT
-
-
-
-
-
- -

-X_RECEIPT_LINK_URL

-
-public static final AuthNetField X_RECEIPT_LINK_URL
-
-
-
-
-
- -

-X_RECURRING_BILLING

-
-public static final AuthNetField X_RECURRING_BILLING
-
-
-
-
-
- -

-X_RELAY_RESPONSE

-
-public static final AuthNetField X_RELAY_RESPONSE
-
-
-
-
-
- -

-X_RELAY_URL

-
-public static final AuthNetField X_RELAY_URL
-
-
-
-
-
- -

-X_RENAME

-
-public static final AuthNetField X_RENAME
-
-
-
-
-
- -

-X_RESPONSE_CODE

-
-public static final AuthNetField X_RESPONSE_CODE
-
-
-
-
-
- -

-X_RESPONSE_FORMAT

-
-public static final AuthNetField X_RESPONSE_FORMAT
-
-
-
-
-
- -

-X_RESPONSE_REASON_CODE

-
-public static final AuthNetField X_RESPONSE_REASON_CODE
-
-
-
-
-
- -

-X_RESPONSE_REASON_TEXT

-
-public static final AuthNetField X_RESPONSE_REASON_TEXT
-
-
-
-
-
- -

-X_SHIP_TO_ADDRESS

-
-public static final AuthNetField X_SHIP_TO_ADDRESS
-
-
-
-
-
- -

-X_SHIP_TO_CITY

-
-public static final AuthNetField X_SHIP_TO_CITY
-
-
-
-
-
- -

-X_SHIP_TO_COMPANY

-
-public static final AuthNetField X_SHIP_TO_COMPANY
-
-
-
-
-
- -

-X_SHIP_TO_COUNTRY

-
-public static final AuthNetField X_SHIP_TO_COUNTRY
-
-
-
-
-
- -

-X_SHIP_TO_FIRST_NAME

-
-public static final AuthNetField X_SHIP_TO_FIRST_NAME
-
-
-
-
-
- -

-X_SHIP_TO_LAST_NAME

-
-public static final AuthNetField X_SHIP_TO_LAST_NAME
-
-
-
-
-
- -

-X_SHIP_TO_STATE

-
-public static final AuthNetField X_SHIP_TO_STATE
-
-
-
-
-
- -

-X_SHIP_TO_ZIP

-
-public static final AuthNetField X_SHIP_TO_ZIP
-
-
-
-
-
- -

-X_SHOW_FORM

-
-public static final AuthNetField X_SHOW_FORM
-
-
-
-
-
- -

-X_SPLIT_TENDER_ID

-
-public static final AuthNetField X_SPLIT_TENDER_ID
-
-
-
-
-
- -

-X_STATE

-
-public static final AuthNetField X_STATE
-
-
-
-
-
- -

-X_TAX

-
-public static final AuthNetField X_TAX
-
-
-
-
-
- -

-X_TAX_EXEMPT

-
-public static final AuthNetField X_TAX_EXEMPT
-
-
-
-
-
- -

-X_TEST_REQUEST

-
-public static final AuthNetField X_TEST_REQUEST
-
-
-
-
-
- -

-X_TRACK1

-
-public static final AuthNetField X_TRACK1
-
-
-
-
-
- -

-X_TRACK2

-
-public static final AuthNetField X_TRACK2
-
-
-
-
-
- -

-X_TRAN_KEY

-
-public static final AuthNetField X_TRAN_KEY
-
-
-
-
-
- -

-X_TRANS_ID

-
-public static final AuthNetField X_TRANS_ID
-
-
-
-
-
- -

-X_TYPE

-
-public static final AuthNetField X_TYPE
-
-
-
-
-
- -

-X_USER_REF

-
-public static final AuthNetField X_USER_REF
-
-
-
-
-
- -

-X_VERSION_FIELD

-
-public static final AuthNetField X_VERSION_FIELD
-
-
-
-
-
- -

-X_ZIP

-
-public static final AuthNetField X_ZIP
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static AuthNetField[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (AuthNetField c : AuthNetField.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static AuthNetField valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getFieldName

-
-public java.lang.String getFieldName()
-
-
- -
Returns:
the fieldName
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/Environment.html b/docs/javadocs/net/authorize/Environment.html deleted file mode 100644 index f14a105..0000000 --- a/docs/javadocs/net/authorize/Environment.html +++ /dev/null @@ -1,479 +0,0 @@ - - - - - - -Environment (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Enum Environment

-
-java.lang.Object
-  extended by java.lang.Enum<Environment>
-      extended by net.authorize.Environment
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Environment>
-
-
-
-
public enum Environment
extends java.lang.Enum<Environment>
- - -

-Determines which environment to post transactions against. - By placing the merchant's payment gateway account in Test Mode in the - Merchant Interface. New payment gateway accounts are placed in Test Mode - by default. For more information about Test Mode, see the Merchant - Integration Guide at http://www.authorize.net/support/merchant/. - - When processing test transactions in Test Mode, the payment gateway will - return a transaction ID of "0." This means you cannot test follow-on - transactions, for example, credits, voids, etc., while in Test Mode. - - Note: Transactions posted against live merchant accounts using either of - the above testing methods are not submitted to financial institutions for - authorization and are not stored in the Merchant Interface. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
CUSTOM - -
-           
PRODUCTION - -
-           
PRODUCTION_TESTMODE - -
-           
SANDBOX - -
-           
SANDBOX_TESTMODE - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static EnvironmentcreateEnvironment(java.lang.String nvpBaseUrl, - java.lang.String xmlBaseUrl) - -
-          If a custom environment needs to be supported, this convenience create - method can be used to pass in custom URLS for NVP and xml gateways.
- java.lang.StringgetBaseUrl() - -
-          Deprecated. As of release 2.0.0, replaced by getNVPBaseUrl()
- java.lang.StringgetNVPBaseUrl() - -
-          Return the name-value-pair base url.
- java.lang.StringgetXmlBaseUrl() - -
-          Return the XML base url.
-static EnvironmentvalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static Environment[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-SANDBOX

-
-public static final Environment SANDBOX
-
-
-
-
-
- -

-SANDBOX_TESTMODE

-
-public static final Environment SANDBOX_TESTMODE
-
-
-
-
-
- -

-PRODUCTION

-
-public static final Environment PRODUCTION
-
-
-
-
-
- -

-PRODUCTION_TESTMODE

-
-public static final Environment PRODUCTION_TESTMODE
-
-
-
-
-
- -

-CUSTOM

-
-public static final Environment CUSTOM
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static Environment[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (Environment c : Environment.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static Environment valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getBaseUrl

-
-@Deprecated
-public java.lang.String getBaseUrl()
-
-
Deprecated. As of release 2.0.0, replaced by getNVPBaseUrl() -

-

- -
Returns:
the baseUrl
-
-
-
- -

-getNVPBaseUrl

-
-public java.lang.String getNVPBaseUrl()
-
-
Return the name-value-pair base url. -

-

- -
Returns:
the nvpBaseUrl
-
-
-
- -

-getXmlBaseUrl

-
-public java.lang.String getXmlBaseUrl()
-
-
Return the XML base url. -

-

- -
Returns:
the xmlBaseUrl
-
-
-
- -

-createEnvironment

-
-public static Environment createEnvironment(java.lang.String nvpBaseUrl,
-                                            java.lang.String xmlBaseUrl)
-
-
If a custom environment needs to be supported, this convenience create - method can be used to pass in custom URLS for NVP and xml gateways. -

-

-
Parameters:
nvpBaseUrl -
xmlBaseUrl - -
Returns:
Environment object
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/ITransaction.html b/docs/javadocs/net/authorize/ITransaction.html deleted file mode 100644 index eca32eb..0000000 --- a/docs/javadocs/net/authorize/ITransaction.html +++ /dev/null @@ -1,709 +0,0 @@ - - - - - - -ITransaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Interface ITransaction

-
-
All Known Implementing Classes:
NVPTransaction, Transaction, Transaction, Transaction, Transaction, Transaction, Transaction, Transaction, XMLTransaction
-
-
-
-
public interface ITransaction
- - -

-Interface for Transactions. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static intCURRENCY_DECIMAL_PLACES - -
-           
-static java.lang.StringEMPTY_STRING - -
-           
-static java.lang.StringFALSE - -
-           
-static intQUANTITY_DECIMAL_PLACES - -
-           
-static java.lang.StringTRUE - -
-           
-static java.lang.StringVERSION - -
-           
-static java.math.BigDecimalZERO_AMOUNT - -
-           
-static java.lang.StringZERO_STRING - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- BankAccountgetBankAccount() - -
-           
- CreditCardgetCreditCard() - -
-           
- CustomergetCustomer() - -
-           
- EmailReceiptgetEmailReceipt() - -
-           
- java.lang.StringgetMD5Value() - -
-           
- MerchantgetMerchant() - -
-           
- OrdergetOrder() - -
-           
- ShippingAddressgetShippingAddress() - -
-           
- ShippingChargesgetShippingCharges() - -
-           
- java.lang.Enum<?>getTransactionType() - -
-           
- voidsetBankAccount(BankAccount bankAccount) - -
-           
- voidsetCreditCard(CreditCard creditCard) - -
-           
- voidsetCustomer(Customer customer) - -
-           
- voidsetEmailReceipt(EmailReceipt emailReceipt) - -
-           
- voidsetOrder(Order order) - -
-           
- voidsetShippingAddress(ShippingAddress shippingAddress) - -
-           
- voidsetShippingCharges(ShippingCharges shippingCharges) - -
-           
- java.lang.StringtoAuthNetPOSTString() - -
-           
-  -

- - - - - - - - -
-Field Detail
- -

-VERSION

-
-static final java.lang.String VERSION
-
-
-
See Also:
Constant Field Values
-
-
- -

-TRUE

-
-static final java.lang.String TRUE
-
-
-
See Also:
Constant Field Values
-
-
- -

-FALSE

-
-static final java.lang.String FALSE
-
-
-
See Also:
Constant Field Values
-
-
- -

-ZERO_STRING

-
-static final java.lang.String ZERO_STRING
-
-
-
See Also:
Constant Field Values
-
-
- -

-ZERO_AMOUNT

-
-static final java.math.BigDecimal ZERO_AMOUNT
-
-
-
-
-
- -

-EMPTY_STRING

-
-static final java.lang.String EMPTY_STRING
-
-
-
See Also:
Constant Field Values
-
-
- -

-CURRENCY_DECIMAL_PLACES

-
-static final int CURRENCY_DECIMAL_PLACES
-
-
-
See Also:
Constant Field Values
-
-
- -

-QUANTITY_DECIMAL_PLACES

-
-static final int QUANTITY_DECIMAL_PLACES
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Method Detail
- -

-getCreditCard

-
-CreditCard getCreditCard()
-
-
- -
Returns:
the creditCard
-
-
-
- -

-setCreditCard

-
-void setCreditCard(CreditCard creditCard)
-
-
-
Parameters:
creditCard - the creditCard to set
-
-
-
- -

-getBankAccount

-
-BankAccount getBankAccount()
-
-
- -
Returns:
the bankAccount
-
-
-
- -

-setBankAccount

-
-void setBankAccount(BankAccount bankAccount)
-
-
-
Parameters:
bankAccount - the bank account information to set
-
-
-
- -

-getCustomer

-
-Customer getCustomer()
-
-
- -
Returns:
the customer
-
-
-
- -

-setCustomer

-
-void setCustomer(Customer customer)
-
-
-
Parameters:
customer - the customer to set
-
-
-
- -

-getEmailReceipt

-
-EmailReceipt getEmailReceipt()
-
-
- -
Returns:
the emailReceipt
-
-
-
- -

-setEmailReceipt

-
-void setEmailReceipt(EmailReceipt emailReceipt)
-
-
-
Parameters:
emailReceipt - the emailReceipt to set
-
-
-
- -

-getOrder

-
-Order getOrder()
-
-
- -
Returns:
the order
-
-
-
- -

-setOrder

-
-void setOrder(Order order)
-
-
-
Parameters:
order - the order to set
-
-
-
- -

-getShippingAddress

-
-ShippingAddress getShippingAddress()
-
-
- -
Returns:
the shippingAddress
-
-
-
- -

-setShippingAddress

-
-void setShippingAddress(ShippingAddress shippingAddress)
-
-
-
Parameters:
shippingAddress - the shippingAddress to set
-
-
-
- -

-getShippingCharges

-
-ShippingCharges getShippingCharges()
-
-
- -
Returns:
the shippingCharges
-
-
-
- -

-setShippingCharges

-
-void setShippingCharges(ShippingCharges shippingCharges)
-
-
-
Parameters:
shippingCharges - the shippingCharges to set
-
-
-
- -

-getMD5Value

-
-java.lang.String getMD5Value()
-
-
- -
Returns:
the md5Value
-
-
-
- -

-getTransactionType

-
-java.lang.Enum<?> getTransactionType()
-
-
- -
Returns:
the transactionType
-
-
-
- -

-toAuthNetPOSTString

-
-java.lang.String toAuthNetPOSTString()
-
-
- -
Returns:
String to be POSTed to the AuthNet gateway.
-
-
-
- -

-getMerchant

-
-Merchant getMerchant()
-
-
- -
Returns:
the merchant container
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/Merchant.html b/docs/javadocs/net/authorize/Merchant.html deleted file mode 100644 index 200cde8..0000000 --- a/docs/javadocs/net/authorize/Merchant.html +++ /dev/null @@ -1,1064 +0,0 @@ - - - - - - -Merchant (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Class Merchant

-
-java.lang.Object
-  extended by net.authorize.Merchant
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Merchant
extends java.lang.Object
implements java.io.Serializable
- - -

-Container to hold authentication credentials. - - The Merchant is also responsible for creating transactions and posting them - to the gateway are performed through the Merchant. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - -
-Field Summary
-static intMAX_LOGIN_LENGTH - -
-           
-static intMAX_TRANSACTION_KEY_LENGTH - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- TransactioncreateAIMTransaction(TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Creates a new AIM Transaction (includes Card Present)
- TransactioncreateARBTransaction(TransactionType transactionType, - Subscription subscription) - -
-          Creates a new ARB Transaction.
- TransactioncreateCIMTransaction(TransactionType transactionType) - -
-          Creates a new CIM Transaction.
-static MerchantcreateMerchant(Environment environment, - IMerchantAuthentication merchantAuthenticator) - -
-           
-static MerchantcreateMerchant(Environment environment, - IMerchantAuthentication merchantAuthenticator, - java.lang.String md5Value) - -
-           
- TransactioncreateMobileTransaction(TransactionType transactionType) - -
-          Creates a new Mobile Transaction.
- TransactioncreateNotificationTransaction(TransactionType transactionType) - -
-          Creates a new notification Transaction.
- TransactioncreateReportingTransaction(TransactionType transactionType) - -
-          Creates a new Reporting Transaction.
- TransactioncreateSIMTransaction(TransactionType transactionType, - long fingerPrintSequence, - java.math.BigDecimal amount) - -
-          Creates a new SIM Transaction.
- DeviceTypegetDeviceType() - -
-           
- intgetDuplicateTxnWindowSeconds() - -
-           
- EnvironmentgetEnvironment() - -
-          Get the Environment that transactions will be posted against.
- MarketTypegetMarketType() - -
-           
- java.lang.StringgetMD5Value() - -
-           
- IMerchantAuthenticationgetMerchantAuthentication() - -
-          Get the merchant authenticator.
- java.lang.StringgetMerchantEmail() - -
-           
- java.lang.StringgetUserRef() - -
-          Get the UserRef value.
- booleanisAllowPartialAuth() - -
-          Return true if the merchant has been enabled, via the SDK, to allow - partial AUTH transactions.
- booleanisEmailCustomer() - -
-           
- booleanisRecurringBilling() - -
-           
- booleanisSandboxEnvironment() - -
-          Return true if the environment is a sandbox type environment.
- ResultpostTransaction(ITransaction transaction) - -
-          Post a Transaction request to the payment gateway.
- voidsetAllowPartialAuth(boolean allowPartialAuth) - -
-          Indicates if the transaction is enabled for partial authorization.
- voidsetDeviceType(DeviceType deviceType) - -
-           
- voidsetDuplicateTxnWindowSeconds(int duplicateTxnWindowSeconds) - -
-           
- voidsetEmailCustomer(boolean emailCustomer) - -
-           
- voidsetEnvironment(Environment environment) - -
-          Set the environment that transactions will be posted against.
- voidsetMarketType(MarketType marketType) - -
-           
- voidsetMD5Value(java.lang.String MD5Value) - -
-           
- voidsetMerchantAuthentication(IMerchantAuthentication merchantAuthenticator) - -
-          Set the merchant authenticator.
- voidsetMerchantEmail(java.lang.String merchantEmail) - -
-           
- voidsetRecurringBilling(boolean recurringBilling) - -
-           
- voidsetUserRef(java.lang.String userRef) - -
-          Set the userRef for Card Present transactions.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-MAX_LOGIN_LENGTH

-
-public static final int MAX_LOGIN_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_TRANSACTION_KEY_LENGTH

-
-public static final int MAX_TRANSACTION_KEY_LENGTH
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Method Detail
- -

-createMerchant

-
-public static Merchant createMerchant(Environment environment,
-                                      IMerchantAuthentication merchantAuthenticator)
-
-
-
-
-
-
-
-
-
- -

-createMerchant

-
-public static Merchant createMerchant(Environment environment,
-                                      IMerchantAuthentication merchantAuthenticator,
-                                      java.lang.String md5Value)
-
-
-
-
-
-
-
-
-
- -

-getMerchantAuthentication

-
-public IMerchantAuthentication getMerchantAuthentication()
-
-
Get the merchant authenticator. -

-

-
-
-
- -
Returns:
IMerchantAuthentication
-
-
-
- -

-setMerchantAuthentication

-
-public void setMerchantAuthentication(IMerchantAuthentication merchantAuthenticator)
-
-
Set the merchant authenticator. -

-

-
-
-
-
Parameters:
merchantAuthenticator -
-
-
-
- -

-isAllowPartialAuth

-
-public boolean isAllowPartialAuth()
-
-
Return true if the merchant has been enabled, via the SDK, to allow - partial AUTH transactions. -

-

-
-
-
- -
Returns:
the allowPartialAuth
-
-
-
- -

-setAllowPartialAuth

-
-public void setAllowPartialAuth(boolean allowPartialAuth)
-
-
Indicates if the transaction is enabled for partial authorization. - Including this field in the transaction request overrides your account - configuration. -

-

-
-
-
-
Parameters:
allowPartialAuth - the allowPartialAuth to set
-
-
-
- -

-getEnvironment

-
-public Environment getEnvironment()
-
-
Get the Environment that transactions will be posted against. -

-

-
-
-
- -
Returns:
the environment
-
-
-
- -

-setEnvironment

-
-public void setEnvironment(Environment environment)
-
-
Set the environment that transactions will be posted against. -

-

-
-
-
-
Parameters:
environment - the environment to set
-
-
-
- -

-isSandboxEnvironment

-
-public boolean isSandboxEnvironment()
-
-
Return true if the environment is a sandbox type environment. -

-

-
-
-
- -
Returns:
true if in the sandbox environment
-
-
-
- -

-getMarketType

-
-public MarketType getMarketType()
-
-
-
-
-
- -
Returns:
the marketType
-
-
-
- -

-setMarketType

-
-public void setMarketType(MarketType marketType)
-
-
-
-
-
-
Parameters:
marketType - the marketType to set
-
-
-
- -

-getDeviceType

-
-public DeviceType getDeviceType()
-
-
-
-
-
- -
Returns:
the deviceType
-
-
-
- -

-setDeviceType

-
-public void setDeviceType(DeviceType deviceType)
-
-
-
-
-
-
Parameters:
deviceType - the deviceType to set
-
-
-
- -

-getMD5Value

-
-public java.lang.String getMD5Value()
-
-
-
-
-
- -
Returns:
the MD5Value
-
-
-
- -

-setMD5Value

-
-public void setMD5Value(java.lang.String MD5Value)
-
-
-
-
-
-
Parameters:
MD5Value - the MD5Value to set
-
-
-
- -

-getUserRef

-
-public java.lang.String getUserRef()
-
-
Get the UserRef value. -

-

-
-
-
- -
Returns:
the userRef
-
-
-
- -

-setUserRef

-
-public void setUserRef(java.lang.String userRef)
-
-
Set the userRef for Card Present transactions. -

-

-
-
-
-
Parameters:
userRef - the userRef to set
-
-
-
- -

-getDuplicateTxnWindowSeconds

-
-public int getDuplicateTxnWindowSeconds()
-
-
-
-
-
- -
Returns:
the duplicateTxnWindowSeconds
-
-
-
- -

-setDuplicateTxnWindowSeconds

-
-public void setDuplicateTxnWindowSeconds(int duplicateTxnWindowSeconds)
-
-
-
-
-
-
Parameters:
duplicateTxnWindowSeconds - the duplicateTxnWindowSeconds to set
-
-
-
- -

-isEmailCustomer

-
-public boolean isEmailCustomer()
-
-
-
-
-
- -
Returns:
the emailCustomer
-
-
-
- -

-setEmailCustomer

-
-public void setEmailCustomer(boolean emailCustomer)
-
-
-
-
-
-
Parameters:
emailCustomer - the emailCustomer to set
-
-
-
- -

-getMerchantEmail

-
-public java.lang.String getMerchantEmail()
-
-
-
-
-
- -
Returns:
the merchantEmail
-
-
-
- -

-setMerchantEmail

-
-public void setMerchantEmail(java.lang.String merchantEmail)
-
-
-
-
-
-
Parameters:
merchantEmail - the merchantEmail to set
-
-
-
- -

-isRecurringBilling

-
-public boolean isRecurringBilling()
-
-
-
-
-
- -
Returns:
the recurringBilling
-
-
-
- -

-setRecurringBilling

-
-public void setRecurringBilling(boolean recurringBilling)
-
-
-
-
-
-
Parameters:
recurringBilling - the recurringBilling to set
-
-
-
- -

-createAIMTransaction

-
-public Transaction createAIMTransaction(TransactionType transactionType,
-                                        java.math.BigDecimal amount)
-
-
Creates a new AIM Transaction (includes Card Present) -

-

-
-
-
-
Parameters:
transactionType -
amount - -
Returns:
A newly created Transaction
-
-
-
- -

-createSIMTransaction

-
-public Transaction createSIMTransaction(TransactionType transactionType,
-                                        long fingerPrintSequence,
-                                        java.math.BigDecimal amount)
-
-
Creates a new SIM Transaction. -

-

-
-
-
-
Parameters:
transactionType -
fingerPrintSequence -
amount - -
Returns:
A newly created Transaction
-
-
-
- -

-createARBTransaction

-
-public Transaction createARBTransaction(TransactionType transactionType,
-                                        Subscription subscription)
-
-
Creates a new ARB Transaction. -

-

-
-
-
-
Parameters:
transactionType -
subscription - -
Returns:
A newly created Transaction
-
-
-
- -

-createCIMTransaction

-
-public Transaction createCIMTransaction(TransactionType transactionType)
-
-
Creates a new CIM Transaction. -

-

-
-
-
-
Parameters:
transactionType - -
Returns:
A newly created Transaction
-
-
-
- -

-createReportingTransaction

-
-public Transaction createReportingTransaction(TransactionType transactionType)
-
-
Creates a new Reporting Transaction. -

-

-
-
-
-
Parameters:
transactionType - -
Returns:
A newly created Transaction
-
-
-
- -

-createMobileTransaction

-
-public Transaction createMobileTransaction(TransactionType transactionType)
-
-
Creates a new Mobile Transaction. -

-

-
-
-
-
Parameters:
transactionType - -
Returns:
A newly created Transaction
-
-
-
- -

-createNotificationTransaction

-
-public Transaction createNotificationTransaction(TransactionType transactionType)
-
-
Creates a new notification Transaction. -

-

-
-
-
-
Parameters:
transactionType - -
Returns:
A newly created Transaction
-
-
-
- -

-postTransaction

-
-public Result postTransaction(ITransaction transaction)
-
-
Post a Transaction request to the payment gateway. -

-

-
-
-
-
Parameters:
transaction - -
Returns:
A Result is returned with each post.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/NVPTransaction.html b/docs/javadocs/net/authorize/NVPTransaction.html deleted file mode 100644 index edc416e..0000000 --- a/docs/javadocs/net/authorize/NVPTransaction.html +++ /dev/null @@ -1,949 +0,0 @@ - - - - - - -NVPTransaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Class NVPTransaction

-
-java.lang.Object
-  extended by net.authorize.NVPTransaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
Direct Known Subclasses:
Transaction
-
-
-
-
public abstract class NVPTransaction
extends java.lang.Object
implements java.io.Serializable, ITransaction
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  AddressbillToAddress - -
-           
-protected  CreditCardcreditCard - -
-           
-protected  Customercustomer - -
-           
-protected  ECheckeCheck - -
-           
-protected  EmailReceiptemailReceipt - -
-           
-protected  Environmentenvironment - -
-           
-protected  java.lang.Stringmd5Value - -
-           
-protected  Merchantmerchant - -
-           
-protected  Orderorder - -
-           
-protected  ShippingAddressshippingAddress - -
-           
-protected  ShippingChargesshippingCharges - -
-           
-protected  TransactionTypetransactionType - -
-           
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - -
-Constructor Summary
NVPTransaction() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- BankAccountgetBankAccount() - -
-          Returns the bank account/eCheck account information.
- CreditCardgetCreditCard() - -
-           
- CustomergetCustomer() - -
-           
- ECheckgetECheck() - -
-           
- EmailReceiptgetEmailReceipt() - -
-           
- EnvironmentgetEnvironment() - -
-           
- java.lang.StringgetMD5Value() - -
-           
- MerchantgetMerchant() - -
-          Return the Merchant container.
- OrdergetOrder() - -
-           
- ShippingAddressgetShippingAddress() - -
-           
- ShippingChargesgetShippingCharges() - -
-           
- java.lang.Enum<?>getTransactionType() - -
-           
- voidsetBankAccount(BankAccount bankAccount) - -
-          Set the bank account / eCheck information.
- voidsetCreditCard(CreditCard creditCard) - -
-           
- voidsetCustomer(Customer customer) - -
-           
- voidsetECheck(ECheck eCheck) - -
-           
- voidsetEmailReceipt(EmailReceipt emailReceipt) - -
-           
- voidsetOrder(Order order) - -
-           
- voidsetShippingAddress(ShippingAddress shippingAddress) - -
-           
- voidsetShippingCharges(ShippingCharges shippingCharges) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.ITransaction
toAuthNetPOSTString
-  -

- - - - - - - - -
-Field Detail
- -

-eCheck

-
-protected ECheck eCheck
-
-
-
-
-
- -

-creditCard

-
-protected CreditCard creditCard
-
-
-
-
-
- -

-customer

-
-protected Customer customer
-
-
-
-
-
- -

-emailReceipt

-
-protected EmailReceipt emailReceipt
-
-
-
-
-
- -

-environment

-
-protected Environment environment
-
-
-
-
-
- -

-md5Value

-
-protected java.lang.String md5Value
-
-
-
-
-
- -

-merchant

-
-protected Merchant merchant
-
-
-
-
-
- -

-order

-
-protected Order order
-
-
-
-
-
- -

-billToAddress

-
-protected Address billToAddress
-
-
-
-
-
- -

-shippingAddress

-
-protected ShippingAddress shippingAddress
-
-
-
-
-
- -

-shippingCharges

-
-protected ShippingCharges shippingCharges
-
-
-
-
-
- -

-transactionType

-
-protected TransactionType transactionType
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-NVPTransaction

-
-public NVPTransaction()
-
-
- - - - - - - - -
-Method Detail
- -

-getCreditCard

-
-public CreditCard getCreditCard()
-
-
-
Specified by:
getCreditCard in interface ITransaction
-
-
- -
Returns:
the creditCard
-
-
-
- -

-getCustomer

-
-public Customer getCustomer()
-
-
-
Specified by:
getCustomer in interface ITransaction
-
-
- -
Returns:
the customer
-
-
-
- -

-getECheck

-
-public ECheck getECheck()
-
-
-
-
-
-
-
-
-
- -

-getEmailReceipt

-
-public EmailReceipt getEmailReceipt()
-
-
-
Specified by:
getEmailReceipt in interface ITransaction
-
-
- -
Returns:
the emailReceipt
-
-
-
- -

-getEnvironment

-
-public Environment getEnvironment()
-
-
-
-
-
-
-
-
-
- -

-getMD5Value

-
-public java.lang.String getMD5Value()
-
-
-
Specified by:
getMD5Value in interface ITransaction
-
-
- -
Returns:
the md5Value
-
-
-
- -

-getOrder

-
-public Order getOrder()
-
-
-
Specified by:
getOrder in interface ITransaction
-
-
- -
Returns:
the order
-
-
-
- -

-getShippingAddress

-
-public ShippingAddress getShippingAddress()
-
-
-
Specified by:
getShippingAddress in interface ITransaction
-
-
- -
Returns:
the shippingAddress
-
-
-
- -

-getShippingCharges

-
-public ShippingCharges getShippingCharges()
-
-
-
Specified by:
getShippingCharges in interface ITransaction
-
-
- -
Returns:
the shippingCharges
-
-
-
- -

-getTransactionType

-
-public java.lang.Enum<?> getTransactionType()
-
-
-
Specified by:
getTransactionType in interface ITransaction
-
-
- -
Returns:
the transactionType
-
-
-
- -

-setCreditCard

-
-public void setCreditCard(CreditCard creditCard)
-
-
-
Specified by:
setCreditCard in interface ITransaction
-
-
-
Parameters:
creditCard - the creditCard to set
-
-
-
- -

-setCustomer

-
-public void setCustomer(Customer customer)
-
-
-
Specified by:
setCustomer in interface ITransaction
-
-
-
Parameters:
customer - the customer to set
-
-
-
- -

-setECheck

-
-public void setECheck(ECheck eCheck)
-
-
-
-
-
-
-
-
-
- -

-setEmailReceipt

-
-public void setEmailReceipt(EmailReceipt emailReceipt)
-
-
-
Specified by:
setEmailReceipt in interface ITransaction
-
-
-
Parameters:
emailReceipt - the emailReceipt to set
-
-
-
- -

-setOrder

-
-public void setOrder(Order order)
-
-
-
Specified by:
setOrder in interface ITransaction
-
-
-
Parameters:
order - the order to set
-
-
-
- -

-setShippingAddress

-
-public void setShippingAddress(ShippingAddress shippingAddress)
-
-
-
Specified by:
setShippingAddress in interface ITransaction
-
-
-
Parameters:
shippingAddress - the shippingAddress to set
-
-
-
- -

-setShippingCharges

-
-public void setShippingCharges(ShippingCharges shippingCharges)
-
-
-
Specified by:
setShippingCharges in interface ITransaction
-
-
-
Parameters:
shippingCharges - the shippingCharges to set
-
-
-
- -

-getBankAccount

-
-public BankAccount getBankAccount()
-
-
Returns the bank account/eCheck account information. -

-

-
Specified by:
getBankAccount in interface ITransaction
-
-
- -
Returns:
BankAccount
-
-
-
- -

-setBankAccount

-
-public void setBankAccount(BankAccount bankAccount)
-
-
Set the bank account / eCheck information. -

-

-
Specified by:
setBankAccount in interface ITransaction
-
-
-
Parameters:
bankAccount - bankAccount / eCheck information.
-
-
-
- -

-getMerchant

-
-public Merchant getMerchant()
-
-
Return the Merchant container. -

-

-
Specified by:
getMerchant in interface ITransaction
-
-
- -
Returns:
Merchant
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/ResponseCode.html b/docs/javadocs/net/authorize/ResponseCode.html deleted file mode 100644 index 7b8d5df..0000000 --- a/docs/javadocs/net/authorize/ResponseCode.html +++ /dev/null @@ -1,459 +0,0 @@ - - - - - - -ResponseCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Enum ResponseCode

-
-java.lang.Object
-  extended by java.lang.Enum<ResponseCode>
-      extended by net.authorize.ResponseCode
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResponseCode>
-
-
-
-
public enum ResponseCode
extends java.lang.Enum<ResponseCode>
- - -

-Response code indicates the overall status of the transaction - with possible values of approved, declined, error, or held for review. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
APPROVED - -
-           
DECLINED - -
-           
ERROR - -
-           
REVIEW - -
-           
UNKNOWN - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ResponseCodefindByResponseCode(int code) - -
-          Lookup a ResponseCode by it's response code.
-static ResponseCodefindByResponseCode(java.lang.String code) - -
-          Lookup a ResponseCode by it's response code.
- intgetCode() - -
-           
- java.lang.StringgetDescription() - -
-           
-static ResponseCodevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ResponseCode[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-APPROVED

-
-public static final ResponseCode APPROVED
-
-
-
-
-
- -

-DECLINED

-
-public static final ResponseCode DECLINED
-
-
-
-
-
- -

-ERROR

-
-public static final ResponseCode ERROR
-
-
-
-
-
- -

-REVIEW

-
-public static final ResponseCode REVIEW
-
-
-
-
-
- -

-UNKNOWN

-
-public static final ResponseCode UNKNOWN
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static ResponseCode[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (ResponseCode c : ResponseCode.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static ResponseCode valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByResponseCode

-
-public static ResponseCode findByResponseCode(int code)
-
-
Lookup a ResponseCode by it's response code. -

-

-
Parameters:
code - -
Returns:
Returns a ResponseCode if a code match is found.
-
-
-
- -

-findByResponseCode

-
-public static ResponseCode findByResponseCode(java.lang.String code)
-
-
Lookup a ResponseCode by it's response code. -

-

-
Parameters:
code - -
Returns:
Returns a ResponseCode if a code match is found.
-
-
-
- -

-getCode

-
-public int getCode()
-
-
- -
Returns:
the code
-
-
-
- -

-getDescription

-
-public java.lang.String getDescription()
-
-
- -
Returns:
the description
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/ResponseField.html b/docs/javadocs/net/authorize/ResponseField.html deleted file mode 100644 index 6cb82e0..0000000 --- a/docs/javadocs/net/authorize/ResponseField.html +++ /dev/null @@ -1,1492 +0,0 @@ - - - - - - -ResponseField (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Enum ResponseField

-
-java.lang.Object
-  extended by java.lang.Enum<ResponseField>
-      extended by net.authorize.ResponseField
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResponseField>
-
-
-
-
public enum ResponseField
extends java.lang.Enum<ResponseField>
- - -

-ResponseField mappings used in processing and matching the returned data from - the payment gateway. - - This enum is leveraged across all the integrations of - AIM,SIM,DPM,ARB and CIM. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
ACCOUNT_NUMBER - -
-           
ADDRESS - -
-           
AMOUNT - -
-           
AUTHORIZATION_CODE - -
-           
AVS_CODE - -
-           
CARD_CODE_RESPONSE - -
-           
CARD_TYPE - -
-           
CARDHOLDER_AUTHENTICATION_VERIFICATION_RESPONSE - -
-           
CITY - -
-           
COMPANY - -
-           
COUNTRY - -
-           
CUSTOMER_ID - -
-           
DESCRIPTION - -
-           
DUTY - -
-           
EMAIL_ADDRESS - -
-           
FAX - -
-           
FIRST_NAME - -
-           
FREIGHT - -
-           
INVOICE_NUMBER - -
-           
LAST_NAME - -
-           
MD5_HASH - -
-           
METHOD - -
-           
PHONE - -
-           
PREPAID_BALANCE_ON_CARD - -
-           
PREPAID_REQUESTED_AMOUNT - -
-           
PURCHASE_ORDER_NUMBER - -
-           
RESERVED_1 - -
-           
RESERVED_10 - -
-           
RESERVED_11 - -
-           
RESERVED_12 - -
-           
RESERVED_13 - -
-           
RESERVED_14 - -
-           
RESERVED_15 - -
-           
RESERVED_16 - -
-           
RESERVED_17 - -
-           
RESERVED_18 - -
-           
RESERVED_19 - -
-           
RESERVED_2 - -
-           
RESERVED_20 - -
-           
RESERVED_21 - -
-           
RESERVED_22 - -
-           
RESERVED_23 - -
-           
RESERVED_3 - -
-           
RESERVED_4 - -
-           
RESERVED_5 - -
-           
RESERVED_6 - -
-           
RESERVED_7 - -
-           
RESERVED_8 - -
-           
RESERVED_9 - -
-           
RESPONSE_CODE - -
-           
RESPONSE_REASON_CODE - -
-           
RESPONSE_REASON_TEXT - -
-           
RESPONSE_SUBCODE - -
-           
SHIP_TO_ADDRESS - -
-           
SHIP_TO_CITY - -
-           
SHIP_TO_COMPANY - -
-           
SHIP_TO_COUNTRY - -
-           
SHIP_TO_FIRST_NAME - -
-           
SHIP_TO_LAST_NAME - -
-           
SHIP_TO_STATE - -
-           
SHIP_TO_ZIP_CODE - -
-           
SPLIT_TENDER_ID - -
-           
STATE - -
-           
TAX - -
-           
TAX_EXEMPT - -
-           
TRANSACTION_ID - -
-           
TRANSACTION_TYPE - -
-           
ZIP_CODE - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ResponseFieldfindByFieldName(java.lang.String fieldName) - -
-          Lookup a ResponseField by it's field name.
-static ResponseFieldget(int order) - -
-          Get the ResponseField identified by the order specified.
- java.lang.StringgetFieldName() - -
-           
- intgetResponseOrder() - -
-           
- intgetResponsOrder() - -
-          Get the true response order.
-static ResponseFieldvalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ResponseField[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-RESPONSE_CODE

-
-public static final ResponseField RESPONSE_CODE
-
-
-
-
-
- -

-RESPONSE_SUBCODE

-
-public static final ResponseField RESPONSE_SUBCODE
-
-
-
-
-
- -

-RESPONSE_REASON_CODE

-
-public static final ResponseField RESPONSE_REASON_CODE
-
-
-
-
-
- -

-RESPONSE_REASON_TEXT

-
-public static final ResponseField RESPONSE_REASON_TEXT
-
-
-
-
-
- -

-AUTHORIZATION_CODE

-
-public static final ResponseField AUTHORIZATION_CODE
-
-
-
-
-
- -

-AVS_CODE

-
-public static final ResponseField AVS_CODE
-
-
-
-
-
- -

-TRANSACTION_ID

-
-public static final ResponseField TRANSACTION_ID
-
-
-
-
-
- -

-INVOICE_NUMBER

-
-public static final ResponseField INVOICE_NUMBER
-
-
-
-
-
- -

-DESCRIPTION

-
-public static final ResponseField DESCRIPTION
-
-
-
-
-
- -

-AMOUNT

-
-public static final ResponseField AMOUNT
-
-
-
-
-
- -

-METHOD

-
-public static final ResponseField METHOD
-
-
-
-
-
- -

-TRANSACTION_TYPE

-
-public static final ResponseField TRANSACTION_TYPE
-
-
-
-
-
- -

-CUSTOMER_ID

-
-public static final ResponseField CUSTOMER_ID
-
-
-
-
-
- -

-FIRST_NAME

-
-public static final ResponseField FIRST_NAME
-
-
-
-
-
- -

-LAST_NAME

-
-public static final ResponseField LAST_NAME
-
-
-
-
-
- -

-COMPANY

-
-public static final ResponseField COMPANY
-
-
-
-
-
- -

-ADDRESS

-
-public static final ResponseField ADDRESS
-
-
-
-
-
- -

-CITY

-
-public static final ResponseField CITY
-
-
-
-
-
- -

-STATE

-
-public static final ResponseField STATE
-
-
-
-
-
- -

-ZIP_CODE

-
-public static final ResponseField ZIP_CODE
-
-
-
-
-
- -

-COUNTRY

-
-public static final ResponseField COUNTRY
-
-
-
-
-
- -

-PHONE

-
-public static final ResponseField PHONE
-
-
-
-
-
- -

-FAX

-
-public static final ResponseField FAX
-
-
-
-
-
- -

-EMAIL_ADDRESS

-
-public static final ResponseField EMAIL_ADDRESS
-
-
-
-
-
- -

-SHIP_TO_FIRST_NAME

-
-public static final ResponseField SHIP_TO_FIRST_NAME
-
-
-
-
-
- -

-SHIP_TO_LAST_NAME

-
-public static final ResponseField SHIP_TO_LAST_NAME
-
-
-
-
-
- -

-SHIP_TO_COMPANY

-
-public static final ResponseField SHIP_TO_COMPANY
-
-
-
-
-
- -

-SHIP_TO_ADDRESS

-
-public static final ResponseField SHIP_TO_ADDRESS
-
-
-
-
-
- -

-SHIP_TO_CITY

-
-public static final ResponseField SHIP_TO_CITY
-
-
-
-
-
- -

-SHIP_TO_STATE

-
-public static final ResponseField SHIP_TO_STATE
-
-
-
-
-
- -

-SHIP_TO_ZIP_CODE

-
-public static final ResponseField SHIP_TO_ZIP_CODE
-
-
-
-
-
- -

-SHIP_TO_COUNTRY

-
-public static final ResponseField SHIP_TO_COUNTRY
-
-
-
-
-
- -

-TAX

-
-public static final ResponseField TAX
-
-
-
-
-
- -

-DUTY

-
-public static final ResponseField DUTY
-
-
-
-
-
- -

-FREIGHT

-
-public static final ResponseField FREIGHT
-
-
-
-
-
- -

-TAX_EXEMPT

-
-public static final ResponseField TAX_EXEMPT
-
-
-
-
-
- -

-PURCHASE_ORDER_NUMBER

-
-public static final ResponseField PURCHASE_ORDER_NUMBER
-
-
-
-
-
- -

-MD5_HASH

-
-public static final ResponseField MD5_HASH
-
-
-
-
-
- -

-CARD_CODE_RESPONSE

-
-public static final ResponseField CARD_CODE_RESPONSE
-
-
-
-
-
- -

-CARDHOLDER_AUTHENTICATION_VERIFICATION_RESPONSE

-
-public static final ResponseField CARDHOLDER_AUTHENTICATION_VERIFICATION_RESPONSE
-
-
-
-
-
- -

-RESERVED_1

-
-public static final ResponseField RESERVED_1
-
-
-
-
-
- -

-RESERVED_2

-
-public static final ResponseField RESERVED_2
-
-
-
-
-
- -

-RESERVED_3

-
-public static final ResponseField RESERVED_3
-
-
-
-
-
- -

-RESERVED_4

-
-public static final ResponseField RESERVED_4
-
-
-
-
-
- -

-RESERVED_5

-
-public static final ResponseField RESERVED_5
-
-
-
-
-
- -

-RESERVED_6

-
-public static final ResponseField RESERVED_6
-
-
-
-
-
- -

-RESERVED_7

-
-public static final ResponseField RESERVED_7
-
-
-
-
-
- -

-RESERVED_8

-
-public static final ResponseField RESERVED_8
-
-
-
-
-
- -

-RESERVED_9

-
-public static final ResponseField RESERVED_9
-
-
-
-
-
- -

-RESERVED_10

-
-public static final ResponseField RESERVED_10
-
-
-
-
-
- -

-ACCOUNT_NUMBER

-
-public static final ResponseField ACCOUNT_NUMBER
-
-
-
-
-
- -

-CARD_TYPE

-
-public static final ResponseField CARD_TYPE
-
-
-
-
-
- -

-SPLIT_TENDER_ID

-
-public static final ResponseField SPLIT_TENDER_ID
-
-
-
-
-
- -

-PREPAID_REQUESTED_AMOUNT

-
-public static final ResponseField PREPAID_REQUESTED_AMOUNT
-
-
-
-
-
- -

-PREPAID_BALANCE_ON_CARD

-
-public static final ResponseField PREPAID_BALANCE_ON_CARD
-
-
-
-
-
- -

-RESERVED_11

-
-public static final ResponseField RESERVED_11
-
-
-
-
-
- -

-RESERVED_12

-
-public static final ResponseField RESERVED_12
-
-
-
-
-
- -

-RESERVED_13

-
-public static final ResponseField RESERVED_13
-
-
-
-
-
- -

-RESERVED_14

-
-public static final ResponseField RESERVED_14
-
-
-
-
-
- -

-RESERVED_15

-
-public static final ResponseField RESERVED_15
-
-
-
-
-
- -

-RESERVED_16

-
-public static final ResponseField RESERVED_16
-
-
-
-
-
- -

-RESERVED_17

-
-public static final ResponseField RESERVED_17
-
-
-
-
-
- -

-RESERVED_18

-
-public static final ResponseField RESERVED_18
-
-
-
-
-
- -

-RESERVED_19

-
-public static final ResponseField RESERVED_19
-
-
-
-
-
- -

-RESERVED_20

-
-public static final ResponseField RESERVED_20
-
-
-
-
-
- -

-RESERVED_21

-
-public static final ResponseField RESERVED_21
-
-
-
-
-
- -

-RESERVED_22

-
-public static final ResponseField RESERVED_22
-
-
-
-
-
- -

-RESERVED_23

-
-public static final ResponseField RESERVED_23
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static ResponseField[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (ResponseField c : ResponseField.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static ResponseField valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getResponsOrder

-
-public int getResponsOrder()
-
-
Get the true response order. -

-

- -
Returns:
Integer of the response order.
-
-
-
- -

-get

-
-public static ResponseField get(int order)
-
-
Get the ResponseField identified by the order specified. -

-

-
Parameters:
order - -
Returns:
the ResponseField keyed off the order
-
-
-
- -

-findByFieldName

-
-public static ResponseField findByFieldName(java.lang.String fieldName)
-
-
Lookup a ResponseField by it's field name. -

-

-
Parameters:
fieldName - -
Returns:
Returns a ResponseField if the fieldName match is found.
-
-
-
- -

-getResponseOrder

-
-public int getResponseOrder()
-
-
- -
Returns:
the responseOrder
-
-
-
- -

-getFieldName

-
-public java.lang.String getFieldName()
-
-
- -
Returns:
the fieldName
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/ResponseReasonCode.html b/docs/javadocs/net/authorize/ResponseReasonCode.html deleted file mode 100644 index ad472c2..0000000 --- a/docs/javadocs/net/authorize/ResponseReasonCode.html +++ /dev/null @@ -1,3527 +0,0 @@ - - - - - - -ResponseReasonCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Enum ResponseReasonCode

-
-java.lang.Object
-  extended by java.lang.Enum<ResponseReasonCode>
-      extended by net.authorize.ResponseReasonCode
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResponseReasonCode>
-
-
-
-
public enum ResponseReasonCode
extends java.lang.Enum<ResponseReasonCode>
- - -

-Response Reason Code is a numeric representation of a more specific reason for the transaction status. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
RRC_0_0 - -
-           
RRC_1_1 - -
-           
RRC_1_307 - -
-           
RRC_1_308 - -
-           
RRC_1_310 - -
-           
RRC_1_311 - -
-           
RRC_2_127 - -
-           
RRC_2_141 - -
-           
RRC_2_145 - -
-           
RRC_2_165 - -
-           
RRC_2_171 - -
-           
RRC_2_172 - -
-           
RRC_2_174 - -
-           
RRC_2_2 - -
-           
RRC_2_200 - -
-           
RRC_2_201 - -
-           
RRC_2_202 - -
-           
RRC_2_203 - -
-           
RRC_2_204 - -
-           
RRC_2_205 - -
-           
RRC_2_206 - -
-           
RRC_2_207 - -
-           
RRC_2_208 - -
-           
RRC_2_209 - -
-           
RRC_2_210 - -
-           
RRC_2_211 - -
-           
RRC_2_212 - -
-           
RRC_2_213 - -
-           
RRC_2_214 - -
-           
RRC_2_215 - -
-           
RRC_2_216 - -
-           
RRC_2_217 - -
-           
RRC_2_218 - -
-           
RRC_2_219 - -
-           
RRC_2_220 - -
-           
RRC_2_221 - -
-           
RRC_2_222 - -
-           
RRC_2_223 - -
-           
RRC_2_224 - -
-           
RRC_2_250 - -
-           
RRC_2_251 - -
-           
RRC_2_254 - -
-           
RRC_2_27 - -
-           
RRC_2_28 - -
-           
RRC_2_29 - -
-           
RRC_2_3 - -
-           
RRC_2_30 - -
-           
RRC_2_31 - -
-           
RRC_2_315 - -
-           
RRC_2_316 - -
-           
RRC_2_317 - -
-           
RRC_2_318 - -
-           
RRC_2_319 - -
-           
RRC_2_34 - -
-           
RRC_2_35 - -
-           
RRC_2_37 - -
-           
RRC_2_38 - -
-           
RRC_2_4 - -
-           
RRC_2_41 - -
-           
RRC_2_44 - -
-           
RRC_2_45 - -
-           
RRC_2_65 - -
-           
RRC_3_10 - -
-           
RRC_3_100 - -
-           
RRC_3_101 - -
-           
RRC_3_102 - -
-           
RRC_3_103 - -
-           
RRC_3_104 - -
-           
RRC_3_105 - -
-           
RRC_3_106 - -
-           
RRC_3_107 - -
-           
RRC_3_108 - -
-           
RRC_3_109 - -
-           
RRC_3_11 - -
-           
RRC_3_110 - -
-           
RRC_3_116 - -
-           
RRC_3_117 - -
-           
RRC_3_118 - -
-           
RRC_3_119 - -
-           
RRC_3_12 - -
-           
RRC_3_120 - -
-           
RRC_3_121 - -
-           
RRC_3_122 - -
-           
RRC_3_123 - -
-           
RRC_3_128 - -
-           
RRC_3_13 - -
-           
RRC_3_130 - -
-           
RRC_3_131 - -
-           
RRC_3_132 - -
-           
RRC_3_14 - -
-           
RRC_3_15 - -
-           
RRC_3_152 - -
-           
RRC_3_16 - -
-           
RRC_3_17 - -
-           
RRC_3_170 - -
-           
RRC_3_173 - -
-           
RRC_3_175 - -
-           
RRC_3_18 - -
-           
RRC_3_180 - -
-           
RRC_3_181 - -
-           
RRC_3_185 - -
-           
RRC_3_19 - -
-           
RRC_3_20 - -
-           
RRC_3_21 - -
-           
RRC_3_22 - -
-           
RRC_3_23 - -
-           
RRC_3_24 - -
-           
RRC_3_243 - -
-           
RRC_3_244 - -
-           
RRC_3_245 - -
-           
RRC_3_246 - -
-           
RRC_3_247 - -
-           
RRC_3_248 - -
-           
RRC_3_25 - -
-           
RRC_3_26 - -
-           
RRC_3_261 - -
-           
RRC_3_270 - -
-           
RRC_3_271 - -
-           
RRC_3_288 - -
-           
RRC_3_289 - -
-           
RRC_3_290 - -
-           
RRC_3_296 - -
-           
RRC_3_297 - -
-           
RRC_3_300 - -
-           
RRC_3_301 - -
-           
RRC_3_302 - -
-           
RRC_3_303 - -
-           
RRC_3_304 - -
-           
RRC_3_305 - -
-           
RRC_3_306 - -
-           
RRC_3_309 - -
-           
RRC_3_32 - -
-           
RRC_3_320 - -
-           
RRC_3_33 - -
-           
RRC_3_36 - -
-           
RRC_3_40 - -
-           
RRC_3_43 - -
-           
RRC_3_46 - -
-           
RRC_3_47 - -
-           
RRC_3_48 - -
-           
RRC_3_49 - -
-           
RRC_3_5 - -
-           
RRC_3_50 - -
-           
RRC_3_51 - -
-           
RRC_3_52 - -
-           
RRC_3_53 - -
-           
RRC_3_54 - -
-           
RRC_3_55 - -
-           
RRC_3_56 - -
-           
RRC_3_57 - -
-           
RRC_3_58 - -
-           
RRC_3_59 - -
-           
RRC_3_6 - -
-           
RRC_3_60 - -
-           
RRC_3_61 - -
-           
RRC_3_62 - -
-           
RRC_3_63 - -
-           
RRC_3_66 - -
-           
RRC_3_68 - -
-           
RRC_3_69 - -
-           
RRC_3_7 - -
-           
RRC_3_70 - -
-           
RRC_3_71 - -
-           
RRC_3_72 - -
-           
RRC_3_73 - -
-           
RRC_3_74 - -
-           
RRC_3_75 - -
-           
RRC_3_76 - -
-           
RRC_3_77 - -
-           
RRC_3_78 - -
-           
RRC_3_79 - -
-           
RRC_3_8 - -
-           
RRC_3_80 - -
-           
RRC_3_81 - -
-           
RRC_3_82 - -
-           
RRC_3_83 - -
-           
RRC_3_84 - -
-           
RRC_3_85 - -
-           
RRC_3_86 - -
-           
RRC_3_87 - -
-           
RRC_3_88 - -
-           
RRC_3_89 - -
-           
RRC_3_9 - -
-           
RRC_3_90 - -
-           
RRC_3_91 - -
-           
RRC_3_92 - -
-           
RRC_3_97 - -
-           
RRC_3_98 - -
-           
RRC_3_99 - -
-           
RRC_4_193 - -
-           
RRC_4_252 - -
-           
RRC_4_253 - -
-           
RRC_4_295 - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ResponseReasonCodefindByReasonCode(int reasonCode) - -
-          Lookup a response reason code by the reason response code itself.
-static ResponseReasonCodefindByReasonCode(java.lang.String reasonCode) - -
-          Lookup a response reason code by the reason response code itself.
- java.lang.StringgetNotes() - -
-           
- java.lang.StringgetReasonText() - -
-           
- ResponseCodegetResponseCode() - -
-           
- intgetResponseReasonCode() - -
-           
- voidsetReasonText(java.lang.String reasonText) - -
-          Set the reasonText.
-static ResponseReasonCodevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ResponseReasonCode[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-RRC_1_1

-
-public static final ResponseReasonCode RRC_1_1
-
-
-
-
-
- -

-RRC_2_2

-
-public static final ResponseReasonCode RRC_2_2
-
-
-
-
-
- -

-RRC_2_3

-
-public static final ResponseReasonCode RRC_2_3
-
-
-
-
-
- -

-RRC_2_4

-
-public static final ResponseReasonCode RRC_2_4
-
-
-
-
-
- -

-RRC_3_5

-
-public static final ResponseReasonCode RRC_3_5
-
-
-
-
-
- -

-RRC_3_6

-
-public static final ResponseReasonCode RRC_3_6
-
-
-
-
-
- -

-RRC_3_7

-
-public static final ResponseReasonCode RRC_3_7
-
-
-
-
-
- -

-RRC_3_8

-
-public static final ResponseReasonCode RRC_3_8
-
-
-
-
-
- -

-RRC_3_9

-
-public static final ResponseReasonCode RRC_3_9
-
-
-
-
-
- -

-RRC_3_10

-
-public static final ResponseReasonCode RRC_3_10
-
-
-
-
-
- -

-RRC_3_11

-
-public static final ResponseReasonCode RRC_3_11
-
-
-
-
-
- -

-RRC_3_12

-
-public static final ResponseReasonCode RRC_3_12
-
-
-
-
-
- -

-RRC_3_13

-
-public static final ResponseReasonCode RRC_3_13
-
-
-
-
-
- -

-RRC_3_14

-
-public static final ResponseReasonCode RRC_3_14
-
-
-
-
-
- -

-RRC_3_15

-
-public static final ResponseReasonCode RRC_3_15
-
-
-
-
-
- -

-RRC_3_16

-
-public static final ResponseReasonCode RRC_3_16
-
-
-
-
-
- -

-RRC_3_17

-
-public static final ResponseReasonCode RRC_3_17
-
-
-
-
-
- -

-RRC_3_18

-
-public static final ResponseReasonCode RRC_3_18
-
-
-
-
-
- -

-RRC_3_19

-
-public static final ResponseReasonCode RRC_3_19
-
-
-
-
-
- -

-RRC_3_20

-
-public static final ResponseReasonCode RRC_3_20
-
-
-
-
-
- -

-RRC_3_21

-
-public static final ResponseReasonCode RRC_3_21
-
-
-
-
-
- -

-RRC_3_22

-
-public static final ResponseReasonCode RRC_3_22
-
-
-
-
-
- -

-RRC_3_23

-
-public static final ResponseReasonCode RRC_3_23
-
-
-
-
-
- -

-RRC_3_24

-
-public static final ResponseReasonCode RRC_3_24
-
-
-
-
-
- -

-RRC_3_25

-
-public static final ResponseReasonCode RRC_3_25
-
-
-
-
-
- -

-RRC_3_26

-
-public static final ResponseReasonCode RRC_3_26
-
-
-
-
-
- -

-RRC_2_27

-
-public static final ResponseReasonCode RRC_2_27
-
-
-
-
-
- -

-RRC_2_28

-
-public static final ResponseReasonCode RRC_2_28
-
-
-
-
-
- -

-RRC_2_29

-
-public static final ResponseReasonCode RRC_2_29
-
-
-
-
-
- -

-RRC_2_30

-
-public static final ResponseReasonCode RRC_2_30
-
-
-
-
-
- -

-RRC_2_31

-
-public static final ResponseReasonCode RRC_2_31
-
-
-
-
-
- -

-RRC_3_32

-
-public static final ResponseReasonCode RRC_3_32
-
-
-
-
-
- -

-RRC_3_33

-
-public static final ResponseReasonCode RRC_3_33
-
-
-
-
-
- -

-RRC_2_34

-
-public static final ResponseReasonCode RRC_2_34
-
-
-
-
-
- -

-RRC_2_35

-
-public static final ResponseReasonCode RRC_2_35
-
-
-
-
-
- -

-RRC_3_36

-
-public static final ResponseReasonCode RRC_3_36
-
-
-
-
-
- -

-RRC_2_37

-
-public static final ResponseReasonCode RRC_2_37
-
-
-
-
-
- -

-RRC_2_38

-
-public static final ResponseReasonCode RRC_2_38
-
-
-
-
-
- -

-RRC_3_40

-
-public static final ResponseReasonCode RRC_3_40
-
-
-
-
-
- -

-RRC_2_41

-
-public static final ResponseReasonCode RRC_2_41
-
-
-
-
-
- -

-RRC_3_43

-
-public static final ResponseReasonCode RRC_3_43
-
-
-
-
-
- -

-RRC_2_44

-
-public static final ResponseReasonCode RRC_2_44
-
-
-
-
-
- -

-RRC_2_45

-
-public static final ResponseReasonCode RRC_2_45
-
-
-
-
-
- -

-RRC_3_46

-
-public static final ResponseReasonCode RRC_3_46
-
-
-
-
-
- -

-RRC_3_47

-
-public static final ResponseReasonCode RRC_3_47
-
-
-
-
-
- -

-RRC_3_48

-
-public static final ResponseReasonCode RRC_3_48
-
-
-
-
-
- -

-RRC_3_49

-
-public static final ResponseReasonCode RRC_3_49
-
-
-
-
-
- -

-RRC_3_50

-
-public static final ResponseReasonCode RRC_3_50
-
-
-
-
-
- -

-RRC_3_51

-
-public static final ResponseReasonCode RRC_3_51
-
-
-
-
-
- -

-RRC_3_52

-
-public static final ResponseReasonCode RRC_3_52
-
-
-
-
-
- -

-RRC_3_53

-
-public static final ResponseReasonCode RRC_3_53
-
-
-
-
-
- -

-RRC_3_54

-
-public static final ResponseReasonCode RRC_3_54
-
-
-
-
-
- -

-RRC_3_55

-
-public static final ResponseReasonCode RRC_3_55
-
-
-
-
-
- -

-RRC_3_56

-
-public static final ResponseReasonCode RRC_3_56
-
-
-
-
-
- -

-RRC_3_57

-
-public static final ResponseReasonCode RRC_3_57
-
-
-
-
-
- -

-RRC_3_58

-
-public static final ResponseReasonCode RRC_3_58
-
-
-
-
-
- -

-RRC_3_59

-
-public static final ResponseReasonCode RRC_3_59
-
-
-
-
-
- -

-RRC_3_60

-
-public static final ResponseReasonCode RRC_3_60
-
-
-
-
-
- -

-RRC_3_61

-
-public static final ResponseReasonCode RRC_3_61
-
-
-
-
-
- -

-RRC_3_62

-
-public static final ResponseReasonCode RRC_3_62
-
-
-
-
-
- -

-RRC_3_63

-
-public static final ResponseReasonCode RRC_3_63
-
-
-
-
-
- -

-RRC_2_65

-
-public static final ResponseReasonCode RRC_2_65
-
-
-
-
-
- -

-RRC_3_66

-
-public static final ResponseReasonCode RRC_3_66
-
-
-
-
-
- -

-RRC_3_68

-
-public static final ResponseReasonCode RRC_3_68
-
-
-
-
-
- -

-RRC_3_69

-
-public static final ResponseReasonCode RRC_3_69
-
-
-
-
-
- -

-RRC_3_70

-
-public static final ResponseReasonCode RRC_3_70
-
-
-
-
-
- -

-RRC_3_71

-
-public static final ResponseReasonCode RRC_3_71
-
-
-
-
-
- -

-RRC_3_72

-
-public static final ResponseReasonCode RRC_3_72
-
-
-
-
-
- -

-RRC_3_73

-
-public static final ResponseReasonCode RRC_3_73
-
-
-
-
-
- -

-RRC_3_74

-
-public static final ResponseReasonCode RRC_3_74
-
-
-
-
-
- -

-RRC_3_75

-
-public static final ResponseReasonCode RRC_3_75
-
-
-
-
-
- -

-RRC_3_76

-
-public static final ResponseReasonCode RRC_3_76
-
-
-
-
-
- -

-RRC_3_77

-
-public static final ResponseReasonCode RRC_3_77
-
-
-
-
-
- -

-RRC_3_78

-
-public static final ResponseReasonCode RRC_3_78
-
-
-
-
-
- -

-RRC_3_79

-
-public static final ResponseReasonCode RRC_3_79
-
-
-
-
-
- -

-RRC_3_80

-
-public static final ResponseReasonCode RRC_3_80
-
-
-
-
-
- -

-RRC_3_81

-
-public static final ResponseReasonCode RRC_3_81
-
-
-
-
-
- -

-RRC_3_82

-
-public static final ResponseReasonCode RRC_3_82
-
-
-
-
-
- -

-RRC_3_83

-
-public static final ResponseReasonCode RRC_3_83
-
-
-
-
-
- -

-RRC_3_84

-
-public static final ResponseReasonCode RRC_3_84
-
-
-
-
-
- -

-RRC_3_85

-
-public static final ResponseReasonCode RRC_3_85
-
-
-
-
-
- -

-RRC_3_86

-
-public static final ResponseReasonCode RRC_3_86
-
-
-
-
-
- -

-RRC_3_87

-
-public static final ResponseReasonCode RRC_3_87
-
-
-
-
-
- -

-RRC_3_88

-
-public static final ResponseReasonCode RRC_3_88
-
-
-
-
-
- -

-RRC_3_89

-
-public static final ResponseReasonCode RRC_3_89
-
-
-
-
-
- -

-RRC_3_90

-
-public static final ResponseReasonCode RRC_3_90
-
-
-
-
-
- -

-RRC_3_91

-
-public static final ResponseReasonCode RRC_3_91
-
-
-
-
-
- -

-RRC_3_92

-
-public static final ResponseReasonCode RRC_3_92
-
-
-
-
-
- -

-RRC_3_97

-
-public static final ResponseReasonCode RRC_3_97
-
-
-
-
-
- -

-RRC_3_98

-
-public static final ResponseReasonCode RRC_3_98
-
-
-
-
-
- -

-RRC_3_99

-
-public static final ResponseReasonCode RRC_3_99
-
-
-
-
-
- -

-RRC_3_100

-
-public static final ResponseReasonCode RRC_3_100
-
-
-
-
-
- -

-RRC_3_101

-
-public static final ResponseReasonCode RRC_3_101
-
-
-
-
-
- -

-RRC_3_102

-
-public static final ResponseReasonCode RRC_3_102
-
-
-
-
-
- -

-RRC_3_103

-
-public static final ResponseReasonCode RRC_3_103
-
-
-
-
-
- -

-RRC_3_104

-
-public static final ResponseReasonCode RRC_3_104
-
-
-
-
-
- -

-RRC_3_105

-
-public static final ResponseReasonCode RRC_3_105
-
-
-
-
-
- -

-RRC_3_106

-
-public static final ResponseReasonCode RRC_3_106
-
-
-
-
-
- -

-RRC_3_107

-
-public static final ResponseReasonCode RRC_3_107
-
-
-
-
-
- -

-RRC_3_108

-
-public static final ResponseReasonCode RRC_3_108
-
-
-
-
-
- -

-RRC_3_109

-
-public static final ResponseReasonCode RRC_3_109
-
-
-
-
-
- -

-RRC_3_110

-
-public static final ResponseReasonCode RRC_3_110
-
-
-
-
-
- -

-RRC_3_116

-
-public static final ResponseReasonCode RRC_3_116
-
-
-
-
-
- -

-RRC_3_117

-
-public static final ResponseReasonCode RRC_3_117
-
-
-
-
-
- -

-RRC_3_118

-
-public static final ResponseReasonCode RRC_3_118
-
-
-
-
-
- -

-RRC_3_119

-
-public static final ResponseReasonCode RRC_3_119
-
-
-
-
-
- -

-RRC_3_120

-
-public static final ResponseReasonCode RRC_3_120
-
-
-
-
-
- -

-RRC_3_121

-
-public static final ResponseReasonCode RRC_3_121
-
-
-
-
-
- -

-RRC_3_122

-
-public static final ResponseReasonCode RRC_3_122
-
-
-
-
-
- -

-RRC_3_123

-
-public static final ResponseReasonCode RRC_3_123
-
-
-
-
-
- -

-RRC_2_127

-
-public static final ResponseReasonCode RRC_2_127
-
-
-
-
-
- -

-RRC_3_128

-
-public static final ResponseReasonCode RRC_3_128
-
-
-
-
-
- -

-RRC_3_130

-
-public static final ResponseReasonCode RRC_3_130
-
-
-
-
-
- -

-RRC_3_131

-
-public static final ResponseReasonCode RRC_3_131
-
-
-
-
-
- -

-RRC_3_132

-
-public static final ResponseReasonCode RRC_3_132
-
-
-
-
-
- -

-RRC_2_141

-
-public static final ResponseReasonCode RRC_2_141
-
-
-
-
-
- -

-RRC_2_145

-
-public static final ResponseReasonCode RRC_2_145
-
-
-
-
-
- -

-RRC_3_152

-
-public static final ResponseReasonCode RRC_3_152
-
-
-
-
-
- -

-RRC_2_165

-
-public static final ResponseReasonCode RRC_2_165
-
-
-
-
-
- -

-RRC_3_170

-
-public static final ResponseReasonCode RRC_3_170
-
-
-
-
-
- -

-RRC_2_171

-
-public static final ResponseReasonCode RRC_2_171
-
-
-
-
-
- -

-RRC_2_172

-
-public static final ResponseReasonCode RRC_2_172
-
-
-
-
-
- -

-RRC_3_173

-
-public static final ResponseReasonCode RRC_3_173
-
-
-
-
-
- -

-RRC_2_174

-
-public static final ResponseReasonCode RRC_2_174
-
-
-
-
-
- -

-RRC_3_175

-
-public static final ResponseReasonCode RRC_3_175
-
-
-
-
-
- -

-RRC_3_180

-
-public static final ResponseReasonCode RRC_3_180
-
-
-
-
-
- -

-RRC_3_181

-
-public static final ResponseReasonCode RRC_3_181
-
-
-
-
-
- -

-RRC_3_185

-
-public static final ResponseReasonCode RRC_3_185
-
-
-
-
-
- -

-RRC_4_193

-
-public static final ResponseReasonCode RRC_4_193
-
-
-
-
-
- -

-RRC_2_200

-
-public static final ResponseReasonCode RRC_2_200
-
-
-
-
-
- -

-RRC_2_201

-
-public static final ResponseReasonCode RRC_2_201
-
-
-
-
-
- -

-RRC_2_202

-
-public static final ResponseReasonCode RRC_2_202
-
-
-
-
-
- -

-RRC_2_203

-
-public static final ResponseReasonCode RRC_2_203
-
-
-
-
-
- -

-RRC_2_204

-
-public static final ResponseReasonCode RRC_2_204
-
-
-
-
-
- -

-RRC_2_205

-
-public static final ResponseReasonCode RRC_2_205
-
-
-
-
-
- -

-RRC_2_206

-
-public static final ResponseReasonCode RRC_2_206
-
-
-
-
-
- -

-RRC_2_207

-
-public static final ResponseReasonCode RRC_2_207
-
-
-
-
-
- -

-RRC_2_208

-
-public static final ResponseReasonCode RRC_2_208
-
-
-
-
-
- -

-RRC_2_209

-
-public static final ResponseReasonCode RRC_2_209
-
-
-
-
-
- -

-RRC_2_210

-
-public static final ResponseReasonCode RRC_2_210
-
-
-
-
-
- -

-RRC_2_211

-
-public static final ResponseReasonCode RRC_2_211
-
-
-
-
-
- -

-RRC_2_212

-
-public static final ResponseReasonCode RRC_2_212
-
-
-
-
-
- -

-RRC_2_213

-
-public static final ResponseReasonCode RRC_2_213
-
-
-
-
-
- -

-RRC_2_214

-
-public static final ResponseReasonCode RRC_2_214
-
-
-
-
-
- -

-RRC_2_215

-
-public static final ResponseReasonCode RRC_2_215
-
-
-
-
-
- -

-RRC_2_216

-
-public static final ResponseReasonCode RRC_2_216
-
-
-
-
-
- -

-RRC_2_217

-
-public static final ResponseReasonCode RRC_2_217
-
-
-
-
-
- -

-RRC_2_218

-
-public static final ResponseReasonCode RRC_2_218
-
-
-
-
-
- -

-RRC_2_219

-
-public static final ResponseReasonCode RRC_2_219
-
-
-
-
-
- -

-RRC_2_220

-
-public static final ResponseReasonCode RRC_2_220
-
-
-
-
-
- -

-RRC_2_221

-
-public static final ResponseReasonCode RRC_2_221
-
-
-
-
-
- -

-RRC_2_222

-
-public static final ResponseReasonCode RRC_2_222
-
-
-
-
-
- -

-RRC_2_223

-
-public static final ResponseReasonCode RRC_2_223
-
-
-
-
-
- -

-RRC_2_224

-
-public static final ResponseReasonCode RRC_2_224
-
-
-
-
-
- -

-RRC_3_243

-
-public static final ResponseReasonCode RRC_3_243
-
-
-
-
-
- -

-RRC_3_244

-
-public static final ResponseReasonCode RRC_3_244
-
-
-
-
-
- -

-RRC_3_245

-
-public static final ResponseReasonCode RRC_3_245
-
-
-
-
-
- -

-RRC_3_246

-
-public static final ResponseReasonCode RRC_3_246
-
-
-
-
-
- -

-RRC_3_247

-
-public static final ResponseReasonCode RRC_3_247
-
-
-
-
-
- -

-RRC_3_248

-
-public static final ResponseReasonCode RRC_3_248
-
-
-
-
-
- -

-RRC_2_250

-
-public static final ResponseReasonCode RRC_2_250
-
-
-
-
-
- -

-RRC_2_251

-
-public static final ResponseReasonCode RRC_2_251
-
-
-
-
-
- -

-RRC_4_252

-
-public static final ResponseReasonCode RRC_4_252
-
-
-
-
-
- -

-RRC_4_253

-
-public static final ResponseReasonCode RRC_4_253
-
-
-
-
-
- -

-RRC_2_254

-
-public static final ResponseReasonCode RRC_2_254
-
-
-
-
-
- -

-RRC_3_261

-
-public static final ResponseReasonCode RRC_3_261
-
-
-
-
-
- -

-RRC_3_270

-
-public static final ResponseReasonCode RRC_3_270
-
-
-
-
-
- -

-RRC_3_271

-
-public static final ResponseReasonCode RRC_3_271
-
-
-
-
-
- -

-RRC_3_288

-
-public static final ResponseReasonCode RRC_3_288
-
-
-
-
-
- -

-RRC_3_289

-
-public static final ResponseReasonCode RRC_3_289
-
-
-
-
-
- -

-RRC_3_290

-
-public static final ResponseReasonCode RRC_3_290
-
-
-
-
-
- -

-RRC_4_295

-
-public static final ResponseReasonCode RRC_4_295
-
-
-
-
-
- -

-RRC_3_296

-
-public static final ResponseReasonCode RRC_3_296
-
-
-
-
-
- -

-RRC_3_297

-
-public static final ResponseReasonCode RRC_3_297
-
-
-
-
-
- -

-RRC_3_300

-
-public static final ResponseReasonCode RRC_3_300
-
-
-
-
-
- -

-RRC_3_301

-
-public static final ResponseReasonCode RRC_3_301
-
-
-
-
-
- -

-RRC_3_302

-
-public static final ResponseReasonCode RRC_3_302
-
-
-
-
-
- -

-RRC_3_303

-
-public static final ResponseReasonCode RRC_3_303
-
-
-
-
-
- -

-RRC_3_304

-
-public static final ResponseReasonCode RRC_3_304
-
-
-
-
-
- -

-RRC_3_305

-
-public static final ResponseReasonCode RRC_3_305
-
-
-
-
-
- -

-RRC_3_306

-
-public static final ResponseReasonCode RRC_3_306
-
-
-
-
-
- -

-RRC_1_307

-
-public static final ResponseReasonCode RRC_1_307
-
-
-
-
-
- -

-RRC_1_308

-
-public static final ResponseReasonCode RRC_1_308
-
-
-
-
-
- -

-RRC_3_309

-
-public static final ResponseReasonCode RRC_3_309
-
-
-
-
-
- -

-RRC_1_310

-
-public static final ResponseReasonCode RRC_1_310
-
-
-
-
-
- -

-RRC_1_311

-
-public static final ResponseReasonCode RRC_1_311
-
-
-
-
-
- -

-RRC_2_315

-
-public static final ResponseReasonCode RRC_2_315
-
-
-
-
-
- -

-RRC_2_316

-
-public static final ResponseReasonCode RRC_2_316
-
-
-
-
-
- -

-RRC_2_317

-
-public static final ResponseReasonCode RRC_2_317
-
-
-
-
-
- -

-RRC_2_318

-
-public static final ResponseReasonCode RRC_2_318
-
-
-
-
-
- -

-RRC_2_319

-
-public static final ResponseReasonCode RRC_2_319
-
-
-
-
-
- -

-RRC_3_320

-
-public static final ResponseReasonCode RRC_3_320
-
-
-
-
-
- -

-RRC_0_0

-
-public static final ResponseReasonCode RRC_0_0
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static ResponseReasonCode[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (ResponseReasonCode c : ResponseReasonCode.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static ResponseReasonCode valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByReasonCode

-
-public static ResponseReasonCode findByReasonCode(int reasonCode)
-
-
Lookup a response reason code by the reason response code itself. -

-

-
Parameters:
reasonCode - -
Returns:
Returns a ResponseReasonCode if a reasonCode match is found.
-
-
-
- -

-findByReasonCode

-
-public static ResponseReasonCode findByReasonCode(java.lang.String reasonCode)
-
-
Lookup a response reason code by the reason response code itself. -

-

-
Parameters:
reasonCode - -
Returns:
Returns a ResponseReasonCode if a reasonCode match is found.
-
-
-
- -

-getResponseCode

-
-public ResponseCode getResponseCode()
-
-
- -
Returns:
the responseCode
-
-
-
- -

-getResponseReasonCode

-
-public int getResponseReasonCode()
-
-
- -
Returns:
the responseReasonCode
-
-
-
- -

-getReasonText

-
-public java.lang.String getReasonText()
-
-
- -
Returns:
the reasonText
-
-
-
- -

-setReasonText

-
-public void setReasonText(java.lang.String reasonText)
-
-
Set the reasonText. -

-

-
Parameters:
reasonText -
-
-
-
- -

-getNotes

-
-public java.lang.String getNotes()
-
-
- -
Returns:
the notes
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/Result.html b/docs/javadocs/net/authorize/Result.html deleted file mode 100644 index c3b646b..0000000 --- a/docs/javadocs/net/authorize/Result.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
Direct Known Subclasses:
Result, Result
-
-
-
-
public abstract class Result
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-protected  ITransactionrequestTransaction - -
-           
-  - - - - - - - - - - -
-Constructor Summary
Result() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- ITransactiongetRequestTransaction() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-requestTransaction

-
-protected ITransaction requestTransaction
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Result

-
-public Result()
-
-
- - - - - - - - -
-Method Detail
- -

-getRequestTransaction

-
-public ITransaction getRequestTransaction()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/TransactionType.html b/docs/javadocs/net/authorize/TransactionType.html deleted file mode 100644 index 7e22767..0000000 --- a/docs/javadocs/net/authorize/TransactionType.html +++ /dev/null @@ -1,497 +0,0 @@ - - - - - - -TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize -
-Enum TransactionType

-
-java.lang.Object
-  extended by java.lang.Enum<TransactionType>
-      extended by net.authorize.TransactionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransactionType>
-
-
-
-
public enum TransactionType
extends java.lang.Enum<TransactionType>
- - -

-The credit card transaction types supported by the payment gateway. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
AUTH_CAPTURE - -
-           
AUTH_ONLY - -
-           
CAPTURE_ONLY - -
-           
CREDIT - -
-           
PRIOR_AUTH_CAPTURE - -
-           
UNLINKED_CREDIT - -
-           
VOID - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetCIMValue() - -
-          Return the value needed for CIM integrations.
- java.lang.StringgetNVPValue() - -
-          Return the value needed for SIM/DPM integrations.
- java.lang.StringgetValue() - -
-          Deprecated. As of release 2.0.0, replaced by getNVPValue()
- java.lang.StringgetXmlValue() - -
-          Return the value needed for AIM (XML-based) integrations.
-static TransactionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-AUTH_CAPTURE

-
-public static final TransactionType AUTH_CAPTURE
-
-
-
-
-
- -

-AUTH_ONLY

-
-public static final TransactionType AUTH_ONLY
-
-
-
-
-
- -

-PRIOR_AUTH_CAPTURE

-
-public static final TransactionType PRIOR_AUTH_CAPTURE
-
-
-
-
-
- -

-CAPTURE_ONLY

-
-public static final TransactionType CAPTURE_ONLY
-
-
-
-
-
- -

-CREDIT

-
-public static final TransactionType CREDIT
-
-
-
-
-
- -

-UNLINKED_CREDIT

-
-public static final TransactionType UNLINKED_CREDIT
-
-
-
-
-
- -

-VOID

-
-public static final TransactionType VOID
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static TransactionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (TransactionType c : TransactionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static TransactionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-@Deprecated
-public java.lang.String getValue()
-
-
Deprecated. As of release 2.0.0, replaced by getNVPValue() -

-

Return the value needed for SIM/DPM integrations. -

-

- -
Returns:
the value
-
-
-
- -

-getNVPValue

-
-public java.lang.String getNVPValue()
-
-
Return the value needed for SIM/DPM integrations. -

-

- -
Returns:
the value
-
-
-
- -

-getCIMValue

-
-public java.lang.String getCIMValue()
-
-
Return the value needed for CIM integrations. -

-

- -
Returns:
cim transaction type value.
-
-
-
- -

-getXmlValue

-
-public java.lang.String getXmlValue()
-
-
Return the value needed for AIM (XML-based) integrations. -

-

- -
Returns:
the xmlValue
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/Result.html b/docs/javadocs/net/authorize/aim/Result.html deleted file mode 100644 index ef681c9..0000000 --- a/docs/javadocs/net/authorize/aim/Result.html +++ /dev/null @@ -1,1282 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.aim -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-      extended by net.authorize.xml.Result
-          extended by net.authorize.aim.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Result
extends Result
implements java.io.Serializable
- - -

-Extends the core net.authorize.xml.Result for specific AIM result data. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-protected  java.util.Hashtable<java.lang.String,java.lang.String>merchantDefinedMap - -
-           
- - - - - - - -
Fields inherited from class net.authorize.xml.Result
ERROR, messages, OK, refId, requestTransactionType, responseCode, resultCode, sessionToken, xmlResponse, xmlResponseDoc
- - - - - - - -
Fields inherited from class net.authorize.Result
requestTransaction
-  - - - - - - - - - - - - - - - -
-Constructor Summary
-protected Result() - -
-           
-protected Result(ITransaction requestTransaction, - java.lang.String response) - -
-          Result constructor.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ResultcreateResult(ITransaction requestTransaction, - java.lang.String response) - -
-          Create a Result from the request and response data.
- java.lang.StringgetAccountNumber() - -
-          Return the account number.
- CardTypegetAccountType() - -
-          Return the account card type.
- java.lang.StringgetAuthCode() - -
-          Return the authorization code.
- AVSCodegetAvsResultCode() - -
-          Return the AVS result code.
- CardCodeResponseTypegetCardCodeResponse() - -
-          Return the card code response.
- CAVVResponseTypegetCavvResultCode() - -
-          Return the CAVV result code.
- java.util.Map<java.lang.String,java.lang.String>getMerchantDefinedMap() - -
-          Return the merchant defined fields map.
- PrepaidCardgetPrepaidCard() - -
-          Return the prepaid card information.
- java.lang.StringgetRefTransId() - -
-          Return the payment gateway assigned transaction ID of an original - transaction
- ResponseCodegetResponseCode() - -
-          Return the ResponseCode
- java.lang.StringgetResponseText() - -
-          Return the response text.
- java.lang.StringgetSplitTenderId() - -
-          Return the split tender transaction id.
- java.util.ArrayList<SplitTenderPayment>getSplitTenderPayments() - -
-          Return a list of split tender payment information.
- java.util.ArrayList<ResponseReasonCode>getTransactionResponseErrors() - -
-          Returns a list of transaction response errors.
- java.util.ArrayList<ResponseReasonCode>getTransactionResponseMessages() - -
-          Return the transaction response messages.
- java.lang.StringgetTransHash() - -
-          Return the payment gateway generated MD5 hash value that can be used to - authenticate the transaction response.
- java.lang.StringgetTransId() - -
-          Return the transaction id.
- booleanisAuthorizeNet() - -
-          Verify that the relay response post is actually coming from AuthorizeNet.
- booleanisTestRequest() - -
-          Return true if the request was a test request.
- voidsetAccountNumber(java.lang.String accountNumber) - -
-          Set the account number.
- voidsetAccountType(CardType accountType) - -
-          Set the account card type.
- voidsetAuthCode(java.lang.String authCode) - -
-          Set the authorization code.
- voidsetAvsResultCode(AVSCode avsResultCode) - -
-          Set the AVS result code.
- voidsetCardCodeResponse(CardCodeResponseType cardCodeResponse) - -
-          Set the card code response.
- voidsetCavvResultCode(CAVVResponseType cavvResultCode) - -
-          Set the CAVV result code.
- voidsetMerchantDefinedMap(java.util.Hashtable<java.lang.String,java.lang.String> merchantDefinedMap) - -
-          Sets the merchant defined fields map.
- voidsetPrepaidCard(PrepaidCard prepaidCard) - -
-          Set the prepaid card information.
- voidsetRefTransId(java.lang.String refTransId) - -
-          Set the payment gateway assigned transaction ID of an original - transaction
- voidsetResponseCode(ResponseCode responseCode) - -
-          Set the response code.
- voidsetResponseText(java.lang.String responseText) - -
-          Set the response text.
- voidsetSplitTenderId(java.lang.String splitTenderId) - -
-          Set the split tender transaction id.
- voidsetSplitTenderPayments(java.util.ArrayList<SplitTenderPayment> splitTenderPayments) - -
-          Set the split tender payment information.
- voidsetTestRequest(boolean testRequest) - -
-          Set the testRequest value.
- voidsetTransactionResponseErrors(java.util.ArrayList<ResponseReasonCode> errors) - -
-          Sets the transaction response errors.
- voidsetTransactionResponseMessages(java.util.ArrayList<ResponseReasonCode> transactionResponseMessages) - -
-          Set the transaction response messages.
- voidsetTransHash(java.lang.String transHash) - -
-          Set the payment gateway generated MD5 hash value that can be used to - authenticate the transaction response.
- voidsetTransId(java.lang.String transId) - -
-          Set the transaction id.
- - - - - - - -
Methods inherited from class net.authorize.xml.Result
clearRequest, clearXmlResponse, getElementText, getElementText, getMessages, getRefId, getRequestTransactionType, getResultCode, getSessionToken, getXmlResponse, getXmlResponseDoc, importRefId, importResponseMessages, importSessionToken, isApproved, isDeclined, isError, isOk, isResponseAuthenticationError, isResponseError, isResponseErrorRetryable, isResponseOk, isReview, printMessages
- - - - - - - -
Methods inherited from class net.authorize.Result
getRequestTransaction
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-merchantDefinedMap

-
-protected java.util.Hashtable<java.lang.String,java.lang.String> merchantDefinedMap
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Result

-
-protected Result()
-
-
-
- -

-Result

-
-protected Result(ITransaction requestTransaction,
-                 java.lang.String response)
-
-
Result constructor. -

-

-
Parameters:
requestTransaction -
response -
-
- - - - - - - - -
-Method Detail
- -

-createResult

-
-public static Result createResult(ITransaction requestTransaction,
-                                  java.lang.String response)
-
-
Create a Result from the request and response data. -

-

-
-
-
-
Parameters:
requestTransaction -
response - -
Returns:
Result
-
-
-
- -

-getResponseCode

-
-public ResponseCode getResponseCode()
-
-
Return the ResponseCode -

-

-
-
-
- -
Returns:
ResponseCode
-
-
-
- -

-getResponseText

-
-public java.lang.String getResponseText()
-
-
Return the response text. -

-

-
-
-
- -
Returns:
the reponseText
-
-
-
- -

-getAuthCode

-
-public java.lang.String getAuthCode()
-
-
Return the authorization code. -

-

-
-
-
- -
Returns:
the authCode
-
-
-
- -

-setAuthCode

-
-public void setAuthCode(java.lang.String authCode)
-
-
Set the authorization code. -

-

-
-
-
-
Parameters:
authCode - the authCode to set
-
-
-
- -

-getAvsResultCode

-
-public AVSCode getAvsResultCode()
-
-
Return the AVS result code. -

-

-
-
-
- -
Returns:
the avsResultCode
-
-
-
- -

-setAvsResultCode

-
-public void setAvsResultCode(AVSCode avsResultCode)
-
-
Set the AVS result code. -

-

-
-
-
-
Parameters:
avsResultCode - the avsResultCode to set
-
-
-
- -

-getCavvResultCode

-
-public CAVVResponseType getCavvResultCode()
-
-
Return the CAVV result code. -

-

-
-
-
- -
Returns:
the cavvResultCode
-
-
-
- -

-setCavvResultCode

-
-public void setCavvResultCode(CAVVResponseType cavvResultCode)
-
-
Set the CAVV result code. -

-

-
-
-
-
Parameters:
cavvResultCode - the cavvResultCode to set
-
-
-
- -

-getTransId

-
-public java.lang.String getTransId()
-
-
Return the transaction id. -

-

-
-
-
- -
Returns:
the transId
-
-
-
- -

-setTransId

-
-public void setTransId(java.lang.String transId)
-
-
Set the transaction id. -

-

-
-
-
-
Parameters:
transId - the transId to set
-
-
-
- -

-getRefTransId

-
-public java.lang.String getRefTransId()
-
-
Return the payment gateway assigned transaction ID of an original - transaction -

-

-
-
-
- -
Returns:
the refTransId
-
-
-
- -

-setRefTransId

-
-public void setRefTransId(java.lang.String refTransId)
-
-
Set the payment gateway assigned transaction ID of an original - transaction -

-

-
-
-
-
Parameters:
refTransId - the refTransId to set
-
-
-
- -

-getTransHash

-
-public java.lang.String getTransHash()
-
-
Return the payment gateway generated MD5 hash value that can be used to - authenticate the transaction response. -

-

-
-
-
- -
Returns:
the transHash
-
-
-
- -

-setTransHash

-
-public void setTransHash(java.lang.String transHash)
-
-
Set the payment gateway generated MD5 hash value that can be used to - authenticate the transaction response. -

-

-
-
-
-
Parameters:
transHash - the transHash to set
-
-
-
- -

-isTestRequest

-
-public boolean isTestRequest()
-
-
Return true if the request was a test request. -

-

-
-
-
- -
Returns:
the testRequest
-
-
-
- -

-setTestRequest

-
-public void setTestRequest(boolean testRequest)
-
-
Set the testRequest value. -

-

-
-
-
-
Parameters:
testRequest - the testRequest to set
-
-
-
- -

-getAccountNumber

-
-public java.lang.String getAccountNumber()
-
-
Return the account number. -

-

-
-
-
- -
Returns:
the accountNumber
-
-
-
- -

-setAccountNumber

-
-public void setAccountNumber(java.lang.String accountNumber)
-
-
Set the account number. -

-

-
-
-
-
Parameters:
accountNumber - the accountNumber to set
-
-
-
- -

-getAccountType

-
-public CardType getAccountType()
-
-
Return the account card type. -

-

-
-
-
- -
Returns:
the accountType
-
-
-
- -

-setAccountType

-
-public void setAccountType(CardType accountType)
-
-
Set the account card type. -

-

-
-
-
-
Parameters:
accountType - the accountType to set
-
-
-
- -

-getTransactionResponseErrors

-
-public java.util.ArrayList<ResponseReasonCode> getTransactionResponseErrors()
-
-
Returns a list of transaction response errors. -

-

-
-
-
- -
Returns:
the errors
-
-
-
- -

-setTransactionResponseErrors

-
-public void setTransactionResponseErrors(java.util.ArrayList<ResponseReasonCode> errors)
-
-
Sets the transaction response errors. -

-

-
-
-
-
Parameters:
errors - the errors to set
-
-
-
- -

-getSplitTenderPayments

-
-public java.util.ArrayList<SplitTenderPayment> getSplitTenderPayments()
-
-
Return a list of split tender payment information. -

-

-
-
-
- -
Returns:
the splitTenderPayments
-
-
-
- -

-setSplitTenderPayments

-
-public void setSplitTenderPayments(java.util.ArrayList<SplitTenderPayment> splitTenderPayments)
-
-
Set the split tender payment information. -

-

-
-
-
-
Parameters:
splitTenderPayments - the splitTenderPayments to set
-
-
-
- -

-getMerchantDefinedMap

-
-public java.util.Map<java.lang.String,java.lang.String> getMerchantDefinedMap()
-
-
Return the merchant defined fields map. -

-

-
-
-
- -
Returns:
the merchantDefinedMap
-
-
-
- -

-setMerchantDefinedMap

-
-public void setMerchantDefinedMap(java.util.Hashtable<java.lang.String,java.lang.String> merchantDefinedMap)
-
-
Sets the merchant defined fields map. -

-

-
-
-
-
Parameters:
merchantDefinedMap - the merchantDefinedMap to set
-
-
-
- -

-setResponseCode

-
-public void setResponseCode(ResponseCode responseCode)
-
-
Set the response code. -

-

-
-
-
-
Parameters:
responseCode - the responseCode to set
-
-
-
- -

-setResponseText

-
-public void setResponseText(java.lang.String responseText)
-
-
Set the response text. -

-

-
-
-
-
Parameters:
responseText - the responseText to set
-
-
-
- -

-getCardCodeResponse

-
-public CardCodeResponseType getCardCodeResponse()
-
-
Return the card code response. -

-

-
-
-
- -
Returns:
the cardCodeResponse
-
-
-
- -

-setCardCodeResponse

-
-public void setCardCodeResponse(CardCodeResponseType cardCodeResponse)
-
-
Set the card code response. -

-

-
-
-
-
Parameters:
cardCodeResponse - the cardCodeResponse to set
-
-
-
- -

-getTransactionResponseMessages

-
-public java.util.ArrayList<ResponseReasonCode> getTransactionResponseMessages()
-
-
Return the transaction response messages. -

-

-
-
-
- -
Returns:
the transactionResponseMessages
-
-
-
- -

-setTransactionResponseMessages

-
-public void setTransactionResponseMessages(java.util.ArrayList<ResponseReasonCode> transactionResponseMessages)
-
-
Set the transaction response messages. -

-

-
-
-
-
Parameters:
transactionResponseMessages - the transactionResponseMessages to set
-
-
-
- -

-getSplitTenderId

-
-public java.lang.String getSplitTenderId()
-
-
Return the split tender transaction id. -

-

-
-
-
- -
Returns:
the splitTenderId
-
-
-
- -

-setSplitTenderId

-
-public void setSplitTenderId(java.lang.String splitTenderId)
-
-
Set the split tender transaction id. -

-

-
-
-
-
Parameters:
splitTenderId -
-
-
-
- -

-getPrepaidCard

-
-public PrepaidCard getPrepaidCard()
-
-
Return the prepaid card information. -

-

-
-
-
- -
Returns:
the prepaidCard
-
-
-
- -

-setPrepaidCard

-
-public void setPrepaidCard(PrepaidCard prepaidCard)
-
-
Set the prepaid card information. -

-

-
-
-
-
Parameters:
prepaidCard - the prepaidCard to set
-
-
-
- -

-isAuthorizeNet

-
-public boolean isAuthorizeNet()
-
-
Verify that the relay response post is actually coming from AuthorizeNet. -

-

-
-
-
- -
Returns:
boolean true if the txn came from Authorize.Net
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/Transaction.html b/docs/javadocs/net/authorize/aim/Transaction.html deleted file mode 100644 index e1ea5e4..0000000 --- a/docs/javadocs/net/authorize/aim/Transaction.html +++ /dev/null @@ -1,706 +0,0 @@ - - - - - - -Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.aim -
-Class Transaction

-
-java.lang.Object
-  extended by net.authorize.xml.XMLTransaction
-      extended by net.authorize.aim.Transaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
-
public class Transaction
extends XMLTransaction
implements java.io.Serializable, ITransaction
- - -

-Container to hold all payment related information that gets passed back and - forth to the payment gateway. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - -
-Field Summary
-protected  java.util.Hashtable<java.lang.String,java.lang.String>merchantDefinedMap - -
-           
-protected  TransactionTypetransactionType - -
-           
- - - - - - - -
Fields inherited from class net.authorize.xml.XMLTransaction
bankAccount, billToAddress, creditCard, currentRequest, customer, emailReceipt, md5Value, merchant, order, refId, shippingAddress, shippingCharges, XML_NAMESPACE, XML_XSD, XML_XSI
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - - - - - - -
-Constructor Summary
-protected Transaction() - -
-           
-protected Transaction(Merchant merchant, - TransactionType transactionType) - -
-          Constructor for creation a transaction with typed objects.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-           
- java.lang.StringgetAuthCode() - -
-           
- java.util.Hashtable<java.lang.String,java.lang.String>getMerchantDefinedMap() - -
-           
- java.lang.StringgetRefId() - -
-           
- java.lang.StringgetRefTransId() - -
-           
- java.lang.StringgetSplitTenderId() - -
-           
- java.math.BigDecimalgetTotalAmount() - -
-           
- java.lang.Enum<?>getTransactionType() - -
-           
- voidsetAuthCode(java.lang.String authCode) - -
-           
- voidsetMerchantDefinedField(java.lang.String key, - java.lang.String value) - -
-          Add merchant defined field to the merchant defined fields map.
- voidsetMerchantDefinedMap(java.util.Hashtable<java.lang.String,java.lang.String> merchantDefinedMap) - -
-           
- voidsetRefId(java.lang.String refId) - -
-           
- voidsetRefTransId(java.lang.String refTransId) - -
-           
- voidsetSplitTenderId(java.lang.String splitTenderId) - -
-           
- java.lang.StringtoAuthNetPOSTString() - -
-          Convert request to XML.
- - - - - - - -
Methods inherited from class net.authorize.xml.XMLTransaction
addAuthentication, addAuthentication, addRefId, getBankAccount, getCreditCard, getCurrentRequest, getCustomer, getEmailReceipt, getMD5Value, getMerchant, getOrder, getShippingAddress, getShippingCharges, setBankAccount, setCreditCard, setCustomer, setEmailReceipt, setOrder, setShippingAddress, setShippingCharges
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.ITransaction
getBankAccount, getCreditCard, getCustomer, getEmailReceipt, getMD5Value, getMerchant, getOrder, getShippingAddress, getShippingCharges, setBankAccount, setCreditCard, setCustomer, setEmailReceipt, setOrder, setShippingAddress, setShippingCharges
-  -

- - - - - - - - -
-Field Detail
- -

-transactionType

-
-protected TransactionType transactionType
-
-
-
-
-
- -

-merchantDefinedMap

-
-protected java.util.Hashtable<java.lang.String,java.lang.String> merchantDefinedMap
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Transaction

-
-protected Transaction()
-
-
-
- -

-Transaction

-
-protected Transaction(Merchant merchant,
-                      TransactionType transactionType)
-
-
Constructor for creation a transaction with typed objects. -

-

-
Parameters:
merchant - - Merchant container
transactionType - - Transaction type
-
- - - - - - - - -
-Method Detail
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType,
-                                            java.math.BigDecimal amount)
-
-
-
-
-
-
-
-
-
- -

-getRefId

-
-public java.lang.String getRefId()
-
-
-
Overrides:
getRefId in class XMLTransaction
-
-
- -
Returns:
the refId
-
-
-
- -

-setRefId

-
-public void setRefId(java.lang.String refId)
-
-
-
Overrides:
setRefId in class XMLTransaction
-
-
-
Parameters:
refId - the refId to set
-
-
-
- -

-toAuthNetPOSTString

-
-public java.lang.String toAuthNetPOSTString()
-
-
Convert request to XML. -

-

-
Specified by:
toAuthNetPOSTString in interface ITransaction
-
-
- -
Returns:
String to be POSTed to the AuthNet gateway.
-
-
-
- -

-getTransactionType

-
-public java.lang.Enum<?> getTransactionType()
-
-
-
Specified by:
getTransactionType in interface ITransaction
-
-
- -
Returns:
the transactionType
-
-
-
- -

-setMerchantDefinedMap

-
-public void setMerchantDefinedMap(java.util.Hashtable<java.lang.String,java.lang.String> merchantDefinedMap)
-
-
-
-
-
-
Parameters:
merchantDefinedMap - the merchantDefinedMap to set
-
-
-
- -

-setMerchantDefinedField

-
-public void setMerchantDefinedField(java.lang.String key,
-                                    java.lang.String value)
-
-
Add merchant defined field to the merchant defined fields map. -

-

-
-
-
-
Parameters:
key -
value -
-
-
-
- -

-setRefTransId

-
-public void setRefTransId(java.lang.String refTransId)
-
-
-
-
-
-
Parameters:
refTransId - the refTransId to set
-
-
-
- -

-setSplitTenderId

-
-public void setSplitTenderId(java.lang.String splitTenderId)
-
-
-
-
-
-
Parameters:
splitTenderId - the splitTenderId to set
-
-
-
- -

-setAuthCode

-
-public void setAuthCode(java.lang.String authCode)
-
-
-
-
-
-
Parameters:
authCode - the authCode to set
-
-
-
- -

-getMerchantDefinedMap

-
-public java.util.Hashtable<java.lang.String,java.lang.String> getMerchantDefinedMap()
-
-
-
-
-
- -
Returns:
the merchantDefinedMap
-
-
-
- -

-getRefTransId

-
-public java.lang.String getRefTransId()
-
-
-
-
-
- -
Returns:
the refTransId
-
-
-
- -

-getSplitTenderId

-
-public java.lang.String getSplitTenderId()
-
-
-
-
-
- -
Returns:
the splitTenderId
-
-
-
- -

-getAuthCode

-
-public java.lang.String getAuthCode()
-
-
-
-
-
- -
Returns:
the authCode
-
-
-
- -

-getTotalAmount

-
-public java.math.BigDecimal getTotalAmount()
-
-
-
-
-
- -
Returns:
the totalAmount
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/cardpresent/DeviceType.html b/docs/javadocs/net/authorize/aim/cardpresent/DeviceType.html deleted file mode 100644 index cb9f62f..0000000 --- a/docs/javadocs/net/authorize/aim/cardpresent/DeviceType.html +++ /dev/null @@ -1,498 +0,0 @@ - - - - - - -DeviceType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.aim.cardpresent -
-Enum DeviceType

-
-java.lang.Object
-  extended by java.lang.Enum<DeviceType>
-      extended by net.authorize.aim.cardpresent.DeviceType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DeviceType>
-
-
-
-
public enum DeviceType
extends java.lang.Enum<DeviceType>
- - -

-DeviceType is used for Card Present transactions. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
AIRPAY - -
-           
DIAL_TERMINAL - -
-           
ELECTRONIC_CASH_REGISTER - -
-           
PERSONAL_COMPUTER_BASED_TERMINAL - -
-           
SELF_SERVICE_TERMINAL - -
-           
UNATTENDED - -
-           
UNKNOWN - -
-           
VIRTUAL_TERMINAL - -
-           
WEBSITE - -
-           
WIRELESS_POS - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static DeviceTypefindByValue(java.lang.String value) - -
-          Lookup a DeviceType by it's value.
- java.lang.StringgetValue() - -
-          Return the DeviceType value.
-static DeviceTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static DeviceType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-UNKNOWN

-
-public static final DeviceType UNKNOWN
-
-
-
-
-
- -

-UNATTENDED

-
-public static final DeviceType UNATTENDED
-
-
-
-
-
- -

-SELF_SERVICE_TERMINAL

-
-public static final DeviceType SELF_SERVICE_TERMINAL
-
-
-
-
-
- -

-ELECTRONIC_CASH_REGISTER

-
-public static final DeviceType ELECTRONIC_CASH_REGISTER
-
-
-
-
-
- -

-PERSONAL_COMPUTER_BASED_TERMINAL

-
-public static final DeviceType PERSONAL_COMPUTER_BASED_TERMINAL
-
-
-
-
-
- -

-AIRPAY

-
-public static final DeviceType AIRPAY
-
-
-
-
-
- -

-WIRELESS_POS

-
-public static final DeviceType WIRELESS_POS
-
-
-
-
-
- -

-WEBSITE

-
-public static final DeviceType WEBSITE
-
-
-
-
-
- -

-DIAL_TERMINAL

-
-public static final DeviceType DIAL_TERMINAL
-
-
-
-
-
- -

-VIRTUAL_TERMINAL

-
-public static final DeviceType VIRTUAL_TERMINAL
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static DeviceType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (DeviceType c : DeviceType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static DeviceType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
Return the DeviceType value. -

-

- -
Returns:
the value
-
-
-
- -

-findByValue

-
-public static DeviceType findByValue(java.lang.String value)
-
-
Lookup a DeviceType by it's value. -

-

-
Parameters:
value - -
Returns:
Returns a DeviceType if a value match is found.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/cardpresent/MarketType.html b/docs/javadocs/net/authorize/aim/cardpresent/MarketType.html deleted file mode 100644 index ef00fa9..0000000 --- a/docs/javadocs/net/authorize/aim/cardpresent/MarketType.html +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - -MarketType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.aim.cardpresent -
-Enum MarketType

-
-java.lang.Object
-  extended by java.lang.Enum<MarketType>
-      extended by net.authorize.aim.cardpresent.MarketType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MarketType>
-
-
-
-
public enum MarketType
extends java.lang.Enum<MarketType>
- - -

-MarketType is used for Card Present transactions. -

- -

-


- -

- - - - - - - - - - -
-Enum Constant Summary
RETAIL - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static MarketTypefindByValue(java.lang.String value) - -
-          Lookup a MarketType by it's value.
- java.lang.StringgetValue() - -
-          Return the MarketType value.
-static MarketTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static MarketType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-RETAIL

-
-public static final MarketType RETAIL
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static MarketType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (MarketType c : MarketType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static MarketType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
Return the MarketType value. -

-

- -
Returns:
the value
-
-
-
- -

-findByValue

-
-public static MarketType findByValue(java.lang.String value)
-
-
Lookup a MarketType by it's value. -

-

-
Parameters:
value - -
Returns:
Returns a MarketType if a value match is found.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/cardpresent/class-use/DeviceType.html b/docs/javadocs/net/authorize/aim/cardpresent/class-use/DeviceType.html deleted file mode 100644 index 1a350ef..0000000 --- a/docs/javadocs/net/authorize/aim/cardpresent/class-use/DeviceType.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - -Uses of Class net.authorize.aim.cardpresent.DeviceType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.aim.cardpresent.DeviceType

-
- - - - - - - - - - - - - -
-Packages that use DeviceType
net.authorize  
net.authorize.aim.cardpresent  
-  -

- - - - - -
-Uses of DeviceType in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return DeviceType
- DeviceTypeMerchant.getDeviceType() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type DeviceType
- voidMerchant.setDeviceType(DeviceType deviceType) - -
-           
-  -

- - - - - -
-Uses of DeviceType in net.authorize.aim.cardpresent
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.aim.cardpresent that return DeviceType
-static DeviceTypeDeviceType.findByValue(java.lang.String value) - -
-          Lookup a DeviceType by it's value.
-static DeviceTypeDeviceType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static DeviceType[]DeviceType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/cardpresent/class-use/MarketType.html b/docs/javadocs/net/authorize/aim/cardpresent/class-use/MarketType.html deleted file mode 100644 index aef7e6f..0000000 --- a/docs/javadocs/net/authorize/aim/cardpresent/class-use/MarketType.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - -Uses of Class net.authorize.aim.cardpresent.MarketType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.aim.cardpresent.MarketType

-
- - - - - - - - - - - - - -
-Packages that use MarketType
net.authorize  
net.authorize.aim.cardpresent  
-  -

- - - - - -
-Uses of MarketType in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return MarketType
- MarketTypeMerchant.getMarketType() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type MarketType
- voidMerchant.setMarketType(MarketType marketType) - -
-           
-  -

- - - - - -
-Uses of MarketType in net.authorize.aim.cardpresent
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.aim.cardpresent that return MarketType
-static MarketTypeMarketType.findByValue(java.lang.String value) - -
-          Lookup a MarketType by it's value.
-static MarketTypeMarketType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static MarketType[]MarketType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/cardpresent/package-frame.html b/docs/javadocs/net/authorize/aim/cardpresent/package-frame.html deleted file mode 100644 index 6ddaa03..0000000 --- a/docs/javadocs/net/authorize/aim/cardpresent/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -net.authorize.aim.cardpresent (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.aim.cardpresent - - - - -
-Enums  - -
-DeviceType -
-MarketType
- - - - diff --git a/docs/javadocs/net/authorize/aim/cardpresent/package-summary.html b/docs/javadocs/net/authorize/aim/cardpresent/package-summary.html deleted file mode 100644 index f1951a3..0000000 --- a/docs/javadocs/net/authorize/aim/cardpresent/package-summary.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -net.authorize.aim.cardpresent (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.aim.cardpresent -

- - - - - - - - - - - - - -
-Enum Summary
DeviceTypeDeviceType is used for Card Present transactions.
MarketTypeMarketType is used for Card Present transactions.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/cardpresent/package-tree.html b/docs/javadocs/net/authorize/aim/cardpresent/package-tree.html deleted file mode 100644 index 10c8646..0000000 --- a/docs/javadocs/net/authorize/aim/cardpresent/package-tree.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - -net.authorize.aim.cardpresent Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.aim.cardpresent -

-
-
-
Package Hierarchies:
All Packages
-
-

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/cardpresent/package-use.html b/docs/javadocs/net/authorize/aim/cardpresent/package-use.html deleted file mode 100644 index 00b3a17..0000000 --- a/docs/javadocs/net/authorize/aim/cardpresent/package-use.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - -Uses of Package net.authorize.aim.cardpresent (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.aim.cardpresent

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.aim.cardpresent
net.authorize  
net.authorize.aim.cardpresent  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.aim.cardpresent used by net.authorize
DeviceType - -
-          DeviceType is used for Card Present transactions.
MarketType - -
-          MarketType is used for Card Present transactions.
-  -

- - - - - - - - - - - -
-Classes in net.authorize.aim.cardpresent used by net.authorize.aim.cardpresent
DeviceType - -
-          DeviceType is used for Card Present transactions.
MarketType - -
-          MarketType is used for Card Present transactions.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/class-use/Result.html b/docs/javadocs/net/authorize/aim/class-use/Result.html deleted file mode 100644 index 177efa6..0000000 --- a/docs/javadocs/net/authorize/aim/class-use/Result.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.aim.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.aim.Result

-
- - - - - - - - - -
-Packages that use Result
net.authorize.aim  
-  -

- - - - - -
-Uses of Result in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return Result
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-          Create a Result from the request and response data.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/class-use/Transaction.html b/docs/javadocs/net/authorize/aim/class-use/Transaction.html deleted file mode 100644 index fb224c3..0000000 --- a/docs/javadocs/net/authorize/aim/class-use/Transaction.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - -Uses of Class net.authorize.aim.Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.aim.Transaction

-
- - - - - - - - - - - - - -
-Packages that use Transaction
net.authorize  
net.authorize.aim  
-  -

- - - - - -
-Uses of Transaction in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return Transaction
- TransactionMerchant.createAIMTransaction(TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Creates a new AIM Transaction (includes Card Present)
-  -

- - - - - -
-Uses of Transaction in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return Transaction
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/package-frame.html b/docs/javadocs/net/authorize/aim/package-frame.html deleted file mode 100644 index 5018d83..0000000 --- a/docs/javadocs/net/authorize/aim/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -net.authorize.aim (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.aim - - - - -
-Classes  - -
-Result -
-Transaction
- - - - diff --git a/docs/javadocs/net/authorize/aim/package-summary.html b/docs/javadocs/net/authorize/aim/package-summary.html deleted file mode 100644 index 13709d6..0000000 --- a/docs/javadocs/net/authorize/aim/package-summary.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - -net.authorize.aim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.aim -

- - - - - - - - - - - - - -
-Class Summary
ResultExtends the core net.authorize.xml.Result for specific AIM result data.
TransactionContainer to hold all payment related information that gets passed back and - forth to the payment gateway.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/package-tree.html b/docs/javadocs/net/authorize/aim/package-tree.html deleted file mode 100644 index f7d7429..0000000 --- a/docs/javadocs/net/authorize/aim/package-tree.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - -net.authorize.aim Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.aim -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.Result (implements java.io.Serializable) -
        -
      • net.authorize.xml.Result (implements java.io.Serializable) -
          -
        • net.authorize.aim.Result (implements java.io.Serializable) -
        -
      -
    • net.authorize.xml.XMLTransaction (implements net.authorize.ITransaction, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/aim/package-use.html b/docs/javadocs/net/authorize/aim/package-use.html deleted file mode 100644 index 0c70abb..0000000 --- a/docs/javadocs/net/authorize/aim/package-use.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - -Uses of Package net.authorize.aim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.aim

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.aim
net.authorize  
net.authorize.aim  
-  -

- - - - - - - - -
-Classes in net.authorize.aim used by net.authorize
Transaction - -
-          Container to hold all payment related information that gets passed back and - forth to the payment gateway.
-  -

- - - - - - - - - - - -
-Classes in net.authorize.aim used by net.authorize.aim
Result - -
-          Extends the core net.authorize.xml.Result for specific AIM result data.
Transaction - -
-          Container to hold all payment related information that gets passed back and - forth to the payment gateway.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/Result.html b/docs/javadocs/net/authorize/arb/Result.html deleted file mode 100644 index 77a9424..0000000 --- a/docs/javadocs/net/authorize/arb/Result.html +++ /dev/null @@ -1,475 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.arb -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-      extended by net.authorize.xml.Result
-          extended by net.authorize.arb.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Result
extends Result
implements java.io.Serializable
- - -

-Wrapper container for passing back the result from the request gateway. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - -
-Field Summary
-protected  java.lang.StringresultSubscriptionId - -
-           
-protected  SubscriptionStatusTypesubscriptionStatus - -
-           
- - - - - - - -
Fields inherited from class net.authorize.xml.Result
ERROR, messages, OK, refId, requestTransactionType, responseCode, resultCode, sessionToken, xmlResponse, xmlResponseDoc
- - - - - - - -
Fields inherited from class net.authorize.Result
requestTransaction
-  - - - - - - - - - - - - - - - -
-Constructor Summary
-protected Result() - -
-           
-protected Result(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ResultcreateResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
- java.lang.StringgetResultSubscriptionId() - -
-          Returns the result subscription id.
- SubscriptionStatusTypegetSubscriptionStatus() - -
-           
-protected  voidimportSubscriptionInfo() - -
-          Import the subscription information into the result.
- voidprintMessages() - -
-          Print messages to stdout for debugging.
- - - - - - - -
Methods inherited from class net.authorize.xml.Result
clearRequest, clearXmlResponse, getElementText, getElementText, getMessages, getRefId, getRequestTransactionType, getResultCode, getSessionToken, getXmlResponse, getXmlResponseDoc, importRefId, importResponseMessages, importSessionToken, isApproved, isDeclined, isError, isOk, isResponseAuthenticationError, isResponseError, isResponseErrorRetryable, isResponseOk, isReview
- - - - - - - -
Methods inherited from class net.authorize.Result
getRequestTransaction
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-subscriptionStatus

-
-protected SubscriptionStatusType subscriptionStatus
-
-
-
-
-
- -

-resultSubscriptionId

-
-protected java.lang.String resultSubscriptionId
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Result

-
-protected Result()
-
-
-
- -

-Result

-
-protected Result(ITransaction requestTransaction,
-                 java.lang.String response)
-
-
- - - - - - - - -
-Method Detail
- -

-createResult

-
-public static Result createResult(ITransaction requestTransaction,
-                                  java.lang.String response)
-
-
-
-
-
-
-
-
-
- -

-getResultSubscriptionId

-
-public java.lang.String getResultSubscriptionId()
-
-
Returns the result subscription id. -

-

-
-
-
- -
Returns:
String containing the subscription id.
-
-
-
- -

-getSubscriptionStatus

-
-public SubscriptionStatusType getSubscriptionStatus()
-
-
-
-
-
- -
Returns:
the status
-
-
-
- -

-importSubscriptionInfo

-
-protected void importSubscriptionInfo()
-
-
Import the subscription information into the result. -

-

-
-
-
-
-
-
-
- -

-printMessages

-
-public void printMessages()
-
-
Description copied from class: Result
-
Print messages to stdout for debugging. -

-

-
Overrides:
printMessages in class Result
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/Transaction.html b/docs/javadocs/net/authorize/arb/Transaction.html deleted file mode 100644 index 58369e5..0000000 --- a/docs/javadocs/net/authorize/arb/Transaction.html +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - -Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.arb -
-Class Transaction

-
-java.lang.Object
-  extended by net.authorize.xml.XMLTransaction
-      extended by net.authorize.arb.Transaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
-
public class Transaction
extends XMLTransaction
- - -

-Transaction object for ARB. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.xml.XMLTransaction
bankAccount, billToAddress, creditCard, currentRequest, customer, emailReceipt, md5Value, merchant, order, refId, shippingAddress, shippingCharges, XML_NAMESPACE, XML_XSD, XML_XSI
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType, - Subscription subscription) - -
-          Creates a transaction.
- java.lang.StringgetRefId() - -
-           
- TransactionTypegetTransactionType() - -
-           
- voidsetRefId(java.lang.String refId) - -
-           
- java.lang.StringtoAuthNetPOSTString() - -
-          Convert request to XML.
- - - - - - - -
Methods inherited from class net.authorize.xml.XMLTransaction
addAuthentication, addAuthentication, addRefId, getBankAccount, getCreditCard, getCurrentRequest, getCustomer, getEmailReceipt, getMD5Value, getMerchant, getOrder, getShippingAddress, getShippingCharges, setBankAccount, setCreditCard, setCustomer, setEmailReceipt, setOrder, setShippingAddress, setShippingCharges
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType,
-                                            Subscription subscription)
-
-
Creates a transaction. -

-

-
Parameters:
merchant -
transactionType -
subscription - -
Returns:
Transaction
-
-
-
- -

-getTransactionType

-
-public TransactionType getTransactionType()
-
-
- -
Returns:
the transactionType
-
-
-
- -

-getRefId

-
-public java.lang.String getRefId()
-
-
-
Overrides:
getRefId in class XMLTransaction
-
-
- -
Returns:
the refId
-
-
-
- -

-setRefId

-
-public void setRefId(java.lang.String refId)
-
-
-
Overrides:
setRefId in class XMLTransaction
-
-
-
Parameters:
refId - the refId to set
-
-
-
- -

-toAuthNetPOSTString

-
-public java.lang.String toAuthNetPOSTString()
-
-
Convert request to XML. -

-

- -
Returns:
String to be POSTed to the AuthNet gateway.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/TransactionType.html b/docs/javadocs/net/authorize/arb/TransactionType.html deleted file mode 100644 index b6b3d33..0000000 --- a/docs/javadocs/net/authorize/arb/TransactionType.html +++ /dev/null @@ -1,374 +0,0 @@ - - - - - - -TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.arb -
-Enum TransactionType

-
-java.lang.Object
-  extended by java.lang.Enum<TransactionType>
-      extended by net.authorize.arb.TransactionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransactionType>
-
-
-
-
public enum TransactionType
extends java.lang.Enum<TransactionType>
- - -

-


- -

- - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
CANCEL_SUBSCRIPTION - -
-           
CREATE_SUBSCRIPTION - -
-           
GET_SUBSCRIPTION_STATUS - -
-           
UPDATE_SUBSCRIPTION - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetValue() - -
-           
-static TransactionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-CREATE_SUBSCRIPTION

-
-public static final TransactionType CREATE_SUBSCRIPTION
-
-
-
-
-
- -

-UPDATE_SUBSCRIPTION

-
-public static final TransactionType UPDATE_SUBSCRIPTION
-
-
-
-
-
- -

-CANCEL_SUBSCRIPTION

-
-public static final TransactionType CANCEL_SUBSCRIPTION
-
-
-
-
-
- -

-GET_SUBSCRIPTION_STATUS

-
-public static final TransactionType GET_SUBSCRIPTION_STATUS
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static TransactionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (TransactionType c : TransactionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static TransactionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/class-use/Result.html b/docs/javadocs/net/authorize/arb/class-use/Result.html deleted file mode 100644 index 5dc2e4e..0000000 --- a/docs/javadocs/net/authorize/arb/class-use/Result.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.arb.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.arb.Result

-
- - - - - - - - - -
-Packages that use Result
net.authorize.arb  
-  -

- - - - - -
-Uses of Result in net.authorize.arb
-  -

- - - - - - - - - -
Methods in net.authorize.arb that return Result
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/class-use/Transaction.html b/docs/javadocs/net/authorize/arb/class-use/Transaction.html deleted file mode 100644 index 1543439..0000000 --- a/docs/javadocs/net/authorize/arb/class-use/Transaction.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - -Uses of Class net.authorize.arb.Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.arb.Transaction

-
- - - - - - - - - - - - - -
-Packages that use Transaction
net.authorize  
net.authorize.arb  
-  -

- - - - - -
-Uses of Transaction in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return Transaction
- TransactionMerchant.createARBTransaction(TransactionType transactionType, - Subscription subscription) - -
-          Creates a new ARB Transaction.
-  -

- - - - - -
-Uses of Transaction in net.authorize.arb
-  -

- - - - - - - - - -
Methods in net.authorize.arb that return Transaction
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - Subscription subscription) - -
-          Creates a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/class-use/TransactionType.html b/docs/javadocs/net/authorize/arb/class-use/TransactionType.html deleted file mode 100644 index 3c17100..0000000 --- a/docs/javadocs/net/authorize/arb/class-use/TransactionType.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - -Uses of Class net.authorize.arb.TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.arb.TransactionType

-
- - - - - - - - - - - - - -
-Packages that use TransactionType
net.authorize  
net.authorize.arb  
-  -

- - - - - -
-Uses of TransactionType in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type TransactionType
- TransactionMerchant.createARBTransaction(TransactionType transactionType, - Subscription subscription) - -
-          Creates a new ARB Transaction.
-  -

- - - - - -
-Uses of TransactionType in net.authorize.arb
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.arb that return TransactionType
- TransactionTypeTransaction.getTransactionType() - -
-           
-static TransactionTypeTransactionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]TransactionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.arb with parameters of type TransactionType
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - Subscription subscription) - -
-          Creates a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/package-frame.html b/docs/javadocs/net/authorize/arb/package-frame.html deleted file mode 100644 index ee76409..0000000 --- a/docs/javadocs/net/authorize/arb/package-frame.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - -net.authorize.arb (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.arb - - - - -
-Classes  - -
-Result -
-Transaction
- - - - - - -
-Enums  - -
-TransactionType
- - - - diff --git a/docs/javadocs/net/authorize/arb/package-summary.html b/docs/javadocs/net/authorize/arb/package-summary.html deleted file mode 100644 index 64c96ee..0000000 --- a/docs/javadocs/net/authorize/arb/package-summary.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -net.authorize.arb (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.arb -

- - - - - - - - - - - - - -
-Class Summary
ResultWrapper container for passing back the result from the request gateway.
TransactionTransaction object for ARB.
-  - -

- - - - - - - - - -
-Enum Summary
TransactionType 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/package-tree.html b/docs/javadocs/net/authorize/arb/package-tree.html deleted file mode 100644 index fbf1a32..0000000 --- a/docs/javadocs/net/authorize/arb/package-tree.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -net.authorize.arb Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.arb -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.Result (implements java.io.Serializable) -
        -
      • net.authorize.xml.Result (implements java.io.Serializable) -
          -
        • net.authorize.arb.Result (implements java.io.Serializable) -
        -
      -
    • net.authorize.xml.XMLTransaction (implements net.authorize.ITransaction, java.io.Serializable) - -
    -
-

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/arb/package-use.html b/docs/javadocs/net/authorize/arb/package-use.html deleted file mode 100644 index 7feb9a5..0000000 --- a/docs/javadocs/net/authorize/arb/package-use.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - -Uses of Package net.authorize.arb (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.arb

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.arb
net.authorize  
net.authorize.arb  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.arb used by net.authorize
Transaction - -
-          Transaction object for ARB.
TransactionType - -
-           
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.arb used by net.authorize.arb
Result - -
-          Wrapper container for passing back the result from the request gateway.
Transaction - -
-          Transaction object for ARB.
TransactionType - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/AbstractMerchantAuthentication.html b/docs/javadocs/net/authorize/auth/AbstractMerchantAuthentication.html deleted file mode 100644 index 0d48503..0000000 --- a/docs/javadocs/net/authorize/auth/AbstractMerchantAuthentication.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - -AbstractMerchantAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.auth -
-Class AbstractMerchantAuthentication

-
-java.lang.Object
-  extended by net.authorize.auth.AbstractMerchantAuthentication
-
-
-
All Implemented Interfaces:
java.io.Serializable, IMerchantAuthentication
-
-
-
Direct Known Subclasses:
AbstractMobileMerchantAuthentication, TransactionKeyAuthentication
-
-
-
-
public class AbstractMerchantAuthentication
extends java.lang.Object
implements IMerchantAuthentication, java.io.Serializable
- - -

-Abstract authenticator. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  MerchantAuthenticationTypemerchantAuthenticationType - -
-           
-protected  java.lang.Stringname - -
-           
-protected  java.lang.Stringsecret - -
-           
-  - - - - - - - - - - -
-Constructor Summary
AbstractMerchantAuthentication() - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- MerchantAuthenticationTypegetMerchantAuthenticationType() - -
-          Returns the merchant authentication type.
- java.lang.StringgetName() - -
-          Return the name associated used in conjunction with the authentication value.
- java.lang.StringgetSecret() - -
-          Return the authentication secret/value associated with the name.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-name

-
-protected java.lang.String name
-
-
-
-
-
- -

-secret

-
-protected java.lang.String secret
-
-
-
-
-
- -

-merchantAuthenticationType

-
-protected MerchantAuthenticationType merchantAuthenticationType
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-AbstractMerchantAuthentication

-
-public AbstractMerchantAuthentication()
-
-
- - - - - - - - -
-Method Detail
- -

-getMerchantAuthenticationType

-
-public MerchantAuthenticationType getMerchantAuthenticationType()
-
-
Description copied from interface: IMerchantAuthentication
-
Returns the merchant authentication type. -

-

-
Specified by:
getMerchantAuthenticationType in interface IMerchantAuthentication
-
-
- -
Returns:
MerchantAuthenticationType
See Also:
IMerchantAuthentication.getMerchantAuthenticationType()
-
-
-
- -

-getName

-
-public java.lang.String getName()
-
-
Description copied from interface: IMerchantAuthentication
-
Return the name associated used in conjunction with the authentication value. -

-

-
Specified by:
getName in interface IMerchantAuthentication
-
-
- -
Returns:
name
See Also:
IMerchantAuthentication.getName()
-
-
-
- -

-getSecret

-
-public java.lang.String getSecret()
-
-
Description copied from interface: IMerchantAuthentication
-
Return the authentication secret/value associated with the name. -

-

-
Specified by:
getSecret in interface IMerchantAuthentication
-
-
- -
Returns:
secret
See Also:
IMerchantAuthentication.getSecret()
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/AbstractMobileMerchantAuthentication.html b/docs/javadocs/net/authorize/auth/AbstractMobileMerchantAuthentication.html deleted file mode 100644 index ffedfb0..0000000 --- a/docs/javadocs/net/authorize/auth/AbstractMobileMerchantAuthentication.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - -AbstractMobileMerchantAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.auth -
-Class AbstractMobileMerchantAuthentication

-
-java.lang.Object
-  extended by net.authorize.auth.AbstractMerchantAuthentication
-      extended by net.authorize.auth.AbstractMobileMerchantAuthentication
-
-
-
All Implemented Interfaces:
java.io.Serializable, IMerchantAuthentication
-
-
-
Direct Known Subclasses:
PasswordAuthentication, SessionTokenAuthentication
-
-
-
-
public class AbstractMobileMerchantAuthentication
extends AbstractMerchantAuthentication
implements IMerchantAuthentication, java.io.Serializable
- - -

-Abstract mobile merchant authenticator. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-protected  java.lang.StringmobileDeviceId - -
-           
- - - - - - - -
Fields inherited from class net.authorize.auth.AbstractMerchantAuthentication
merchantAuthenticationType, name, secret
-  - - - - - - - - - - -
-Constructor Summary
AbstractMobileMerchantAuthentication() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetMobileDeviceId() - -
-          Mobile device id.
- - - - - - - -
Methods inherited from class net.authorize.auth.AbstractMerchantAuthentication
getMerchantAuthenticationType, getName, getSecret
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.auth.IMerchantAuthentication
getMerchantAuthenticationType, getName, getSecret
-  -

- - - - - - - - -
-Field Detail
- -

-mobileDeviceId

-
-protected java.lang.String mobileDeviceId
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-AbstractMobileMerchantAuthentication

-
-public AbstractMobileMerchantAuthentication()
-
-
- - - - - - - - -
-Method Detail
- -

-getMobileDeviceId

-
-public java.lang.String getMobileDeviceId()
-
-
Mobile device id. -

-

-
-
-
- -
Returns:
the mobileDeviceId
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/IMerchantAuthentication.html b/docs/javadocs/net/authorize/auth/IMerchantAuthentication.html deleted file mode 100644 index dfcbc11..0000000 --- a/docs/javadocs/net/authorize/auth/IMerchantAuthentication.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - -IMerchantAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.auth -
-Interface IMerchantAuthentication

-
-
All Known Implementing Classes:
AbstractMerchantAuthentication, AbstractMobileMerchantAuthentication, PasswordAuthentication, SessionTokenAuthentication, TransactionKeyAuthentication
-
-
-
-
public interface IMerchantAuthentication
- - -

-Common interface for merchant authenticators. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - -
-Method Summary
- MerchantAuthenticationTypegetMerchantAuthenticationType() - -
-          Returns the merchant authentication type.
- java.lang.StringgetName() - -
-          Return the name associated used in conjunction with the authentication value.
- java.lang.StringgetSecret() - -
-          Return the authentication secret/value associated with the name.
-  -

- - - - - - - - -
-Method Detail
- -

-getMerchantAuthenticationType

-
-MerchantAuthenticationType getMerchantAuthenticationType()
-
-
Returns the merchant authentication type. -

-

- -
Returns:
MerchantAuthenticationType
-
-
-
- -

-getName

-
-java.lang.String getName()
-
-
Return the name associated used in conjunction with the authentication value. -

-

- -
Returns:
name
-
-
-
- -

-getSecret

-
-java.lang.String getSecret()
-
-
Return the authentication secret/value associated with the name. -

-

- -
Returns:
secret
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/MerchantAuthenticationType.html b/docs/javadocs/net/authorize/auth/MerchantAuthenticationType.html deleted file mode 100644 index ca12556..0000000 --- a/docs/javadocs/net/authorize/auth/MerchantAuthenticationType.html +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - -MerchantAuthenticationType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.auth -
-Enum MerchantAuthenticationType

-
-java.lang.Object
-  extended by java.lang.Enum<MerchantAuthenticationType>
-      extended by net.authorize.auth.MerchantAuthenticationType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MerchantAuthenticationType>
-
-
-
-
public enum MerchantAuthenticationType
extends java.lang.Enum<MerchantAuthenticationType>
- - -

-Defines the type of merchant authentication mechanisms that are supported. -

- -

-


- -

- - - - - - - - - - - - - - - - -
-Enum Constant Summary
PASSWORD - -
-           
SESSION_TOKEN - -
-           
TRANSACTION_KEY - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static MerchantAuthenticationTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static MerchantAuthenticationType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-PASSWORD

-
-public static final MerchantAuthenticationType PASSWORD
-
-
-
-
-
- -

-TRANSACTION_KEY

-
-public static final MerchantAuthenticationType TRANSACTION_KEY
-
-
-
-
-
- -

-SESSION_TOKEN

-
-public static final MerchantAuthenticationType SESSION_TOKEN
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static MerchantAuthenticationType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (MerchantAuthenticationType c : MerchantAuthenticationType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static MerchantAuthenticationType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/PasswordAuthentication.html b/docs/javadocs/net/authorize/auth/PasswordAuthentication.html deleted file mode 100644 index e4fa4c9..0000000 --- a/docs/javadocs/net/authorize/auth/PasswordAuthentication.html +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - -PasswordAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.auth -
-Class PasswordAuthentication

-
-java.lang.Object
-  extended by net.authorize.auth.AbstractMerchantAuthentication
-      extended by net.authorize.auth.AbstractMobileMerchantAuthentication
-          extended by net.authorize.auth.PasswordAuthentication
-
-
-
All Implemented Interfaces:
java.io.Serializable, IMerchantAuthentication
-
-
-
-
public class PasswordAuthentication
extends AbstractMobileMerchantAuthentication
implements IMerchantAuthentication
- - -

-Password authenticator. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.auth.AbstractMobileMerchantAuthentication
mobileDeviceId
- - - - - - - -
Fields inherited from class net.authorize.auth.AbstractMerchantAuthentication
merchantAuthenticationType, name, secret
-  - - - - - - - - - - - -
-Method Summary
-static PasswordAuthenticationcreateMerchantAuthentication(java.lang.String name, - java.lang.String secret, - java.lang.String mobileDeviceId) - -
-          Creates a password authenticator.
- - - - - - - -
Methods inherited from class net.authorize.auth.AbstractMobileMerchantAuthentication
getMobileDeviceId
- - - - - - - -
Methods inherited from class net.authorize.auth.AbstractMerchantAuthentication
getMerchantAuthenticationType, getName, getSecret
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.auth.IMerchantAuthentication
getMerchantAuthenticationType, getName, getSecret
-  -

- - - - - - - - -
-Method Detail
- -

-createMerchantAuthentication

-
-public static PasswordAuthentication createMerchantAuthentication(java.lang.String name,
-                                                                  java.lang.String secret,
-                                                                  java.lang.String mobileDeviceId)
-
-
Creates a password authenticator. -

-

-
-
-
-
Parameters:
name -
secret -
mobileDeviceId - -
Returns:
PasswordAuthentication object
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/SessionTokenAuthentication.html b/docs/javadocs/net/authorize/auth/SessionTokenAuthentication.html deleted file mode 100644 index 2a7ba45..0000000 --- a/docs/javadocs/net/authorize/auth/SessionTokenAuthentication.html +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - -SessionTokenAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.auth -
-Class SessionTokenAuthentication

-
-java.lang.Object
-  extended by net.authorize.auth.AbstractMerchantAuthentication
-      extended by net.authorize.auth.AbstractMobileMerchantAuthentication
-          extended by net.authorize.auth.SessionTokenAuthentication
-
-
-
All Implemented Interfaces:
java.io.Serializable, IMerchantAuthentication
-
-
-
-
public class SessionTokenAuthentication
extends AbstractMobileMerchantAuthentication
implements IMerchantAuthentication
- - -

-Session token authenticator. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.auth.AbstractMobileMerchantAuthentication
mobileDeviceId
- - - - - - - -
Fields inherited from class net.authorize.auth.AbstractMerchantAuthentication
merchantAuthenticationType, name, secret
-  - - - - - - - - - - - - - - - -
-Method Summary
-static SessionTokenAuthenticationcreateMerchantAuthentication(SessionTokenAuthentication sessionTokenAuth, - java.lang.String secret) - -
-          Creates a session token authenticator from an existing auth, but with an - updated sessionToken.
-static SessionTokenAuthenticationcreateMerchantAuthentication(java.lang.String name, - java.lang.String secret, - java.lang.String mobileDeviceId) - -
-          Creates a session token authenticator.
- - - - - - - -
Methods inherited from class net.authorize.auth.AbstractMobileMerchantAuthentication
getMobileDeviceId
- - - - - - - -
Methods inherited from class net.authorize.auth.AbstractMerchantAuthentication
getMerchantAuthenticationType, getName, getSecret
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.auth.IMerchantAuthentication
getMerchantAuthenticationType, getName, getSecret
-  -

- - - - - - - - -
-Method Detail
- -

-createMerchantAuthentication

-
-public static SessionTokenAuthentication createMerchantAuthentication(java.lang.String name,
-                                                                      java.lang.String secret,
-                                                                      java.lang.String mobileDeviceId)
-
-
Creates a session token authenticator. -

-

-
-
-
-
Parameters:
name -
secret -
mobileDeviceId - -
Returns:
SessionTokenAuthentication object
-
-
-
- -

-createMerchantAuthentication

-
-public static SessionTokenAuthentication createMerchantAuthentication(SessionTokenAuthentication sessionTokenAuth,
-                                                                      java.lang.String secret)
-
-
Creates a session token authenticator from an existing auth, but with an - updated sessionToken. -

-

-
-
-
-
Parameters:
sessionTokenAuth -
secret - -
Returns:
SessionTokenAuthentcation object.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/TransactionKeyAuthentication.html b/docs/javadocs/net/authorize/auth/TransactionKeyAuthentication.html deleted file mode 100644 index a3ed7b7..0000000 --- a/docs/javadocs/net/authorize/auth/TransactionKeyAuthentication.html +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - -TransactionKeyAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.auth -
-Class TransactionKeyAuthentication

-
-java.lang.Object
-  extended by net.authorize.auth.AbstractMerchantAuthentication
-      extended by net.authorize.auth.TransactionKeyAuthentication
-
-
-
All Implemented Interfaces:
java.io.Serializable, IMerchantAuthentication
-
-
-
-
public class TransactionKeyAuthentication
extends AbstractMerchantAuthentication
implements IMerchantAuthentication
- - -

-Transaction key authenticator. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.auth.AbstractMerchantAuthentication
merchantAuthenticationType, name, secret
-  - - - - - - - - - - - -
-Method Summary
-static TransactionKeyAuthenticationcreateMerchantAuthentication(java.lang.String name, - java.lang.String secret) - -
-          Creates a transaction key authenticator.
- - - - - - - -
Methods inherited from class net.authorize.auth.AbstractMerchantAuthentication
getMerchantAuthenticationType, getName, getSecret
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.auth.IMerchantAuthentication
getMerchantAuthenticationType, getName, getSecret
-  -

- - - - - - - - -
-Method Detail
- -

-createMerchantAuthentication

-
-public static TransactionKeyAuthentication createMerchantAuthentication(java.lang.String name,
-                                                                        java.lang.String secret)
-
-
Creates a transaction key authenticator. -

-

-
-
-
-
Parameters:
name -
secret - -
Returns:
TransactionKeyAuthentication container
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/class-use/AbstractMerchantAuthentication.html b/docs/javadocs/net/authorize/auth/class-use/AbstractMerchantAuthentication.html deleted file mode 100644 index a442fcd..0000000 --- a/docs/javadocs/net/authorize/auth/class-use/AbstractMerchantAuthentication.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - -Uses of Class net.authorize.auth.AbstractMerchantAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.auth.AbstractMerchantAuthentication

-
- - - - - - - - - -
-Packages that use AbstractMerchantAuthentication
net.authorize.auth  
-  -

- - - - - -
-Uses of AbstractMerchantAuthentication in net.authorize.auth
-  -

- - - - - - - - - - - - - - - - - - - - - -
Subclasses of AbstractMerchantAuthentication in net.authorize.auth
- classAbstractMobileMerchantAuthentication - -
-          Abstract mobile merchant authenticator.
- classPasswordAuthentication - -
-          Password authenticator.
- classSessionTokenAuthentication - -
-          Session token authenticator.
- classTransactionKeyAuthentication - -
-          Transaction key authenticator.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/class-use/AbstractMobileMerchantAuthentication.html b/docs/javadocs/net/authorize/auth/class-use/AbstractMobileMerchantAuthentication.html deleted file mode 100644 index a1a482d..0000000 --- a/docs/javadocs/net/authorize/auth/class-use/AbstractMobileMerchantAuthentication.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - -Uses of Class net.authorize.auth.AbstractMobileMerchantAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.auth.AbstractMobileMerchantAuthentication

-
- - - - - - - - - -
-Packages that use AbstractMobileMerchantAuthentication
net.authorize.auth  
-  -

- - - - - -
-Uses of AbstractMobileMerchantAuthentication in net.authorize.auth
-  -

- - - - - - - - - - - - - -
Subclasses of AbstractMobileMerchantAuthentication in net.authorize.auth
- classPasswordAuthentication - -
-          Password authenticator.
- classSessionTokenAuthentication - -
-          Session token authenticator.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/class-use/IMerchantAuthentication.html b/docs/javadocs/net/authorize/auth/class-use/IMerchantAuthentication.html deleted file mode 100644 index 385621b..0000000 --- a/docs/javadocs/net/authorize/auth/class-use/IMerchantAuthentication.html +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - -Uses of Interface net.authorize.auth.IMerchantAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
net.authorize.auth.IMerchantAuthentication

-
- - - - - - - - - - - - - -
-Packages that use IMerchantAuthentication
net.authorize  
net.authorize.auth  
-  -

- - - - - -
-Uses of IMerchantAuthentication in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return IMerchantAuthentication
- IMerchantAuthenticationMerchant.getMerchantAuthentication() - -
-          Get the merchant authenticator.
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize with parameters of type IMerchantAuthentication
-static MerchantMerchant.createMerchant(Environment environment, - IMerchantAuthentication merchantAuthenticator) - -
-           
-static MerchantMerchant.createMerchant(Environment environment, - IMerchantAuthentication merchantAuthenticator, - java.lang.String md5Value) - -
-           
- voidMerchant.setMerchantAuthentication(IMerchantAuthentication merchantAuthenticator) - -
-          Set the merchant authenticator.
-  -

- - - - - -
-Uses of IMerchantAuthentication in net.authorize.auth
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - -
Classes in net.authorize.auth that implement IMerchantAuthentication
- classAbstractMerchantAuthentication - -
-          Abstract authenticator.
- classAbstractMobileMerchantAuthentication - -
-          Abstract mobile merchant authenticator.
- classPasswordAuthentication - -
-          Password authenticator.
- classSessionTokenAuthentication - -
-          Session token authenticator.
- classTransactionKeyAuthentication - -
-          Transaction key authenticator.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/class-use/MerchantAuthenticationType.html b/docs/javadocs/net/authorize/auth/class-use/MerchantAuthenticationType.html deleted file mode 100644 index d0e705f..0000000 --- a/docs/javadocs/net/authorize/auth/class-use/MerchantAuthenticationType.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - -Uses of Class net.authorize.auth.MerchantAuthenticationType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.auth.MerchantAuthenticationType

-
- - - - - - - - - -
-Packages that use MerchantAuthenticationType
net.authorize.auth  
-  -

- - - - - -
-Uses of MerchantAuthenticationType in net.authorize.auth
-  -

- - - - - - - - - -
Fields in net.authorize.auth declared as MerchantAuthenticationType
-protected  MerchantAuthenticationTypeAbstractMerchantAuthentication.merchantAuthenticationType - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.auth that return MerchantAuthenticationType
- MerchantAuthenticationTypeAbstractMerchantAuthentication.getMerchantAuthenticationType() - -
-           
- MerchantAuthenticationTypeIMerchantAuthentication.getMerchantAuthenticationType() - -
-          Returns the merchant authentication type.
-static MerchantAuthenticationTypeMerchantAuthenticationType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static MerchantAuthenticationType[]MerchantAuthenticationType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/class-use/PasswordAuthentication.html b/docs/javadocs/net/authorize/auth/class-use/PasswordAuthentication.html deleted file mode 100644 index 026e793..0000000 --- a/docs/javadocs/net/authorize/auth/class-use/PasswordAuthentication.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - -Uses of Class net.authorize.auth.PasswordAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.auth.PasswordAuthentication

-
- - - - - - - - - -
-Packages that use PasswordAuthentication
net.authorize.auth  
-  -

- - - - - -
-Uses of PasswordAuthentication in net.authorize.auth
-  -

- - - - - - - - - -
Methods in net.authorize.auth that return PasswordAuthentication
-static PasswordAuthenticationPasswordAuthentication.createMerchantAuthentication(java.lang.String name, - java.lang.String secret, - java.lang.String mobileDeviceId) - -
-          Creates a password authenticator.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/class-use/SessionTokenAuthentication.html b/docs/javadocs/net/authorize/auth/class-use/SessionTokenAuthentication.html deleted file mode 100644 index 4cf4f58..0000000 --- a/docs/javadocs/net/authorize/auth/class-use/SessionTokenAuthentication.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - -Uses of Class net.authorize.auth.SessionTokenAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.auth.SessionTokenAuthentication

-
- - - - - - - - - -
-Packages that use SessionTokenAuthentication
net.authorize.auth  
-  -

- - - - - -
-Uses of SessionTokenAuthentication in net.authorize.auth
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.auth that return SessionTokenAuthentication
-static SessionTokenAuthenticationSessionTokenAuthentication.createMerchantAuthentication(SessionTokenAuthentication sessionTokenAuth, - java.lang.String secret) - -
-          Creates a session token authenticator from an existing auth, but with an - updated sessionToken.
-static SessionTokenAuthenticationSessionTokenAuthentication.createMerchantAuthentication(java.lang.String name, - java.lang.String secret, - java.lang.String mobileDeviceId) - -
-          Creates a session token authenticator.
-  -

- - - - - - - - - -
Methods in net.authorize.auth with parameters of type SessionTokenAuthentication
-static SessionTokenAuthenticationSessionTokenAuthentication.createMerchantAuthentication(SessionTokenAuthentication sessionTokenAuth, - java.lang.String secret) - -
-          Creates a session token authenticator from an existing auth, but with an - updated sessionToken.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/class-use/TransactionKeyAuthentication.html b/docs/javadocs/net/authorize/auth/class-use/TransactionKeyAuthentication.html deleted file mode 100644 index f3cd939..0000000 --- a/docs/javadocs/net/authorize/auth/class-use/TransactionKeyAuthentication.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.auth.TransactionKeyAuthentication (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.auth.TransactionKeyAuthentication

-
- - - - - - - - - -
-Packages that use TransactionKeyAuthentication
net.authorize.auth  
-  -

- - - - - -
-Uses of TransactionKeyAuthentication in net.authorize.auth
-  -

- - - - - - - - - -
Methods in net.authorize.auth that return TransactionKeyAuthentication
-static TransactionKeyAuthenticationTransactionKeyAuthentication.createMerchantAuthentication(java.lang.String name, - java.lang.String secret) - -
-          Creates a transaction key authenticator.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/package-frame.html b/docs/javadocs/net/authorize/auth/package-frame.html deleted file mode 100644 index 80bd51b..0000000 --- a/docs/javadocs/net/authorize/auth/package-frame.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - -net.authorize.auth (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.auth - - - - -
-Interfaces  - -
-IMerchantAuthentication
- - - - - - -
-Classes  - -
-AbstractMerchantAuthentication -
-AbstractMobileMerchantAuthentication -
-PasswordAuthentication -
-SessionTokenAuthentication -
-TransactionKeyAuthentication
- - - - - - -
-Enums  - -
-MerchantAuthenticationType
- - - - diff --git a/docs/javadocs/net/authorize/auth/package-summary.html b/docs/javadocs/net/authorize/auth/package-summary.html deleted file mode 100644 index 6b41409..0000000 --- a/docs/javadocs/net/authorize/auth/package-summary.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - -net.authorize.auth (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.auth -

- - - - - - - - - -
-Interface Summary
IMerchantAuthenticationCommon interface for merchant authenticators.
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
AbstractMerchantAuthenticationAbstract authenticator.
AbstractMobileMerchantAuthenticationAbstract mobile merchant authenticator.
PasswordAuthenticationPassword authenticator.
SessionTokenAuthenticationSession token authenticator.
TransactionKeyAuthenticationTransaction key authenticator.
-  - -

- - - - - - - - - -
-Enum Summary
MerchantAuthenticationTypeDefines the type of merchant authentication mechanisms that are supported.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/package-tree.html b/docs/javadocs/net/authorize/auth/package-tree.html deleted file mode 100644 index bdee37e..0000000 --- a/docs/javadocs/net/authorize/auth/package-tree.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - -net.authorize.auth Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.auth -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -

-Interface Hierarchy -

- -

-Enum Hierarchy -

-
    -
  • java.lang.Object -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/auth/package-use.html b/docs/javadocs/net/authorize/auth/package-use.html deleted file mode 100644 index c301871..0000000 --- a/docs/javadocs/net/authorize/auth/package-use.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - -Uses of Package net.authorize.auth (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.auth

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.auth
net.authorize  
net.authorize.auth  
-  -

- - - - - - - - -
-Classes in net.authorize.auth used by net.authorize
IMerchantAuthentication - -
-          Common interface for merchant authenticators.
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize.auth used by net.authorize.auth
AbstractMerchantAuthentication - -
-          Abstract authenticator.
AbstractMobileMerchantAuthentication - -
-          Abstract mobile merchant authenticator.
IMerchantAuthentication - -
-          Common interface for merchant authenticators.
MerchantAuthenticationType - -
-          Defines the type of merchant authentication mechanisms that are supported.
PasswordAuthentication - -
-          Password authenticator.
SessionTokenAuthentication - -
-          Session token authenticator.
TransactionKeyAuthentication - -
-          Transaction key authenticator.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/Result.html b/docs/javadocs/net/authorize/cim/Result.html deleted file mode 100644 index b66ec4e..0000000 --- a/docs/javadocs/net/authorize/cim/Result.html +++ /dev/null @@ -1,685 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.cim -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-      extended by net.authorize.xml.Result
-          extended by net.authorize.cim.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Result
extends Result
- - -

-Wrapper container for passing back the result from the gateway request. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  java.util.ArrayList<java.lang.String>customerPaymentProfileIdList - -
-           
-protected  CustomerProfilecustomerProfile - -
-           
-protected  java.util.ArrayList<java.lang.String>customerProfileIdList - -
-           
-protected  java.util.ArrayList<java.lang.String>customerShippingAddressIdList - -
-           
-protected  java.util.ArrayList<DirectResponse>directResponseList - -
-           
-protected  java.util.ArrayList<PaymentProfile>paymentProfileList - -
-           
- - - - - - - -
Fields inherited from class net.authorize.xml.Result
ERROR, messages, OK, refId, requestTransactionType, responseCode, resultCode, sessionToken, xmlResponse, xmlResponseDoc
- - - - - - - -
Fields inherited from class net.authorize.Result
requestTransaction
-  - - - - - - - - - - - - - - - -
-Constructor Summary
-protected Result() - -
-           
-protected Result(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ResultcreateResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
- PaymentProfilegetCustomerPaymentProfile() - -
-          Get the first/only payment profile from a possible list of many
- java.util.ArrayList<java.lang.String>getCustomerPaymentProfileIdList() - -
-           
- java.util.ArrayList<PaymentProfile>getCustomerPaymentProfileList() - -
-           
- CustomerProfilegetCustomerProfile() - -
-           
- java.lang.StringgetCustomerProfileId() - -
-          Get the first/only customer profile id from a possible list of many
- java.util.ArrayList<java.lang.String>getCustomerProfileIdList() - -
-           
- AddressgetCustomerShippingAddress() - -
-          Get the customer shipping address.
- java.util.ArrayList<java.lang.String>getCustomerShippingAddressIdList() - -
-           
- java.util.ArrayList<DirectResponse>getDirectResponseList() - -
-          Get the directResponse list
- java.lang.StringgetRefId() - -
-          Returns the refId.
- voidprintMessages() - -
-          Print out messages for debugging.
- - - - - - - -
Methods inherited from class net.authorize.xml.Result
clearRequest, clearXmlResponse, getElementText, getElementText, getMessages, getRequestTransactionType, getResultCode, getSessionToken, getXmlResponse, getXmlResponseDoc, importRefId, importResponseMessages, importSessionToken, isApproved, isDeclined, isError, isOk, isResponseAuthenticationError, isResponseError, isResponseErrorRetryable, isResponseOk, isReview
- - - - - - - -
Methods inherited from class net.authorize.Result
getRequestTransaction
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-customerProfileIdList

-
-protected java.util.ArrayList<java.lang.String> customerProfileIdList
-
-
-
-
-
- -

-customerProfile

-
-protected CustomerProfile customerProfile
-
-
-
-
-
- -

-customerPaymentProfileIdList

-
-protected java.util.ArrayList<java.lang.String> customerPaymentProfileIdList
-
-
-
-
-
- -

-paymentProfileList

-
-protected java.util.ArrayList<PaymentProfile> paymentProfileList
-
-
-
-
-
- -

-customerShippingAddressIdList

-
-protected java.util.ArrayList<java.lang.String> customerShippingAddressIdList
-
-
-
-
-
- -

-directResponseList

-
-protected java.util.ArrayList<DirectResponse> directResponseList
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Result

-
-protected Result()
-
-
-
- -

-Result

-
-protected Result(ITransaction requestTransaction,
-                 java.lang.String response)
-
-
- - - - - - - - -
-Method Detail
- -

-createResult

-
-public static Result createResult(ITransaction requestTransaction,
-                                  java.lang.String response)
-
-
-
-
-
-
- -

-getCustomerProfileId

-
-public java.lang.String getCustomerProfileId()
-
-
Get the first/only customer profile id from a possible list of many -

-

- -
Returns:
the customerProfileId
-
-
-
- -

-getDirectResponseList

-
-public java.util.ArrayList<DirectResponse> getDirectResponseList()
-
-
Get the directResponse list -

-

- -
Returns:
the directResponseList
-
-
-
- -

-getRefId

-
-public java.lang.String getRefId()
-
-
Description copied from class: Result
-
Returns the refId. -

-

-
Overrides:
getRefId in class Result
-
-
- -
Returns:
the refId
-
-
-
- -

-getCustomerPaymentProfileIdList

-
-public java.util.ArrayList<java.lang.String> getCustomerPaymentProfileIdList()
-
-
- -
Returns:
the customerPaymentProfileIdList
-
-
-
- -

-getCustomerShippingAddressIdList

-
-public java.util.ArrayList<java.lang.String> getCustomerShippingAddressIdList()
-
-
- -
Returns:
the customerShippingAddressIdList
-
-
-
- -

-getCustomerProfileIdList

-
-public java.util.ArrayList<java.lang.String> getCustomerProfileIdList()
-
-
- -
Returns:
the customerProfileIdList
-
-
-
- -

-getCustomerPaymentProfileList

-
-public java.util.ArrayList<PaymentProfile> getCustomerPaymentProfileList()
-
-
- -
Returns:
the paymentProfile
-
-
-
- -

-getCustomerPaymentProfile

-
-public PaymentProfile getCustomerPaymentProfile()
-
-
Get the first/only payment profile from a possible list of many -

-

- -
Returns:
the customerProfileId
-
-
-
- -

-getCustomerShippingAddress

-
-public Address getCustomerShippingAddress()
-
-
Get the customer shipping address. -

-

- -
Returns:
Address
-
-
-
- -

-getCustomerProfile

-
-public CustomerProfile getCustomerProfile()
-
-
- -
Returns:
the customerProfile
-
-
-
- -

-printMessages

-
-public void printMessages()
-
-
Print out messages for debugging. -

-

-
Overrides:
printMessages in class Result
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/SplitTenderStatus.html b/docs/javadocs/net/authorize/cim/SplitTenderStatus.html deleted file mode 100644 index c12953e..0000000 --- a/docs/javadocs/net/authorize/cim/SplitTenderStatus.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - -SplitTenderStatus (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.cim -
-Enum SplitTenderStatus

-
-java.lang.Object
-  extended by java.lang.Enum<SplitTenderStatus>
-      extended by net.authorize.cim.SplitTenderStatus
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SplitTenderStatus>
-
-
-
-
public enum SplitTenderStatus
extends java.lang.Enum<SplitTenderStatus>
- - -

-


- -

- - - - - - - - - - - - - -
-Enum Constant Summary
COMPLETED - -
-           
VOIDED - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static SplitTenderStatusvalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static SplitTenderStatus[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-VOIDED

-
-public static final SplitTenderStatus VOIDED
-
-
-
-
-
- -

-COMPLETED

-
-public static final SplitTenderStatus COMPLETED
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static SplitTenderStatus[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (SplitTenderStatus c : SplitTenderStatus.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static SplitTenderStatus valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/Transaction.html b/docs/javadocs/net/authorize/cim/Transaction.html deleted file mode 100644 index a5e3ba4..0000000 --- a/docs/javadocs/net/authorize/cim/Transaction.html +++ /dev/null @@ -1,1184 +0,0 @@ - - - - - - -Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.cim -
-Class Transaction

-
-java.lang.Object
-  extended by net.authorize.xml.XMLTransaction
-      extended by net.authorize.cim.Transaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
-
public class Transaction
extends XMLTransaction
implements ITransaction
- - -

-Transaction object for CIM. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-protected  java.util.Hashtable<java.lang.String,java.lang.String>extraOptions - -
-           
- - - - - - - -
Fields inherited from class net.authorize.xml.XMLTransaction
bankAccount, billToAddress, creditCard, currentRequest, customer, emailReceipt, md5Value, merchant, order, refId, shippingAddress, shippingCharges, XML_NAMESPACE, XML_XSD, XML_XSI
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - - -
-Constructor Summary
-protected Transaction(Merchant merchant, - TransactionType transactionType) - -
-          Private constructor.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddExtraOption(java.lang.String key, - java.lang.String value) - -
-          Add extra option to the extra options map.
- voidaddPaymentProfile(PaymentProfile paymentProfile) - -
-          Add a payment profile.
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
- java.lang.StringgetApprovalCode() - -
-           
- java.lang.StringgetBankAccountNumberMasked() - -
-           
- java.lang.StringgetBankRoutingNumberMasked() - -
-           
- java.lang.StringgetCardCode() - -
-           
- java.lang.StringgetCreditCardNumberMasked() - -
-           
- java.lang.StringgetCustomerPaymentProfileId() - -
-           
- java.lang.StringgetCustomerShippingAddressId() - -
-           
- java.util.Map<java.lang.String,java.lang.String>getExtraOptions() - -
-           
- java.util.ArrayList<PaymentProfile>getPaymentProfileList() - -
-           
- TransactionTypegetPaymentTransactionType() - -
-           
- java.lang.StringgetSplitTenderId() - -
-           
- SplitTenderStatusgetSplitTenderStatus() - -
-           
- java.lang.StringgetTransactionId() - -
-           
- TransactionTypegetTransactionType() - -
-           
- ValidationModeTypegetValidationMode() - -
-          Get the validation mode.
- voidsetApprovalCode(java.lang.String approvalCode) - -
-           
- voidsetBankAccountNumberMasked(java.lang.String bankAccountNumberMasked) - -
-           
- voidsetBankRoutingNumberMasked(java.lang.String bankRoutingNumberMasked) - -
-           
- voidsetCardCode(java.lang.String cardCode) - -
-          Set the card code for specific transactions.
- voidsetCreditCardNumberMasked(java.lang.String creditCardNumberMasked) - -
-           
- voidsetCustomerPaymentProfileId(java.lang.String customerPaymentProfileId) - -
-          Set the customer payment profile id.
- voidsetCustomerProfile(CustomerProfile customerProfile) - -
-          Set the customer profile.
- voidsetCustomerProfileId(java.lang.String customerProfileId) - -
-          Set the customer profile id.
- voidsetCustomerShippingAddressId(java.lang.String customerShippingAddressId) - -
-          Set the customer shipping address id.
- voidsetExtraOptions(java.util.Hashtable<java.lang.String,java.lang.String> extraOptions) - -
-          Sets the extra options.
- voidsetPaymentProfileList(java.util.ArrayList<PaymentProfile> paymentProfileList) - -
-           
- voidsetPaymentTransactionType(TransactionType paymentTransactionType) - -
-           
- voidsetShipTo(Address shipTo) - -
-          Set shipping information.
- voidsetSplitTenderId(java.lang.String splitTenderId) - -
-           
- voidsetSplitTenderStatus(SplitTenderStatus splitTenderStatus) - -
-           
- voidsetTransactionId(java.lang.String transactionId) - -
-           
- voidsetTransId(java.lang.String transId) - -
-           
- voidsetValidationMode(ValidationModeType validationMode) - -
-          Set the validation mode for the request.
- java.lang.StringtoAuthNetPOSTString() - -
-          Convert request to XML.
- - - - - - - -
Methods inherited from class net.authorize.xml.XMLTransaction
addAuthentication, addAuthentication, addRefId, getBankAccount, getCreditCard, getCurrentRequest, getCustomer, getEmailReceipt, getMD5Value, getMerchant, getOrder, getRefId, getShippingAddress, getShippingCharges, setBankAccount, setCreditCard, setCustomer, setEmailReceipt, setOrder, setRefId, setShippingAddress, setShippingCharges
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.ITransaction
getBankAccount, getCreditCard, getCustomer, getEmailReceipt, getMD5Value, getMerchant, getOrder, getShippingAddress, getShippingCharges, setBankAccount, setCreditCard, setCustomer, setEmailReceipt, setOrder, setShippingAddress, setShippingCharges
-  -

- - - - - - - - -
-Field Detail
- -

-extraOptions

-
-protected java.util.Hashtable<java.lang.String,java.lang.String> extraOptions
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Transaction

-
-protected Transaction(Merchant merchant,
-                      TransactionType transactionType)
-
-
Private constructor. -

-

-
Parameters:
merchant -
transactionType -
-
- - - - - - - - -
-Method Detail
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType)
-
-
Creates a transaction. -

-

-
-
-
-
Parameters:
merchant -
transactionType - -
Returns:
Transaction
-
-
-
- -

-getTransactionType

-
-public TransactionType getTransactionType()
-
-
-
Specified by:
getTransactionType in interface ITransaction
-
-
- -
Returns:
the transactionType
-
-
-
- -

-toAuthNetPOSTString

-
-public java.lang.String toAuthNetPOSTString()
-
-
Convert request to XML. -

-

-
Specified by:
toAuthNetPOSTString in interface ITransaction
-
-
- -
Returns:
String to be POSTed to the AuthNet gateway.
-
-
-
- -

-getPaymentProfileList

-
-public java.util.ArrayList<PaymentProfile> getPaymentProfileList()
-
-
-
-
-
- -
Returns:
the paymentProfileList
-
-
-
- -

-setPaymentProfileList

-
-public void setPaymentProfileList(java.util.ArrayList<PaymentProfile> paymentProfileList)
-
-
-
-
-
-
Parameters:
paymentProfileList - the paymentProfileList to set
-
-
-
- -

-addPaymentProfile

-
-public void addPaymentProfile(PaymentProfile paymentProfile)
-
-
Add a payment profile. -

-

-
-
-
-
Parameters:
paymentProfile -
-
-
-
- -

-setShipTo

-
-public void setShipTo(Address shipTo)
-
-
Set shipping information. -

-

-
-
-
-
Parameters:
shipTo -
-
-
-
- -

-getValidationMode

-
-public ValidationModeType getValidationMode()
-
-
Get the validation mode. -

-

-
-
-
- -
Returns:
the validationMode
-
-
-
- -

-setValidationMode

-
-public void setValidationMode(ValidationModeType validationMode)
-
-
Set the validation mode for the request. -

-

-
-
-
-
Parameters:
validationMode - the validationMode to set
-
-
-
- -

-setCustomerProfile

-
-public void setCustomerProfile(CustomerProfile customerProfile)
-
-
Set the customer profile. -

-

-
-
-
-
Parameters:
customerProfile - the customerProfile to set
-
-
-
- -

-setCustomerProfileId

-
-public void setCustomerProfileId(java.lang.String customerProfileId)
-
-
Set the customer profile id. -

-

-
-
-
-
Parameters:
customerProfileId -
-
-
-
- -

-setCustomerPaymentProfileId

-
-public void setCustomerPaymentProfileId(java.lang.String customerPaymentProfileId)
-
-
Set the customer payment profile id. -

-

-
-
-
-
Parameters:
customerPaymentProfileId -
-
-
-
- -

-setCustomerShippingAddressId

-
-public void setCustomerShippingAddressId(java.lang.String customerShippingAddressId)
-
-
Set the customer shipping address id. -

-

-
-
-
-
Parameters:
customerShippingAddressId -
-
-
-
- -

-setCardCode

-
-public void setCardCode(java.lang.String cardCode)
-
-
Set the card code for specific transactions. -

-

-
-
-
-
Parameters:
cardCode -
-
-
-
- -

-setExtraOptions

-
-public void setExtraOptions(java.util.Hashtable<java.lang.String,java.lang.String> extraOptions)
-
-
Sets the extra options. -

-

-
-
-
-
Parameters:
extraOptions - the extraOptions to set
-
-
-
- -

-addExtraOption

-
-public void addExtraOption(java.lang.String key,
-                           java.lang.String value)
-
-
Add extra option to the extra options map. -

-

-
-
-
-
Parameters:
key -
value -
-
-
-
- -

-getSplitTenderId

-
-public java.lang.String getSplitTenderId()
-
-
-
-
-
- -
Returns:
the splitTenderId
-
-
-
- -

-setSplitTenderId

-
-public void setSplitTenderId(java.lang.String splitTenderId)
-
-
-
-
-
-
Parameters:
splitTenderId - the splitTenderId to set
-
-
-
- -

-getSplitTenderStatus

-
-public SplitTenderStatus getSplitTenderStatus()
-
-
-
-
-
- -
Returns:
the splitTenderStatus
-
-
-
- -

-setSplitTenderStatus

-
-public void setSplitTenderStatus(SplitTenderStatus splitTenderStatus)
-
-
-
-
-
-
Parameters:
splitTenderStatus - the splitTenderStatus to set
-
-
-
- -

-getApprovalCode

-
-public java.lang.String getApprovalCode()
-
-
-
-
-
- -
Returns:
the approvalCode
-
-
-
- -

-setApprovalCode

-
-public void setApprovalCode(java.lang.String approvalCode)
-
-
-
-
-
-
Parameters:
approvalCode - the approvalCode to set
-
-
-
- -

-getTransactionId

-
-public java.lang.String getTransactionId()
-
-
-
-
-
- -
Returns:
the transactionId
-
-
-
- -

-setTransactionId

-
-public void setTransactionId(java.lang.String transactionId)
-
-
-
-
-
-
Parameters:
transactionId - the transactionId to set
-
-
-
- -

-getCreditCardNumberMasked

-
-public java.lang.String getCreditCardNumberMasked()
-
-
-
-
-
- -
Returns:
the creditCardNumberMasked
-
-
-
- -

-setCreditCardNumberMasked

-
-public void setCreditCardNumberMasked(java.lang.String creditCardNumberMasked)
-
-
-
-
-
-
Parameters:
creditCardNumberMasked - the creditCardNumberMasked to set
-
-
-
- -

-getBankRoutingNumberMasked

-
-public java.lang.String getBankRoutingNumberMasked()
-
-
-
-
-
- -
Returns:
the bankRoutingNumberMasked
-
-
-
- -

-setBankRoutingNumberMasked

-
-public void setBankRoutingNumberMasked(java.lang.String bankRoutingNumberMasked)
-
-
-
-
-
-
Parameters:
bankRoutingNumberMasked - the bankRoutingNumberMasked to set
-
-
-
- -

-getBankAccountNumberMasked

-
-public java.lang.String getBankAccountNumberMasked()
-
-
-
-
-
- -
Returns:
the bankAccountNumberMasked
-
-
-
- -

-setBankAccountNumberMasked

-
-public void setBankAccountNumberMasked(java.lang.String bankAccountNumberMasked)
-
-
-
-
-
-
Parameters:
bankAccountNumberMasked - the bankAccountNumberMasked to set
-
-
-
- -

-getCardCode

-
-public java.lang.String getCardCode()
-
-
-
-
-
- -
Returns:
the cardCode
-
-
-
- -

-getCustomerPaymentProfileId

-
-public java.lang.String getCustomerPaymentProfileId()
-
-
-
-
-
- -
Returns:
the customerPaymentProfileId
-
-
-
- -

-getCustomerShippingAddressId

-
-public java.lang.String getCustomerShippingAddressId()
-
-
-
-
-
- -
Returns:
the customerShippingAddressId
-
-
-
- -

-getExtraOptions

-
-public java.util.Map<java.lang.String,java.lang.String> getExtraOptions()
-
-
-
-
-
- -
Returns:
the extraOptions
-
-
-
- -

-getPaymentTransactionType

-
-public TransactionType getPaymentTransactionType()
-
-
-
-
-
- -
Returns:
the paymentTransactionType
-
-
-
- -

-setPaymentTransactionType

-
-public void setPaymentTransactionType(TransactionType paymentTransactionType)
-
-
-
-
-
-
Parameters:
paymentTransactionType - the paymentTransactionType to set
-
-
-
- -

-setTransId

-
-public void setTransId(java.lang.String transId)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/TransactionType.html b/docs/javadocs/net/authorize/cim/TransactionType.html deleted file mode 100644 index b366374..0000000 --- a/docs/javadocs/net/authorize/cim/TransactionType.html +++ /dev/null @@ -1,570 +0,0 @@ - - - - - - -TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.cim -
-Enum TransactionType

-
-java.lang.Object
-  extended by java.lang.Enum<TransactionType>
-      extended by net.authorize.cim.TransactionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransactionType>
-
-
-
-
public enum TransactionType
extends java.lang.Enum<TransactionType>
- - -

-Enumeration of CIM transaction types that are supported by Authorize.Net -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
CREATE_CUSTOMER_PAYMENT_PROFILE - -
-           
CREATE_CUSTOMER_PROFILE - -
-           
CREATE_CUSTOMER_PROFILE_TRANSACTION - -
-           
CREATE_CUSTOMER_SHIPPING_ADDRESS - -
-           
DELETE_CUSTOMER_PAYMENT_PROFILE - -
-           
DELETE_CUSTOMER_PROFILE - -
-           
DELETE_CUSTOMER_SHIPPING_ADDRESS - -
-           
GET_CUSTOMER_PAYMENT_PROFILE - -
-           
GET_CUSTOMER_PROFILE - -
-           
GET_CUSTOMER_PROFILE_IDS - -
-           
GET_CUSTOMER_SHIPPING_ADDRESS - -
-           
UPDATE_CUSTOMER_PAYMENT_PROFILE - -
-           
UPDATE_CUSTOMER_PROFILE - -
-           
UPDATE_CUSTOMER_SHIPPING_ADDRESS - -
-           
UPDATE_SPLIT_TENDER_GROUP - -
-           
VALIDATE_CUSTOMER_PAYMENT_PROFILE - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetValue() - -
-           
-static TransactionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-CREATE_CUSTOMER_PROFILE

-
-public static final TransactionType CREATE_CUSTOMER_PROFILE
-
-
-
-
-
- -

-CREATE_CUSTOMER_PAYMENT_PROFILE

-
-public static final TransactionType CREATE_CUSTOMER_PAYMENT_PROFILE
-
-
-
-
-
- -

-CREATE_CUSTOMER_SHIPPING_ADDRESS

-
-public static final TransactionType CREATE_CUSTOMER_SHIPPING_ADDRESS
-
-
-
-
-
- -

-CREATE_CUSTOMER_PROFILE_TRANSACTION

-
-public static final TransactionType CREATE_CUSTOMER_PROFILE_TRANSACTION
-
-
-
-
-
- -

-DELETE_CUSTOMER_PROFILE

-
-public static final TransactionType DELETE_CUSTOMER_PROFILE
-
-
-
-
-
- -

-DELETE_CUSTOMER_PAYMENT_PROFILE

-
-public static final TransactionType DELETE_CUSTOMER_PAYMENT_PROFILE
-
-
-
-
-
- -

-DELETE_CUSTOMER_SHIPPING_ADDRESS

-
-public static final TransactionType DELETE_CUSTOMER_SHIPPING_ADDRESS
-
-
-
-
-
- -

-GET_CUSTOMER_PROFILE_IDS

-
-public static final TransactionType GET_CUSTOMER_PROFILE_IDS
-
-
-
-
-
- -

-GET_CUSTOMER_PROFILE

-
-public static final TransactionType GET_CUSTOMER_PROFILE
-
-
-
-
-
- -

-GET_CUSTOMER_PAYMENT_PROFILE

-
-public static final TransactionType GET_CUSTOMER_PAYMENT_PROFILE
-
-
-
-
-
- -

-GET_CUSTOMER_SHIPPING_ADDRESS

-
-public static final TransactionType GET_CUSTOMER_SHIPPING_ADDRESS
-
-
-
-
-
- -

-UPDATE_CUSTOMER_PROFILE

-
-public static final TransactionType UPDATE_CUSTOMER_PROFILE
-
-
-
-
-
- -

-UPDATE_CUSTOMER_PAYMENT_PROFILE

-
-public static final TransactionType UPDATE_CUSTOMER_PAYMENT_PROFILE
-
-
-
-
-
- -

-UPDATE_CUSTOMER_SHIPPING_ADDRESS

-
-public static final TransactionType UPDATE_CUSTOMER_SHIPPING_ADDRESS
-
-
-
-
-
- -

-UPDATE_SPLIT_TENDER_GROUP

-
-public static final TransactionType UPDATE_SPLIT_TENDER_GROUP
-
-
-
-
-
- -

-VALIDATE_CUSTOMER_PAYMENT_PROFILE

-
-public static final TransactionType VALIDATE_CUSTOMER_PAYMENT_PROFILE
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static TransactionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (TransactionType c : TransactionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static TransactionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/ValidationModeType.html b/docs/javadocs/net/authorize/cim/ValidationModeType.html deleted file mode 100644 index 57f2aa3..0000000 --- a/docs/javadocs/net/authorize/cim/ValidationModeType.html +++ /dev/null @@ -1,358 +0,0 @@ - - - - - - -ValidationModeType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.cim -
-Enum ValidationModeType

-
-java.lang.Object
-  extended by java.lang.Enum<ValidationModeType>
-      extended by net.authorize.cim.ValidationModeType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ValidationModeType>
-
-
-
-
public enum ValidationModeType
extends java.lang.Enum<ValidationModeType>
- - -

-


- -

- - - - - - - - - - - - - - - - -
-Enum Constant Summary
LIVE_MODE - -
-           
NONE - -
-           
TEST_MODE - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetValue() - -
-           
-static ValidationModeTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ValidationModeType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-NONE

-
-public static final ValidationModeType NONE
-
-
-
-
-
- -

-TEST_MODE

-
-public static final ValidationModeType TEST_MODE
-
-
-
-
-
- -

-LIVE_MODE

-
-public static final ValidationModeType LIVE_MODE
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static ValidationModeType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (ValidationModeType c : ValidationModeType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static ValidationModeType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/class-use/Result.html b/docs/javadocs/net/authorize/cim/class-use/Result.html deleted file mode 100644 index 542a626..0000000 --- a/docs/javadocs/net/authorize/cim/class-use/Result.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.cim.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.cim.Result

-
- - - - - - - - - -
-Packages that use Result
net.authorize.cim  
-  -

- - - - - -
-Uses of Result in net.authorize.cim
-  -

- - - - - - - - - -
Methods in net.authorize.cim that return Result
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/class-use/SplitTenderStatus.html b/docs/javadocs/net/authorize/cim/class-use/SplitTenderStatus.html deleted file mode 100644 index ac29a82..0000000 --- a/docs/javadocs/net/authorize/cim/class-use/SplitTenderStatus.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - -Uses of Class net.authorize.cim.SplitTenderStatus (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.cim.SplitTenderStatus

-
- - - - - - - - - -
-Packages that use SplitTenderStatus
net.authorize.cim  
-  -

- - - - - -
-Uses of SplitTenderStatus in net.authorize.cim
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.cim that return SplitTenderStatus
- SplitTenderStatusTransaction.getSplitTenderStatus() - -
-           
-static SplitTenderStatusSplitTenderStatus.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static SplitTenderStatus[]SplitTenderStatus.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type SplitTenderStatus
- voidTransaction.setSplitTenderStatus(SplitTenderStatus splitTenderStatus) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/class-use/Transaction.html b/docs/javadocs/net/authorize/cim/class-use/Transaction.html deleted file mode 100644 index f733b95..0000000 --- a/docs/javadocs/net/authorize/cim/class-use/Transaction.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - -Uses of Class net.authorize.cim.Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.cim.Transaction

-
- - - - - - - - - - - - - -
-Packages that use Transaction
net.authorize  
net.authorize.cim  
-  -

- - - - - -
-Uses of Transaction in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return Transaction
- TransactionMerchant.createCIMTransaction(TransactionType transactionType) - -
-          Creates a new CIM Transaction.
-  -

- - - - - -
-Uses of Transaction in net.authorize.cim
-  -

- - - - - - - - - -
Methods in net.authorize.cim that return Transaction
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/class-use/TransactionType.html b/docs/javadocs/net/authorize/cim/class-use/TransactionType.html deleted file mode 100644 index b898f74..0000000 --- a/docs/javadocs/net/authorize/cim/class-use/TransactionType.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - -Uses of Class net.authorize.cim.TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.cim.TransactionType

-
- - - - - - - - - - - - - -
-Packages that use TransactionType
net.authorize  
net.authorize.cim  
-  -

- - - - - -
-Uses of TransactionType in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type TransactionType
- TransactionMerchant.createCIMTransaction(TransactionType transactionType) - -
-          Creates a new CIM Transaction.
-  -

- - - - - -
-Uses of TransactionType in net.authorize.cim
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.cim that return TransactionType
- TransactionTypeTransaction.getTransactionType() - -
-           
-static TransactionTypeTransactionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]TransactionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type TransactionType
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

- - - - - - - - -
Constructors in net.authorize.cim with parameters of type TransactionType
Transaction(Merchant merchant, - TransactionType transactionType) - -
-          Private constructor.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/class-use/ValidationModeType.html b/docs/javadocs/net/authorize/cim/class-use/ValidationModeType.html deleted file mode 100644 index 8cd8b51..0000000 --- a/docs/javadocs/net/authorize/cim/class-use/ValidationModeType.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - -Uses of Class net.authorize.cim.ValidationModeType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.cim.ValidationModeType

-
- - - - - - - - - -
-Packages that use ValidationModeType
net.authorize.cim  
-  -

- - - - - -
-Uses of ValidationModeType in net.authorize.cim
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.cim that return ValidationModeType
- ValidationModeTypeTransaction.getValidationMode() - -
-          Get the validation mode.
-static ValidationModeTypeValidationModeType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ValidationModeType[]ValidationModeType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type ValidationModeType
- voidTransaction.setValidationMode(ValidationModeType validationMode) - -
-          Set the validation mode for the request.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/package-frame.html b/docs/javadocs/net/authorize/cim/package-frame.html deleted file mode 100644 index d24bd0a..0000000 --- a/docs/javadocs/net/authorize/cim/package-frame.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - -net.authorize.cim (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.cim - - - - -
-Classes  - -
-Result -
-Transaction
- - - - - - -
-Enums  - -
-SplitTenderStatus -
-TransactionType -
-ValidationModeType
- - - - diff --git a/docs/javadocs/net/authorize/cim/package-summary.html b/docs/javadocs/net/authorize/cim/package-summary.html deleted file mode 100644 index 12959a6..0000000 --- a/docs/javadocs/net/authorize/cim/package-summary.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - -net.authorize.cim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.cim -

- - - - - - - - - - - - - -
-Class Summary
ResultWrapper container for passing back the result from the gateway request.
TransactionTransaction object for CIM.
-  - -

- - - - - - - - - - - - - - - - - -
-Enum Summary
SplitTenderStatus 
TransactionTypeEnumeration of CIM transaction types that are supported by Authorize.Net
ValidationModeType 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/package-tree.html b/docs/javadocs/net/authorize/cim/package-tree.html deleted file mode 100644 index 2014fbe..0000000 --- a/docs/javadocs/net/authorize/cim/package-tree.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -net.authorize.cim Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.cim -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object -
-

-Enum Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/cim/package-use.html b/docs/javadocs/net/authorize/cim/package-use.html deleted file mode 100644 index e0be0c2..0000000 --- a/docs/javadocs/net/authorize/cim/package-use.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - -Uses of Package net.authorize.cim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.cim

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.cim
net.authorize  
net.authorize.cim  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.cim used by net.authorize
Transaction - -
-          Transaction object for CIM.
TransactionType - -
-          Enumeration of CIM transaction types that are supported by Authorize.Net
-  -

- - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize.cim used by net.authorize.cim
Result - -
-          Wrapper container for passing back the result from the gateway request.
SplitTenderStatus - -
-           
Transaction - -
-          Transaction object for CIM.
TransactionType - -
-          Enumeration of CIM transaction types that are supported by Authorize.Net
ValidationModeType - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/AuthNetField.html b/docs/javadocs/net/authorize/class-use/AuthNetField.html deleted file mode 100644 index e979215..0000000 --- a/docs/javadocs/net/authorize/class-use/AuthNetField.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - -Uses of Class net.authorize.AuthNetField (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.AuthNetField

-
- - - - - - - - - -
-Packages that use AuthNetField
net.authorize  
-  -

- - - - - -
-Uses of AuthNetField in net.authorize
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return AuthNetField
-static AuthNetFieldAuthNetField.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static AuthNetField[]AuthNetField.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/Environment.html b/docs/javadocs/net/authorize/class-use/Environment.html deleted file mode 100644 index 4696596..0000000 --- a/docs/javadocs/net/authorize/class-use/Environment.html +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - -Uses of Class net.authorize.Environment (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.Environment

-
- - - - - - - - - - - - - - - - - -
-Packages that use Environment
net.authorize  
net.authorize.sim  
net.authorize.util  
-  -

- - - - - -
-Uses of Environment in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as Environment
-protected  EnvironmentNVPTransaction.environment - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize that return Environment
-static EnvironmentEnvironment.createEnvironment(java.lang.String nvpBaseUrl, - java.lang.String xmlBaseUrl) - -
-          If a custom environment needs to be supported, this convenience create - method can be used to pass in custom URLS for NVP and xml gateways.
- EnvironmentMerchant.getEnvironment() - -
-          Get the Environment that transactions will be posted against.
- EnvironmentNVPTransaction.getEnvironment() - -
-           
-static EnvironmentEnvironment.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static Environment[]Environment.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize with parameters of type Environment
-static MerchantMerchant.createMerchant(Environment environment, - IMerchantAuthentication merchantAuthenticator) - -
-           
-static MerchantMerchant.createMerchant(Environment environment, - IMerchantAuthentication merchantAuthenticator, - java.lang.String md5Value) - -
-           
- voidMerchant.setEnvironment(Environment environment) - -
-          Set the environment that transactions will be posted against.
-  -

- - - - - -
-Uses of Environment in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return Environment
- EnvironmentTransaction.getEnvironment() - -
-           
-  -

- - - - - -
-Uses of Environment in net.authorize.util
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.util with parameters of type Environment
-static java.util.Map<ResponseField,java.lang.String>HttpClient.execute(Environment environment, - ITransaction transaction) - -
-          Executes a Transaction against a given Environment.
-static java.lang.StringHttpClient.executeXML(Environment environment, - ITransaction transaction) - -
-          Executes a Transaction against a given Environment.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/ITransaction.html b/docs/javadocs/net/authorize/class-use/ITransaction.html deleted file mode 100644 index 0ba4173..0000000 --- a/docs/javadocs/net/authorize/class-use/ITransaction.html +++ /dev/null @@ -1,625 +0,0 @@ - - - - - - -Uses of Interface net.authorize.ITransaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Interface
net.authorize.ITransaction

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use ITransaction
net.authorize  
net.authorize.aim  
net.authorize.arb  
net.authorize.cim  
net.authorize.mobile  
net.authorize.notification  
net.authorize.reporting  
net.authorize.util  
net.authorize.xml  
-  -

- - - - - -
-Uses of ITransaction in net.authorize
-  -

- - - - - - - - - -
Classes in net.authorize that implement ITransaction
- classNVPTransaction - -
-           
-  -

- - - - - - - - - -
Fields in net.authorize declared as ITransaction
-protected  ITransactionResult.requestTransaction - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize that return ITransaction
- ITransactionResult.getRequestTransaction() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type ITransaction
- ResultMerchant.postTransaction(ITransaction transaction) - -
-          Post a Transaction request to the payment gateway.
-  -

- - - - - -
-Uses of ITransaction in net.authorize.aim
-  -

- - - - - - - - - -
Classes in net.authorize.aim that implement ITransaction
- classTransaction - -
-          Container to hold all payment related information that gets passed back and - forth to the payment gateway.
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type ITransaction
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-          Create a Result from the request and response data.
-  -

- - - - - - - - -
Constructors in net.authorize.aim with parameters of type ITransaction
Result(ITransaction requestTransaction, - java.lang.String response) - -
-          Result constructor.
-  -

- - - - - -
-Uses of ITransaction in net.authorize.arb
-  -

- - - - - - - - - -
Methods in net.authorize.arb with parameters of type ITransaction
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - - - - -
Constructors in net.authorize.arb with parameters of type ITransaction
Result(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - -
-Uses of ITransaction in net.authorize.cim
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type ITransaction
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - - - - -
Constructors in net.authorize.cim with parameters of type ITransaction
Result(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - -
-Uses of ITransaction in net.authorize.mobile
-  -

- - - - - - - - - -
Methods in net.authorize.mobile with parameters of type ITransaction
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - - - - -
Constructors in net.authorize.mobile with parameters of type ITransaction
Result(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - -
-Uses of ITransaction in net.authorize.notification
-  -

- - - - - - - - - -
Methods in net.authorize.notification with parameters of type ITransaction
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - - - - -
Constructors in net.authorize.notification with parameters of type ITransaction
Result(ITransaction requestTransaction, - java.lang.String response) - -
-          Result constructor.
-  -

- - - - - -
-Uses of ITransaction in net.authorize.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.reporting with parameters of type ITransaction
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - - - - -
Constructors in net.authorize.reporting with parameters of type ITransaction
Result(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

- - - - - -
-Uses of ITransaction in net.authorize.util
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.util with parameters of type ITransaction
-static java.lang.StringHttpClient.convertStreamToLoggableString(ITransaction transaction, - java.io.InputStream responseInputStream) - -
-          Converts a response inputstream into a string.
-static java.util.Map<ResponseField,java.lang.String>HttpClient.execute(Environment environment, - ITransaction transaction) - -
-          Executes a Transaction against a given Environment.
-static java.lang.StringHttpClient.executeXML(Environment environment, - ITransaction transaction) - -
-          Executes a Transaction against a given Environment.
-  -

- - - - - -
-Uses of ITransaction in net.authorize.xml
-  -

- - - - - - - - - -
Classes in net.authorize.xml that implement ITransaction
- classXMLTransaction - -
-          Contains all the necessary core components used in building an XML based - transaction.
-  -

- - - - - - - - - -
Methods in net.authorize.xml with parameters of type ITransaction
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-          Create a Result from the request and response data.
-  -

- - - - - - - - -
Constructors in net.authorize.xml with parameters of type ITransaction
Result(ITransaction requestTransaction, - java.lang.String response) - -
-          Result constructor.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/Merchant.html b/docs/javadocs/net/authorize/class-use/Merchant.html deleted file mode 100644 index fd1c87d..0000000 --- a/docs/javadocs/net/authorize/class-use/Merchant.html +++ /dev/null @@ -1,560 +0,0 @@ - - - - - - -Uses of Class net.authorize.Merchant (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.Merchant

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use Merchant
net.authorize  
net.authorize.aim  
net.authorize.arb  
net.authorize.cim  
net.authorize.mobile  
net.authorize.notification  
net.authorize.reporting  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of Merchant in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as Merchant
-protected  MerchantNVPTransaction.merchant - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize that return Merchant
-static MerchantMerchant.createMerchant(Environment environment, - IMerchantAuthentication merchantAuthenticator) - -
-           
-static MerchantMerchant.createMerchant(Environment environment, - IMerchantAuthentication merchantAuthenticator, - java.lang.String md5Value) - -
-           
- MerchantITransaction.getMerchant() - -
-           
- MerchantNVPTransaction.getMerchant() - -
-          Return the Merchant container.
-  -

- - - - - -
-Uses of Merchant in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type Merchant
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-           
-  -

- - - - - - - - -
Constructors in net.authorize.aim with parameters of type Merchant
Transaction(Merchant merchant, - TransactionType transactionType) - -
-          Constructor for creation a transaction with typed objects.
-  -

- - - - - -
-Uses of Merchant in net.authorize.arb
-  -

- - - - - - - - - -
Methods in net.authorize.arb with parameters of type Merchant
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - Subscription subscription) - -
-          Creates a transaction.
-  -

- - - - - -
-Uses of Merchant in net.authorize.cim
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type Merchant
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

- - - - - - - - -
Constructors in net.authorize.cim with parameters of type Merchant
Transaction(Merchant merchant, - TransactionType transactionType) - -
-          Private constructor.
-  -

- - - - - -
-Uses of Merchant in net.authorize.mobile
-  -

- - - - - - - - - -
Methods in net.authorize.mobile with parameters of type Merchant
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

- - - - - -
-Uses of Merchant in net.authorize.notification
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.notification with parameters of type Merchant
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Create a transaction.
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.lang.String transId, - java.lang.String customerEmail, - EmailReceipt emailReceiptSettings) - -
-          Create a transaction.
-  -

- - - - - -
-Uses of Merchant in net.authorize.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.reporting with parameters of type Merchant
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

- - - - - -
-Uses of Merchant in net.authorize.sim
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.sim with parameters of type Merchant
-static FingerprintFingerprint.createFingerprint(Merchant merchant, - long sequence, - java.math.BigDecimal amount) - -
-          Create a fingerprint with object based fields.
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Create a Transaction for a merchant.
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - long fingerPrintSequence, - java.math.BigDecimal amount) - -
-          Create a Transaction for a given merchant.
-  -

- - - - - - - - -
Constructors in net.authorize.sim with parameters of type Merchant
Transaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Constructor for creation a transaction with typed objects.
-  -

- - - - - -
-Uses of Merchant in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as Merchant
-protected  MerchantXMLTransaction.merchant - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return Merchant
- MerchantXMLTransaction.getMerchant() - -
-          Return the Merchant container.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/NVPTransaction.html b/docs/javadocs/net/authorize/class-use/NVPTransaction.html deleted file mode 100644 index ce0fdac..0000000 --- a/docs/javadocs/net/authorize/class-use/NVPTransaction.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - -Uses of Class net.authorize.NVPTransaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.NVPTransaction

-
- - - - - - - - - -
-Packages that use NVPTransaction
net.authorize.sim  
-  -

- - - - - -
-Uses of NVPTransaction in net.authorize.sim
-  -

- - - - - - - - - -
Subclasses of NVPTransaction in net.authorize.sim
- classTransaction - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/ResponseCode.html b/docs/javadocs/net/authorize/class-use/ResponseCode.html deleted file mode 100644 index 330f51d..0000000 --- a/docs/javadocs/net/authorize/class-use/ResponseCode.html +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - -Uses of Class net.authorize.ResponseCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.ResponseCode

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use ResponseCode
net.authorize  
net.authorize.aim  
net.authorize.data.aim  
net.authorize.data.reporting  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of ResponseCode in net.authorize
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize that return ResponseCode
-static ResponseCodeResponseCode.findByResponseCode(int code) - -
-          Lookup a ResponseCode by it's response code.
-static ResponseCodeResponseCode.findByResponseCode(java.lang.String code) - -
-          Lookup a ResponseCode by it's response code.
- ResponseCodeResponseReasonCode.getResponseCode() - -
-           
-static ResponseCodeResponseCode.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ResponseCode[]ResponseCode.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - -
-Uses of ResponseCode in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return ResponseCode
- ResponseCodeResult.getResponseCode() - -
-          Return the ResponseCode
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type ResponseCode
- voidResult.setResponseCode(ResponseCode responseCode) - -
-          Set the response code.
-  -

- - - - - -
-Uses of ResponseCode in net.authorize.data.aim
-  -

- - - - - - - - - -
Methods in net.authorize.data.aim that return ResponseCode
- ResponseCodeSplitTenderPayment.getResponseCode() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.aim with parameters of type ResponseCode
- voidSplitTenderPayment.setResponseCode(ResponseCode responseCode) - -
-           
-  -

- - - - - -
-Uses of ResponseCode in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return ResponseCode
- ResponseCodeTransactionDetails.getResponseCode() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type ResponseCode
- voidTransactionDetails.setResponseCode(ResponseCode responseCode) - -
-           
-  -

- - - - - -
-Uses of ResponseCode in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return ResponseCode
- ResponseCodeResult.getResponseCode() - -
-           
-  -

- - - - - -
-Uses of ResponseCode in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as ResponseCode
-protected  ResponseCodeResult.responseCode - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/ResponseField.html b/docs/javadocs/net/authorize/class-use/ResponseField.html deleted file mode 100644 index a7e9971..0000000 --- a/docs/javadocs/net/authorize/class-use/ResponseField.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - -Uses of Class net.authorize.ResponseField (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.ResponseField

-
- - - - - - - - - - - - - - - - - - - - - -
-Packages that use ResponseField
net.authorize  
net.authorize.data.cim  
net.authorize.sim  
net.authorize.util  
-  -

- - - - - -
-Uses of ResponseField in net.authorize
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize that return ResponseField
-static ResponseFieldResponseField.findByFieldName(java.lang.String fieldName) - -
-          Lookup a ResponseField by it's field name.
-static ResponseFieldResponseField.get(int order) - -
-          Get the ResponseField identified by the order specified.
-static ResponseFieldResponseField.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ResponseField[]ResponseField.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - -
-Uses of ResponseField in net.authorize.data.cim
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim that return types with arguments of type ResponseField
- java.util.Map<ResponseField,java.lang.String>DirectResponse.getDirectResponseMap() - -
-           
-  -

- - - - - -
-Uses of ResponseField in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return types with arguments of type ResponseField
- java.util.Map<ResponseField,java.lang.String>Transaction.getResponseMap() - -
-          Return the payment gateway response data map.
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type ResponseField
- java.lang.StringTransaction.getResponseField(ResponseField responseField) - -
-          Returns the payment gateway response data for a specific ResponseField.
-  -

- - - - - - - - - - - - - -
Method parameters in net.authorize.sim with type arguments of type ResponseField
-static ResultResult.createResult(java.util.Map<ResponseField,java.lang.String> responseMap) - -
-           
-static TransactionTransaction.createTransaction(Transaction transaction, - java.util.Hashtable<ResponseField,java.lang.String> responseMap) - -
-          Create a transaction from a responseMap.
-  -

- - - - - -
-Uses of ResponseField in net.authorize.util
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.util that return types with arguments of type ResponseField
-static java.util.Map<ResponseField,java.lang.String>HttpClient.execute(Environment environment, - ITransaction transaction) - -
-          Executes a Transaction against a given Environment.
-static java.util.Map<ResponseField,java.lang.String>ResponseParser.parseResponseString(java.lang.String responseString) - -
-          Take a string and parses it into a Map keyed on ResponseFields.
-static java.util.Map<ResponseField,java.lang.String>ResponseParser.parseResponseString(java.lang.String responseString, - java.lang.String delimiter) - -
-          Take a string and parses it into a Map keyed on ResponseFields.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/ResponseReasonCode.html b/docs/javadocs/net/authorize/class-use/ResponseReasonCode.html deleted file mode 100644 index ec3bdc0..0000000 --- a/docs/javadocs/net/authorize/class-use/ResponseReasonCode.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - -Uses of Class net.authorize.ResponseReasonCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.ResponseReasonCode

-
- - - - - - - - - - - - - - - - - - - - - -
-Packages that use ResponseReasonCode
net.authorize  
net.authorize.aim  
net.authorize.data.reporting  
net.authorize.sim  
-  -

- - - - - -
-Uses of ResponseReasonCode in net.authorize
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize that return ResponseReasonCode
-static ResponseReasonCodeResponseReasonCode.findByReasonCode(int reasonCode) - -
-          Lookup a response reason code by the reason response code itself.
-static ResponseReasonCodeResponseReasonCode.findByReasonCode(java.lang.String reasonCode) - -
-          Lookup a response reason code by the reason response code itself.
-static ResponseReasonCodeResponseReasonCode.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ResponseReasonCode[]ResponseReasonCode.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - -
-Uses of ResponseReasonCode in net.authorize.aim
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.aim that return types with arguments of type ResponseReasonCode
- java.util.ArrayList<ResponseReasonCode>Result.getTransactionResponseErrors() - -
-          Returns a list of transaction response errors.
- java.util.ArrayList<ResponseReasonCode>Result.getTransactionResponseMessages() - -
-          Return the transaction response messages.
-  -

- - - - - - - - - - - - - -
Method parameters in net.authorize.aim with type arguments of type ResponseReasonCode
- voidResult.setTransactionResponseErrors(java.util.ArrayList<ResponseReasonCode> errors) - -
-          Sets the transaction response errors.
- voidResult.setTransactionResponseMessages(java.util.ArrayList<ResponseReasonCode> transactionResponseMessages) - -
-          Set the transaction response messages.
-  -

- - - - - -
-Uses of ResponseReasonCode in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return ResponseReasonCode
- ResponseReasonCodeTransactionDetails.getResponseReasonCode() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type ResponseReasonCode
- voidTransactionDetails.setResponseReasonCode(ResponseReasonCode responseReasonCode) - -
-           
-  -

- - - - - -
-Uses of ResponseReasonCode in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return ResponseReasonCode
- ResponseReasonCodeResult.getReasonResponseCode() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/Result.html b/docs/javadocs/net/authorize/class-use/Result.html deleted file mode 100644 index c426572..0000000 --- a/docs/javadocs/net/authorize/class-use/Result.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - -Uses of Class net.authorize.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.Result

-
- - - - - - - - - - - - - -
-Packages that use Result
net.authorize  
net.authorize.xml  
-  -

- - - - - -
-Uses of Result in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return Result
- ResultMerchant.postTransaction(ITransaction transaction) - -
-          Post a Transaction request to the payment gateway.
-  -

- - - - - -
-Uses of Result in net.authorize.xml
-  -

- - - - - - - - - -
Subclasses of Result in net.authorize.xml
- classResult - -
-          Wrapper container for passing back the result from the XML gateway request.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/class-use/TransactionType.html b/docs/javadocs/net/authorize/class-use/TransactionType.html deleted file mode 100644 index 92d4af8..0000000 --- a/docs/javadocs/net/authorize/class-use/TransactionType.html +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - -Uses of Class net.authorize.TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.TransactionType

-
- - - - - - - - - - - - - - - - - - - - - -
-Packages that use TransactionType
net.authorize  
net.authorize.aim  
net.authorize.cim  
net.authorize.sim  
-  -

- - - - - -
-Uses of TransactionType in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as TransactionType
-protected  TransactionTypeNVPTransaction.transactionType - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return TransactionType
-static TransactionTypeTransactionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]TransactionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - - - - - -
Methods in net.authorize with parameters of type TransactionType
- TransactionMerchant.createAIMTransaction(TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Creates a new AIM Transaction (includes Card Present)
- TransactionMerchant.createSIMTransaction(TransactionType transactionType, - long fingerPrintSequence, - java.math.BigDecimal amount) - -
-          Creates a new SIM Transaction.
-  -

- - - - - -
-Uses of TransactionType in net.authorize.aim
-  -

- - - - - - - - - -
Fields in net.authorize.aim declared as TransactionType
-protected  TransactionTypeTransaction.transactionType - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type TransactionType
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-           
-  -

- - - - - - - - -
Constructors in net.authorize.aim with parameters of type TransactionType
Transaction(Merchant merchant, - TransactionType transactionType) - -
-          Constructor for creation a transaction with typed objects.
-  -

- - - - - -
-Uses of TransactionType in net.authorize.cim
-  -

- - - - - - - - - -
Methods in net.authorize.cim that return TransactionType
- TransactionTypeTransaction.getPaymentTransactionType() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type TransactionType
- voidTransaction.setPaymentTransactionType(TransactionType paymentTransactionType) - -
-           
-  -

- - - - - -
-Uses of TransactionType in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return TransactionType
- TransactionTypeTransaction.getTransactionType() - -
-          Get the transaction type.
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.sim with parameters of type TransactionType
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Create a Transaction for a merchant.
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - long fingerPrintSequence, - java.math.BigDecimal amount) - -
-          Create a Transaction for a given merchant.
-  -

- - - - - - - - -
Constructors in net.authorize.sim with parameters of type TransactionType
Transaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Constructor for creation a transaction with typed objects.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/Address.html b/docs/javadocs/net/authorize/data/Address.html deleted file mode 100644 index 3239897..0000000 --- a/docs/javadocs/net/authorize/data/Address.html +++ /dev/null @@ -1,1120 +0,0 @@ - - - - - - -Address (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class Address

-
-java.lang.Object
-  extended by net.authorize.data.Address
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
Direct Known Subclasses:
ShippingAddress
-
-
-
-
public class Address
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  java.lang.Stringaddress - -
-           
-protected  java.lang.StringaddressId - -
-           
-protected  java.lang.Stringcity - -
-           
-protected  java.lang.Stringcompany - -
-           
-protected  java.lang.Stringcountry - -
-           
-protected  java.lang.StringfaxNumber - -
-           
-protected  java.lang.StringfirstName - -
-           
-protected  java.lang.StringlastName - -
-           
-static intMAX_ADDRESS_LENGTH - -
-           
-static intMAX_CITY_LENGTH - -
-           
-static intMAX_COMPANY_LENGTH - -
-           
-static intMAX_COUNTRY_LENGTH - -
-           
-static intMAX_FIRST_NAME_LENGTH - -
-           
-static intMAX_LAST_NAME_LENGTH - -
-           
-static intMAX_STATE_LENGTH - -
-           
-static intMAX_ZIP_LENGTH - -
-           
-protected  java.lang.StringphoneNumber - -
-           
-protected  java.lang.Stringstate - -
-           
-protected  java.lang.StringzipPostalCode - -
-           
-  - - - - - - - - - - - -
-Constructor Summary
-protected Address() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static AddresscreateAddress() - -
-           
- java.lang.StringgetAddress() - -
-           
- java.lang.StringgetAddressId() - -
-           
- java.lang.StringgetCity() - -
-           
- java.lang.StringgetCompany() - -
-           
- java.lang.StringgetCountry() - -
-           
- java.lang.StringgetFaxNumber() - -
-           
- java.lang.StringgetFirstName() - -
-           
- java.lang.StringgetLastName() - -
-           
- java.lang.StringgetPhoneNumber() - -
-           
- java.lang.StringgetState() - -
-           
- java.lang.StringgetZipPostalCode() - -
-           
- voidsetAddress(java.lang.String address) - -
-           
- voidsetAddressId(java.lang.String addressId) - -
-           
- voidsetCity(java.lang.String city) - -
-           
- voidsetCompany(java.lang.String company) - -
-           
- voidsetCountry(java.lang.String country) - -
-           
- voidsetFaxNumber(java.lang.String faxNumber) - -
-           
- voidsetFirstName(java.lang.String firstName) - -
-           
- voidsetLastName(java.lang.String lastName) - -
-           
- voidsetPhoneNumber(java.lang.String phoneNumber) - -
-           
- voidsetState(java.lang.String state) - -
-           
- voidsetZipPostalCode(java.lang.String zipPostalCode) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-MAX_FIRST_NAME_LENGTH

-
-public static final int MAX_FIRST_NAME_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_LAST_NAME_LENGTH

-
-public static final int MAX_LAST_NAME_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_COMPANY_LENGTH

-
-public static final int MAX_COMPANY_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_ADDRESS_LENGTH

-
-public static final int MAX_ADDRESS_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_CITY_LENGTH

-
-public static final int MAX_CITY_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_STATE_LENGTH

-
-public static final int MAX_STATE_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_ZIP_LENGTH

-
-public static final int MAX_ZIP_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_COUNTRY_LENGTH

-
-public static final int MAX_COUNTRY_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-firstName

-
-protected java.lang.String firstName
-
-
-
-
-
- -

-lastName

-
-protected java.lang.String lastName
-
-
-
-
-
- -

-company

-
-protected java.lang.String company
-
-
-
-
-
- -

-address

-
-protected java.lang.String address
-
-
-
-
-
- -

-city

-
-protected java.lang.String city
-
-
-
-
-
- -

-state

-
-protected java.lang.String state
-
-
-
-
-
- -

-zipPostalCode

-
-protected java.lang.String zipPostalCode
-
-
-
-
-
- -

-country

-
-protected java.lang.String country
-
-
-
-
-
- -

-phoneNumber

-
-protected java.lang.String phoneNumber
-
-
-
-
-
- -

-faxNumber

-
-protected java.lang.String faxNumber
-
-
-
-
-
- -

-addressId

-
-protected java.lang.String addressId
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Address

-
-protected Address()
-
-
- - - - - - - - -
-Method Detail
- -

-createAddress

-
-public static Address createAddress()
-
-
-
-
-
-
-
-
-
- -

-getFirstName

-
-public java.lang.String getFirstName()
-
-
-
-
-
- -
Returns:
the firstName
-
-
-
- -

-setFirstName

-
-public void setFirstName(java.lang.String firstName)
-
-
-
-
-
-
Parameters:
firstName - the firstName to set
-
-
-
- -

-getLastName

-
-public java.lang.String getLastName()
-
-
-
-
-
- -
Returns:
the lastName
-
-
-
- -

-setLastName

-
-public void setLastName(java.lang.String lastName)
-
-
-
-
-
-
Parameters:
lastName - the lastName to set
-
-
-
- -

-getCompany

-
-public java.lang.String getCompany()
-
-
-
-
-
- -
Returns:
the company
-
-
-
- -

-setCompany

-
-public void setCompany(java.lang.String company)
-
-
-
-
-
-
Parameters:
company - the company to set
-
-
-
- -

-getAddress

-
-public java.lang.String getAddress()
-
-
-
-
-
- -
Returns:
the address
-
-
-
- -

-setAddress

-
-public void setAddress(java.lang.String address)
-
-
-
-
-
-
Parameters:
address - the address to set
-
-
-
- -

-getCity

-
-public java.lang.String getCity()
-
-
-
-
-
- -
Returns:
the city
-
-
-
- -

-setCity

-
-public void setCity(java.lang.String city)
-
-
-
-
-
-
Parameters:
city - the city to set
-
-
-
- -

-getState

-
-public java.lang.String getState()
-
-
-
-
-
- -
Returns:
the state
-
-
-
- -

-setState

-
-public void setState(java.lang.String state)
-
-
-
-
-
-
Parameters:
state - the state to set
-
-
-
- -

-getZipPostalCode

-
-public java.lang.String getZipPostalCode()
-
-
-
-
-
- -
Returns:
the zipPostalCode
-
-
-
- -

-setZipPostalCode

-
-public void setZipPostalCode(java.lang.String zipPostalCode)
-
-
-
-
-
-
Parameters:
zipPostalCode - the zip / postal code to set
-
-
-
- -

-getCountry

-
-public java.lang.String getCountry()
-
-
-
-
-
- -
Returns:
the country
-
-
-
- -

-setCountry

-
-public void setCountry(java.lang.String country)
-
-
-
-
-
-
Parameters:
country - the country to set
-
-
-
- -

-getPhoneNumber

-
-public java.lang.String getPhoneNumber()
-
-
-
-
-
- -
Returns:
the phoneNumber
-
-
-
- -

-setPhoneNumber

-
-public void setPhoneNumber(java.lang.String phoneNumber)
-
-
-
-
-
-
Parameters:
phoneNumber - the phoneNumber to set
-
-
-
- -

-getFaxNumber

-
-public java.lang.String getFaxNumber()
-
-
-
-
-
- -
Returns:
the faxNumber
-
-
-
- -

-setFaxNumber

-
-public void setFaxNumber(java.lang.String faxNumber)
-
-
-
-
-
-
Parameters:
faxNumber - the faxNumber to set
-
-
-
- -

-getAddressId

-
-public java.lang.String getAddressId()
-
-
-
-
-
- -
Returns:
the addressId
-
-
-
- -

-setAddressId

-
-public void setAddressId(java.lang.String addressId)
-
-
-
-
-
-
Parameters:
addressId - the addressId to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/Customer.html b/docs/javadocs/net/authorize/data/Customer.html deleted file mode 100644 index 0d4ede4..0000000 --- a/docs/javadocs/net/authorize/data/Customer.html +++ /dev/null @@ -1,1393 +0,0 @@ - - - - - - -Customer (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class Customer

-
-java.lang.Object
-  extended by net.authorize.data.Customer
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Customer
extends java.lang.Object
implements java.io.Serializable
- - -

-Customer specific information. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static intMAX_ADDRES_LENGTH - -
-           
-static intMAX_CITY_LENGTH - -
-           
-static intMAX_COMPANY_LENGTH - -
-           
-static intMAX_COUNTRY_LENGTH - -
-           
-static intMAX_CUSTOMER_ID_LENGTH - -
-           
-static intMAX_CUSTOMER_IP_LENGTH - -
-           
-static intMAX_EMAIL_LENGTH - -
-           
-static intMAX_FAX_LENGTH - -
-           
-static intMAX_FIRST_NAME_LENGTH - -
-           
-static intMAX_LAST_NAME_LENGTH - -
-           
-static intMAX_STATE_LENGTH - -
-           
-static intMAX_ZIP_LENGTH - -
-           
-  - - - - - - - - - - - -
-Constructor Summary
-protected Customer() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static CustomercreateCustomer() - -
-           
-static CustomercreateCustomer(CustomerType customerType) - -
-           
- java.lang.StringgetAddress() - -
-           
- AddressgetBillTo() - -
-           
- java.lang.StringgetCity() - -
-           
- java.lang.StringgetCompany() - -
-           
- java.lang.StringgetCountry() - -
-           
- java.lang.StringgetCustomerId() - -
-           
- java.lang.StringgetCustomerIP() - -
-           
- CustomerTypegetCustomerType() - -
-           
- java.lang.StringgetEmail() - -
-           
- java.lang.StringgetFax() - -
-           
- java.lang.StringgetFirstName() - -
-           
- java.lang.StringgetId() - -
-           
- java.lang.StringgetLastName() - -
-           
- DriversLicensegetLicense() - -
-           
- java.lang.StringgetPhone() - -
-           
- AddressgetShipTo() - -
-           
- java.lang.StringgetState() - -
-           
- java.lang.StringgetTaxId() - -
-           
- java.lang.StringgetZipPostalCode() - -
-           
- booleanisDriversLicenseSpecified() - -
-           
- voidsetAddress(java.lang.String address) - -
-           
- voidsetBillTo(Address bill_to) - -
-           
- voidsetCity(java.lang.String city) - -
-           
- voidsetCompany(java.lang.String company) - -
-           
- voidsetCountry(java.lang.String country) - -
-           
- voidsetCustomerId(java.lang.String customerId) - -
-           
- voidsetCustomerIP(java.lang.String customerIP) - -
-           
- voidsetCustomerType(CustomerType type) - -
-           
- voidsetEmail(java.lang.String email) - -
-           
- voidsetFax(java.lang.String fax) - -
-           
- voidsetFirstName(java.lang.String firstName) - -
-           
- voidsetId(java.lang.String id) - -
-           
- voidsetLastName(java.lang.String lastName) - -
-           
- voidsetLicense(DriversLicense license) - -
-           
- voidsetPhone(java.lang.String phone) - -
-           
- voidsetShipTo(Address ship_to) - -
-           
- voidsetState(java.lang.String state) - -
-           
- voidsetTaxId(java.lang.String taxId) - -
-           
- voidsetZipPostalCode(java.lang.String zipPostalCode) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-MAX_FIRST_NAME_LENGTH

-
-public static final int MAX_FIRST_NAME_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_LAST_NAME_LENGTH

-
-public static final int MAX_LAST_NAME_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_COMPANY_LENGTH

-
-public static final int MAX_COMPANY_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_ADDRES_LENGTH

-
-public static final int MAX_ADDRES_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_CITY_LENGTH

-
-public static final int MAX_CITY_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_STATE_LENGTH

-
-public static final int MAX_STATE_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_ZIP_LENGTH

-
-public static final int MAX_ZIP_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_COUNTRY_LENGTH

-
-public static final int MAX_COUNTRY_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_FAX_LENGTH

-
-public static final int MAX_FAX_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_EMAIL_LENGTH

-
-public static final int MAX_EMAIL_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_CUSTOMER_ID_LENGTH

-
-public static final int MAX_CUSTOMER_ID_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_CUSTOMER_IP_LENGTH

-
-public static final int MAX_CUSTOMER_IP_LENGTH
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Constructor Detail
- -

-Customer

-
-protected Customer()
-
-
- - - - - - - - -
-Method Detail
- -

-createCustomer

-
-public static Customer createCustomer()
-
-
-
-
-
-
-
-
-
- -

-createCustomer

-
-public static Customer createCustomer(CustomerType customerType)
-
-
-
-
-
-
-
-
-
- -

-getId

-
-public java.lang.String getId()
-
-
-
-
-
-
-
-
-
- -

-setId

-
-public void setId(java.lang.String id)
-
-
-
-
-
-
-
-
-
- -

-getBillTo

-
-public Address getBillTo()
-
-
-
-
-
-
-
-
-
- -

-setBillTo

-
-public void setBillTo(Address bill_to)
-
-
-
-
-
-
-
-
-
- -

-isDriversLicenseSpecified

-
-public boolean isDriversLicenseSpecified()
-
-
-
-
-
-
-
-
-
- -

-getLicense

-
-public DriversLicense getLicense()
-
-
-
-
-
-
-
-
-
- -

-setLicense

-
-public void setLicense(DriversLicense license)
-
-
-
-
-
-
-
-
-
- -

-getShipTo

-
-public Address getShipTo()
-
-
-
-
-
-
-
-
-
- -

-setShipTo

-
-public void setShipTo(Address ship_to)
-
-
-
-
-
-
-
-
-
- -

-getTaxId

-
-public java.lang.String getTaxId()
-
-
-
-
-
-
-
-
-
- -

-setTaxId

-
-public void setTaxId(java.lang.String taxId)
-
-
-
-
-
-
-
-
-
- -

-getCustomerType

-
-public CustomerType getCustomerType()
-
-
-
-
-
-
-
-
-
- -

-setCustomerType

-
-public void setCustomerType(CustomerType type)
-
-
-
-
-
-
-
-
-
- -

-getEmail

-
-public java.lang.String getEmail()
-
-
-
-
-
- -
Returns:
the email
-
-
-
- -

-setEmail

-
-public void setEmail(java.lang.String email)
-
-
-
-
-
-
Parameters:
email - the email to set
-
-
-
- -

-getCustomerId

-
-public java.lang.String getCustomerId()
-
-
-
-
-
- -
Returns:
the customerId
-
-
-
- -

-setCustomerId

-
-public void setCustomerId(java.lang.String customerId)
-
-
-
-
-
-
Parameters:
customerId - the customerId to set
-
-
-
- -

-getCustomerIP

-
-public java.lang.String getCustomerIP()
-
-
-
-
-
- -
Returns:
the customerIP
-
-
-
- -

-setCustomerIP

-
-public void setCustomerIP(java.lang.String customerIP)
-
-
-
-
-
-
Parameters:
customerIP - the customerIP to set
-
-
-
- -

-getFirstName

-
-public java.lang.String getFirstName()
-
-
-
-
-
- -
Returns:
the firstName
-
-
-
- -

-setFirstName

-
-public void setFirstName(java.lang.String firstName)
-
-
-
-
-
-
Parameters:
firstName - the firstName to set
-
-
-
- -

-getLastName

-
-public java.lang.String getLastName()
-
-
-
-
-
- -
Returns:
the lastName
-
-
-
- -

-setLastName

-
-public void setLastName(java.lang.String lastName)
-
-
-
-
-
-
Parameters:
lastName - the lastName to set
-
-
-
- -

-getCompany

-
-public java.lang.String getCompany()
-
-
-
-
-
- -
Returns:
the company
-
-
-
- -

-setCompany

-
-public void setCompany(java.lang.String company)
-
-
-
-
-
-
Parameters:
company - the company to set
-
-
-
- -

-getAddress

-
-public java.lang.String getAddress()
-
-
-
-
-
- -
Returns:
the address
-
-
-
- -

-setAddress

-
-public void setAddress(java.lang.String address)
-
-
-
-
-
-
Parameters:
address - the address to set
-
-
-
- -

-getCity

-
-public java.lang.String getCity()
-
-
-
-
-
- -
Returns:
the city
-
-
-
- -

-setCity

-
-public void setCity(java.lang.String city)
-
-
-
-
-
-
Parameters:
city - the city to set
-
-
-
- -

-getState

-
-public java.lang.String getState()
-
-
-
-
-
- -
Returns:
the state
-
-
-
- -

-setState

-
-public void setState(java.lang.String state)
-
-
-
-
-
-
Parameters:
state - the state to set
-
-
-
- -

-getZipPostalCode

-
-public java.lang.String getZipPostalCode()
-
-
-
-
-
- -
Returns:
the zipPostalCode
-
-
-
- -

-setZipPostalCode

-
-public void setZipPostalCode(java.lang.String zipPostalCode)
-
-
-
-
-
-
Parameters:
zipPostalCode - the zipPostalCode to set
-
-
-
- -

-getCountry

-
-public java.lang.String getCountry()
-
-
-
-
-
- -
Returns:
the country
-
-
-
- -

-setCountry

-
-public void setCountry(java.lang.String country)
-
-
-
-
-
-
Parameters:
country - the country to set
-
-
-
- -

-getPhone

-
-public java.lang.String getPhone()
-
-
-
-
-
- -
Returns:
the phone
-
-
-
- -

-setPhone

-
-public void setPhone(java.lang.String phone)
-
-
-
-
-
-
Parameters:
phone - the phone to set
-
-
-
- -

-getFax

-
-public java.lang.String getFax()
-
-
-
-
-
- -
Returns:
the fax
-
-
-
- -

-setFax

-
-public void setFax(java.lang.String fax)
-
-
-
-
-
-
Parameters:
fax - the fax to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/CustomerType.html b/docs/javadocs/net/authorize/data/CustomerType.html deleted file mode 100644 index 2643699..0000000 --- a/docs/javadocs/net/authorize/data/CustomerType.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - -CustomerType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Enum CustomerType

-
-java.lang.Object
-  extended by java.lang.Enum<CustomerType>
-      extended by net.authorize.data.CustomerType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CustomerType>
-
-
-
-
public enum CustomerType
extends java.lang.Enum<CustomerType>
- - -

-


- -

- - - - - - - - - - - - - -
-Enum Constant Summary
BUSINESS - -
-           
INDIVIDUAL - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static CustomerTypefindByName(java.lang.String name) - -
-          Lookup a CustomerType by it's name.
- java.lang.StringgetValue() - -
-           
-static CustomerTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static CustomerType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-INDIVIDUAL

-
-public static final CustomerType INDIVIDUAL
-
-
-
-
-
- -

-BUSINESS

-
-public static final CustomerType BUSINESS
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static CustomerType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (CustomerType c : CustomerType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static CustomerType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByName

-
-public static CustomerType findByName(java.lang.String name)
-
-
Lookup a CustomerType by it's name. -

-

-
Parameters:
name - -
Returns:
Returns a CustomerType if the name match is found.
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/DriversLicense.html b/docs/javadocs/net/authorize/data/DriversLicense.html deleted file mode 100644 index 647e974..0000000 --- a/docs/javadocs/net/authorize/data/DriversLicense.html +++ /dev/null @@ -1,428 +0,0 @@ - - - - - - -DriversLicense (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class DriversLicense

-
-java.lang.Object
-  extended by net.authorize.data.DriversLicense
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class DriversLicense
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-static java.lang.StringLICENSE_DATE_FORMAT - -
-           
-  - - - - - - - - - - -
-Constructor Summary
DriversLicense() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.util.DategetBirthDate() - -
-           
- java.lang.StringgetNumber() - -
-           
- java.lang.StringgetState() - -
-           
- voidsetBirthDate(java.util.Date birth_date) - -
-           
- voidsetBirthDate(java.lang.String date) - -
-           
- voidsetNumber(java.lang.String number) - -
-           
- voidsetState(java.lang.String state) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-LICENSE_DATE_FORMAT

-
-public static java.lang.String LICENSE_DATE_FORMAT
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-DriversLicense

-
-public DriversLicense()
-
-
- - - - - - - - -
-Method Detail
- -

-getBirthDate

-
-public java.util.Date getBirthDate()
-
-
-
-
-
-
-
-
-
- -

-setBirthDate

-
-public void setBirthDate(java.lang.String date)
-
-
-
-
-
-
-
-
-
- -

-setBirthDate

-
-public void setBirthDate(java.util.Date birth_date)
-
-
-
-
-
-
-
-
-
- -

-getNumber

-
-public java.lang.String getNumber()
-
-
-
-
-
-
-
-
-
- -

-setNumber

-
-public void setNumber(java.lang.String number)
-
-
-
-
-
-
-
-
-
- -

-getState

-
-public java.lang.String getState()
-
-
-
-
-
-
-
-
-
- -

-setState

-
-public void setState(java.lang.String state)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/EmailReceipt.html b/docs/javadocs/net/authorize/data/EmailReceipt.html deleted file mode 100644 index 5aaa957..0000000 --- a/docs/javadocs/net/authorize/data/EmailReceipt.html +++ /dev/null @@ -1,360 +0,0 @@ - - - - - - -EmailReceipt (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class EmailReceipt

-
-java.lang.Object
-  extended by net.authorize.data.EmailReceipt
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class EmailReceipt
extends java.lang.Object
implements java.io.Serializable
- - -

-Merchants can opt to send a payment gateway generated email receipt to - customers who provide an email address with their transaction. - - The email receipt includes a summary and results of the transaction. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-static intMAX_EMAIL_LENGTH - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static EmailReceiptcreateEmailReceipt() - -
-           
- java.lang.StringgetFooterEmailReceipt() - -
-           
- java.lang.StringgetHeaderEmailReceipt() - -
-           
- voidsetFooterEmailReceipt(java.lang.String footerEmailReceipt) - -
-           
- voidsetHeaderEmailReceipt(java.lang.String headerEmailReceipt) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-MAX_EMAIL_LENGTH

-
-public static final int MAX_EMAIL_LENGTH
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Method Detail
- -

-createEmailReceipt

-
-public static EmailReceipt createEmailReceipt()
-
-
-
-
-
-
-
-
-
- -

-getHeaderEmailReceipt

-
-public java.lang.String getHeaderEmailReceipt()
-
-
-
-
-
- -
Returns:
the headerEmailReceipt
-
-
-
- -

-setHeaderEmailReceipt

-
-public void setHeaderEmailReceipt(java.lang.String headerEmailReceipt)
-
-
-
-
-
-
Parameters:
headerEmailReceipt - the headerEmailReceipt to set
-
-
-
- -

-getFooterEmailReceipt

-
-public java.lang.String getFooterEmailReceipt()
-
-
-
-
-
- -
Returns:
the footerEmailReceipt
-
-
-
- -

-setFooterEmailReceipt

-
-public void setFooterEmailReceipt(java.lang.String footerEmailReceipt)
-
-
-
-
-
-
Parameters:
footerEmailReceipt - the footerEmailReceipt to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/Order.html b/docs/javadocs/net/authorize/data/Order.html deleted file mode 100644 index 524ded5..0000000 --- a/docs/javadocs/net/authorize/data/Order.html +++ /dev/null @@ -1,753 +0,0 @@ - - - - - - -Order (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class Order

-
-java.lang.Object
-  extended by net.authorize.data.Order
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Order
extends java.lang.Object
implements java.io.Serializable
- - -

-General order related information. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  java.lang.Stringdescription - -
-           
-protected  java.lang.StringinvoiceNumber - -
-           
-static intMAX_DESCRIPTION_LENGTH - -
-           
-static intMAX_INVOICE_NUMBER_LENGTH - -
-           
-static intMAX_ORDER_ITEM_SIZE - -
-           
-protected  java.util.List<OrderItem>orderItems - -
-           
-protected  java.lang.StringpurchaseOrderNumber - -
-           
-protected  ShippingChargesshippingCharges - -
-           
-protected  java.math.BigDecimaltotalAmount - -
-           
-  - - - - - - - - - - - -
-Constructor Summary
-protected Order() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddOrderItem(OrderItem orderItem) - -
-          Adds an OrderItem to the list of OrderItems - provided the list of items - isn't already at the max of 30.
-static OrdercreateOrder() - -
-           
- java.lang.StringgetDescription() - -
-           
- java.lang.StringgetInvoiceNumber() - -
-           
- java.util.List<OrderItem>getOrderItems() - -
-           
- java.lang.StringgetPurchaseOrderNumber() - -
-           
- ShippingChargesgetShippingCharges() - -
-          Get the shipping charges associated with this order.
- java.math.BigDecimalgetTotalAmount() - -
-          Return the total amount of the order.
- voidsetDescription(java.lang.String description) - -
-           
- voidsetInvoiceNumber(java.lang.String invoiceNumber) - -
-           
- voidsetOrderItems(java.util.List<OrderItem> orderItems) - -
-          Sets the list of OrderItems to the list being passed in.
- voidsetPurchaseOrderNumber(java.lang.String purchaseOrderNumber) - -
-           
- voidsetShippingCharges(ShippingCharges shippingCharges) - -
-          Set the shipping charges assocaited with this order.
- voidsetTotalAmount(java.math.BigDecimal totalAmount) - -
-          Set the total amount of the order.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-MAX_INVOICE_NUMBER_LENGTH

-
-public static final int MAX_INVOICE_NUMBER_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_DESCRIPTION_LENGTH

-
-public static final int MAX_DESCRIPTION_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_ORDER_ITEM_SIZE

-
-public static final int MAX_ORDER_ITEM_SIZE
-
-
-
See Also:
Constant Field Values
-
-
- -

-invoiceNumber

-
-protected java.lang.String invoiceNumber
-
-
-
-
-
- -

-purchaseOrderNumber

-
-protected java.lang.String purchaseOrderNumber
-
-
-
-
-
- -

-description

-
-protected java.lang.String description
-
-
-
-
-
- -

-totalAmount

-
-protected java.math.BigDecimal totalAmount
-
-
-
-
-
- -

-shippingCharges

-
-protected ShippingCharges shippingCharges
-
-
-
-
-
- -

-orderItems

-
-protected java.util.List<OrderItem> orderItems
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Order

-
-protected Order()
-
-
- - - - - - - - -
-Method Detail
- -

-createOrder

-
-public static Order createOrder()
-
-
-
-
-
-
-
-
-
- -

-getInvoiceNumber

-
-public java.lang.String getInvoiceNumber()
-
-
-
-
-
- -
Returns:
the invoiceNumber
-
-
-
- -

-setInvoiceNumber

-
-public void setInvoiceNumber(java.lang.String invoiceNumber)
-
-
-
-
-
-
Parameters:
invoiceNumber - the invoiceNumber to set
-
-
-
- -

-getDescription

-
-public java.lang.String getDescription()
-
-
-
-
-
- -
Returns:
the description
-
-
-
- -

-setDescription

-
-public void setDescription(java.lang.String description)
-
-
-
-
-
-
Parameters:
description - the description to set
-
-
-
- -

-getTotalAmount

-
-public java.math.BigDecimal getTotalAmount()
-
-
Return the total amount of the order. -

-

-
-
-
- -
Returns:
the totalAmount
-
-
-
- -

-setTotalAmount

-
-public void setTotalAmount(java.math.BigDecimal totalAmount)
-
-
Set the total amount of the order. -

-

-
-
-
-
Parameters:
totalAmount - the totalAmount to set
-
-
-
- -

-getOrderItems

-
-public java.util.List<OrderItem> getOrderItems()
-
-
-
-
-
- -
Returns:
the orderItems
-
-
-
- -

-setOrderItems

-
-public void setOrderItems(java.util.List<OrderItem> orderItems)
-
-
Sets the list of OrderItems to the list being passed in. The list will - be truncated to 30 items, which is the max number of OrderItems allowed. -

-

-
-
-
-
Parameters:
orderItems - the orderItems to set
-
-
-
- -

-addOrderItem

-
-public void addOrderItem(OrderItem orderItem)
-
-
Adds an OrderItem to the list of OrderItems - provided the list of items - isn't already at the max of 30. -

-

-
-
-
-
Parameters:
orderItem -
-
-
-
- -

-getShippingCharges

-
-public ShippingCharges getShippingCharges()
-
-
Get the shipping charges associated with this order. -

-

-
-
-
- -
Returns:
the shippingCharges
-
-
-
- -

-setShippingCharges

-
-public void setShippingCharges(ShippingCharges shippingCharges)
-
-
Set the shipping charges assocaited with this order. -

-

-
-
-
-
Parameters:
shippingCharges - the shippingCharges to set
-
-
-
- -

-getPurchaseOrderNumber

-
-public java.lang.String getPurchaseOrderNumber()
-
-
-
-
-
- -
Returns:
the purchaseOrderNumber
-
-
-
- -

-setPurchaseOrderNumber

-
-public void setPurchaseOrderNumber(java.lang.String purchaseOrderNumber)
-
-
-
-
-
-
Parameters:
purchaseOrderNumber - the purchaseOrderNumber to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/OrderItem.html b/docs/javadocs/net/authorize/data/OrderItem.html deleted file mode 100644 index 6311676..0000000 --- a/docs/javadocs/net/authorize/data/OrderItem.html +++ /dev/null @@ -1,782 +0,0 @@ - - - - - - -OrderItem (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class OrderItem

-
-java.lang.Object
-  extended by net.authorize.data.OrderItem
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class OrderItem
extends java.lang.Object
implements java.io.Serializable
- - -

-Itemized order information. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  java.lang.StringitemDescription - -
-           
-protected  java.lang.StringitemId - -
-           
-protected  java.lang.StringitemName - -
-           
-protected  java.math.BigDecimalitemPrice - -
-           
-protected  java.math.BigDecimalitemQuantity - -
-           
-protected  booleanitemTaxable - -
-           
-static intMAX_ITEM_DESCRIPTION_LENGTH - -
-           
-static intMAX_ITEM_ID_LENGTH - -
-           
-static intMAX_ITEM_NAME_LENGTH - -
-           
-  - - - - - - - - - - - -
-Constructor Summary
-protected OrderItem() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static OrderItemcreateOrderItem() - -
-           
- java.lang.StringgetItemDescription() - -
-           
- java.lang.StringgetItemId() - -
-           
- java.lang.StringgetItemName() - -
-           
- java.math.BigDecimalgetItemPrice() - -
-           
- java.math.BigDecimalgetItemQuantity() - -
-           
- booleanisItemTaxable() - -
-           
- voidsetItemDescription(java.lang.String itemDescription) - -
-           
- voidsetItemId(java.lang.String itemId) - -
-           
- voidsetItemName(java.lang.String itemName) - -
-           
- voidsetItemPrice(java.math.BigDecimal itemPrice) - -
-           
- voidsetItemPrice(java.lang.String itemPrice) - -
-           
- voidsetItemQuantity(java.math.BigDecimal itemQuantity) - -
-           
- voidsetItemQuantity(java.lang.String itemQuantity) - -
-           
- voidsetItemTaxable(boolean itemTaxable) - -
-           
- voidsetItemTaxable(java.lang.String itemTaxable) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-MAX_ITEM_ID_LENGTH

-
-public static final int MAX_ITEM_ID_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_ITEM_NAME_LENGTH

-
-public static final int MAX_ITEM_NAME_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_ITEM_DESCRIPTION_LENGTH

-
-public static final int MAX_ITEM_DESCRIPTION_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-itemId

-
-protected java.lang.String itemId
-
-
-
-
-
- -

-itemName

-
-protected java.lang.String itemName
-
-
-
-
-
- -

-itemDescription

-
-protected java.lang.String itemDescription
-
-
-
-
-
- -

-itemQuantity

-
-protected java.math.BigDecimal itemQuantity
-
-
-
-
-
- -

-itemPrice

-
-protected java.math.BigDecimal itemPrice
-
-
-
-
-
- -

-itemTaxable

-
-protected boolean itemTaxable
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-OrderItem

-
-protected OrderItem()
-
-
- - - - - - - - -
-Method Detail
- -

-createOrderItem

-
-public static OrderItem createOrderItem()
-
-
-
-
-
-
-
-
-
- -

-getItemId

-
-public java.lang.String getItemId()
-
-
-
-
-
- -
Returns:
the itemId
-
-
-
- -

-setItemId

-
-public void setItemId(java.lang.String itemId)
-
-
-
-
-
-
Parameters:
itemId - the itemId to set
-
-
-
- -

-getItemName

-
-public java.lang.String getItemName()
-
-
-
-
-
- -
Returns:
the itemName
-
-
-
- -

-setItemName

-
-public void setItemName(java.lang.String itemName)
-
-
-
-
-
-
Parameters:
itemName - the itemName to set
-
-
-
- -

-getItemDescription

-
-public java.lang.String getItemDescription()
-
-
-
-
-
- -
Returns:
the itemDescription
-
-
-
- -

-setItemDescription

-
-public void setItemDescription(java.lang.String itemDescription)
-
-
-
-
-
-
Parameters:
itemDescription - the itemDescription to set
-
-
-
- -

-getItemQuantity

-
-public java.math.BigDecimal getItemQuantity()
-
-
-
-
-
- -
Returns:
the itemQuantity
-
-
-
- -

-setItemQuantity

-
-public void setItemQuantity(java.math.BigDecimal itemQuantity)
-
-
-
-
-
-
Parameters:
itemQuantity - the itemQuantity to set
-
-
-
- -

-setItemQuantity

-
-public void setItemQuantity(java.lang.String itemQuantity)
-
-
-
-
-
-
Parameters:
itemQuantity - the itemQuantity to set
-
-
-
- -

-getItemPrice

-
-public java.math.BigDecimal getItemPrice()
-
-
-
-
-
- -
Returns:
the itemPrice
-
-
-
- -

-setItemPrice

-
-public void setItemPrice(java.math.BigDecimal itemPrice)
-
-
-
-
-
-
Parameters:
itemPrice - the itemPrice to set
-
-
-
- -

-setItemPrice

-
-public void setItemPrice(java.lang.String itemPrice)
-
-
-
-
-
-
Parameters:
itemPrice - the itemPrice to set
-
-
-
- -

-isItemTaxable

-
-public boolean isItemTaxable()
-
-
-
-
-
- -
Returns:
the itemTaxable
-
-
-
- -

-setItemTaxable

-
-public void setItemTaxable(boolean itemTaxable)
-
-
-
-
-
-
Parameters:
itemTaxable - the itemTaxable to set
-
-
-
- -

-setItemTaxable

-
-public void setItemTaxable(java.lang.String itemTaxable)
-
-
-
-
-
-
Parameters:
itemTaxable - the itemTaxable to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/Payment.html b/docs/javadocs/net/authorize/data/Payment.html deleted file mode 100644 index ef1aa42..0000000 --- a/docs/javadocs/net/authorize/data/Payment.html +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - -Payment (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class Payment

-
-java.lang.Object
-  extended by net.authorize.data.Payment
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Payment
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - -
-Constructor Summary
-protected Payment() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static PaymentcreatePayment(BankAccount in_account) - -
-           
-static PaymentcreatePayment(CreditCard in_credit) - -
-           
- BankAccountgetBankAccount() - -
-           
- CreditCardgetCreditCard() - -
-           
- voidsetBankAccount(BankAccount bank_account) - -
-           
- voidsetCreditCard(CreditCard credit_card) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-Payment

-
-protected Payment()
-
-
- - - - - - - - -
-Method Detail
- -

-createPayment

-
-public static Payment createPayment(CreditCard in_credit)
-
-
-
-
-
-
-
-
-
- -

-createPayment

-
-public static Payment createPayment(BankAccount in_account)
-
-
-
-
-
-
-
-
-
- -

-getBankAccount

-
-public BankAccount getBankAccount()
-
-
-
-
-
-
-
-
-
- -

-setBankAccount

-
-public void setBankAccount(BankAccount bank_account)
-
-
-
-
-
-
-
-
-
- -

-getCreditCard

-
-public CreditCard getCreditCard()
-
-
-
-
-
-
-
-
-
- -

-setCreditCard

-
-public void setCreditCard(CreditCard credit_card)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/PaymentMethod.html b/docs/javadocs/net/authorize/data/PaymentMethod.html deleted file mode 100644 index 2064a5d..0000000 --- a/docs/javadocs/net/authorize/data/PaymentMethod.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - -PaymentMethod (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Enum PaymentMethod

-
-java.lang.Object
-  extended by java.lang.Enum<PaymentMethod>
-      extended by net.authorize.data.PaymentMethod
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PaymentMethod>
-
-
-
-
public enum PaymentMethod
extends java.lang.Enum<PaymentMethod>
- - -

-The method of payment for the transaction. - CC (credit card) or ECHECK (electronic check). -

- -

-


- -

- - - - - - - - - - - - - - - - -
-Enum Constant Summary
CREDIT_CARD - -
-           
E_CHECK - -
-           
UNKNOWN - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetMethod() - -
-           
-static PaymentMethodvalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static PaymentMethod[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-CREDIT_CARD

-
-public static final PaymentMethod CREDIT_CARD
-
-
-
-
-
- -

-E_CHECK

-
-public static final PaymentMethod E_CHECK
-
-
-
-
-
- -

-UNKNOWN

-
-public static final PaymentMethod UNKNOWN
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static PaymentMethod[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (PaymentMethod c : PaymentMethod.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static PaymentMethod valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getMethod

-
-public java.lang.String getMethod()
-
-
- -
Returns:
the method
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/PermissionType.html b/docs/javadocs/net/authorize/data/PermissionType.html deleted file mode 100644 index eda1250..0000000 --- a/docs/javadocs/net/authorize/data/PermissionType.html +++ /dev/null @@ -1,416 +0,0 @@ - - - - - - -PermissionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Enum PermissionType

-
-java.lang.Object
-  extended by java.lang.Enum<PermissionType>
-      extended by net.authorize.data.PermissionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PermissionType>
-
-
-
-
public enum PermissionType
extends java.lang.Enum<PermissionType>
- - -

-Permissions that are associated with accounts. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
API_MERCHANT_BASIC_REPORTING - -
-           
MOBILE_ADMIN - -
-           
SUBMIT_CHARGE - -
-           
SUBMIT_REFUND - -
-           
SUBMIT_UPDATE - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static PermissionTypefindByValue(java.lang.String value) - -
-          Lookup a permission by it's value.
- java.lang.StringgetValue() - -
-           
-static PermissionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static PermissionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-API_MERCHANT_BASIC_REPORTING

-
-public static final PermissionType API_MERCHANT_BASIC_REPORTING
-
-
-
-
-
- -

-MOBILE_ADMIN

-
-public static final PermissionType MOBILE_ADMIN
-
-
-
-
-
- -

-SUBMIT_CHARGE

-
-public static final PermissionType SUBMIT_CHARGE
-
-
-
-
-
- -

-SUBMIT_REFUND

-
-public static final PermissionType SUBMIT_REFUND
-
-
-
-
-
- -

-SUBMIT_UPDATE

-
-public static final PermissionType SUBMIT_UPDATE
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static PermissionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (PermissionType c : PermissionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static PermissionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
-
- -

-findByValue

-
-public static PermissionType findByValue(java.lang.String value)
-
-
Lookup a permission by it's value. -

-

-
Parameters:
value - -
Returns:
PermissionType
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/ShippingAddress.html b/docs/javadocs/net/authorize/data/ShippingAddress.html deleted file mode 100644 index aa980fe..0000000 --- a/docs/javadocs/net/authorize/data/ShippingAddress.html +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - -ShippingAddress (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class ShippingAddress

-
-java.lang.Object
-  extended by net.authorize.data.Address
-      extended by net.authorize.data.ShippingAddress
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class ShippingAddress
extends Address
implements java.io.Serializable
- - -

-Product shipping address. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.data.Address
address, addressId, city, company, country, faxNumber, firstName, lastName, MAX_ADDRESS_LENGTH, MAX_CITY_LENGTH, MAX_COMPANY_LENGTH, MAX_COUNTRY_LENGTH, MAX_FIRST_NAME_LENGTH, MAX_LAST_NAME_LENGTH, MAX_STATE_LENGTH, MAX_ZIP_LENGTH, phoneNumber, state, zipPostalCode
-  - - - - - - - - - - - -
-Method Summary
-static ShippingAddresscreateShippingAddress() - -
-           
- - - - - - - -
Methods inherited from class net.authorize.data.Address
createAddress, getAddress, getAddressId, getCity, getCompany, getCountry, getFaxNumber, getFirstName, getLastName, getPhoneNumber, getState, getZipPostalCode, setAddress, setAddressId, setCity, setCompany, setCountry, setFaxNumber, setFirstName, setLastName, setPhoneNumber, setState, setZipPostalCode
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createShippingAddress

-
-public static ShippingAddress createShippingAddress()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/ShippingCharges.html b/docs/javadocs/net/authorize/data/ShippingCharges.html deleted file mode 100644 index bb25c27..0000000 --- a/docs/javadocs/net/authorize/data/ShippingCharges.html +++ /dev/null @@ -1,828 +0,0 @@ - - - - - - -ShippingCharges (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data -
-Class ShippingCharges

-
-java.lang.Object
-  extended by net.authorize.data.ShippingCharges
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class ShippingCharges
extends java.lang.Object
implements java.io.Serializable
- - -

-Shipping charges (tax, freight/shipping, duty) -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-static intMAX_PO_NUMBER_LENGTH - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ShippingChargescreateShippingCharges() - -
-           
- java.math.BigDecimalgetDutyAmount() - -
-           
- java.lang.StringgetDutyItemDescription() - -
-           
- java.lang.StringgetDutyItemName() - -
-           
- java.math.BigDecimalgetFreightAmount() - -
-           
- java.lang.StringgetFreightDescription() - -
-           
- java.lang.StringgetFreightItemName() - -
-           
- java.lang.StringgetPurchaseOrderNumber() - -
-           
- java.math.BigDecimalgetTaxAmount() - -
-           
- java.lang.StringgetTaxDescription() - -
-           
- java.lang.StringgetTaxItemName() - -
-           
- booleanisTaxExempt() - -
-           
- voidsetDutyAmount(java.math.BigDecimal dutyAmount) - -
-           
- voidsetDutyAmount(java.lang.String dutyAmount) - -
-           
- voidsetDutyItemDescription(java.lang.String dutyItemDescription) - -
-           
- voidsetDutyItemName(java.lang.String dutyItemName) - -
-           
- voidsetFreightAmount(java.math.BigDecimal freightAmount) - -
-           
- voidsetFreightAmount(java.lang.String freightAmount) - -
-           
- voidsetFreightDescription(java.lang.String freightDescription) - -
-           
- voidsetFreightItemName(java.lang.String freightItemName) - -
-           
- voidsetPurchaseOrderNumber(java.lang.String purchaseOrderNumber) - -
-           
- voidsetTaxAmount(java.math.BigDecimal taxAmount) - -
-           
- voidsetTaxAmount(java.lang.String taxAmount) - -
-           
- voidsetTaxDescription(java.lang.String taxDescription) - -
-           
- voidsetTaxExempt(boolean taxExempt) - -
-           
- voidsetTaxItemName(java.lang.String taxItemName) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-MAX_PO_NUMBER_LENGTH

-
-public static final int MAX_PO_NUMBER_LENGTH
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Method Detail
- -

-createShippingCharges

-
-public static ShippingCharges createShippingCharges()
-
-
-
-
-
-
-
-
-
- -

-getTaxItemName

-
-public java.lang.String getTaxItemName()
-
-
-
-
-
- -
Returns:
the taxItemName
-
-
-
- -

-setTaxItemName

-
-public void setTaxItemName(java.lang.String taxItemName)
-
-
-
-
-
-
Parameters:
taxItemName - the taxItemName to set
-
-
-
- -

-getTaxDescription

-
-public java.lang.String getTaxDescription()
-
-
-
-
-
- -
Returns:
the taxDescription
-
-
-
- -

-setTaxDescription

-
-public void setTaxDescription(java.lang.String taxDescription)
-
-
-
-
-
-
Parameters:
taxDescription - the taxDescription to set
-
-
-
- -

-getTaxAmount

-
-public java.math.BigDecimal getTaxAmount()
-
-
-
-
-
- -
Returns:
the taxAmount
-
-
-
- -

-setTaxAmount

-
-public void setTaxAmount(java.math.BigDecimal taxAmount)
-
-
-
-
-
-
Parameters:
taxAmount - the taxAmount to set
-
-
-
- -

-setTaxAmount

-
-public void setTaxAmount(java.lang.String taxAmount)
-
-
-
-
-
-
Parameters:
taxAmount - the taxAmount to set
-
-
-
- -

-getFreightItemName

-
-public java.lang.String getFreightItemName()
-
-
-
-
-
- -
Returns:
the freightItemName
-
-
-
- -

-setFreightItemName

-
-public void setFreightItemName(java.lang.String freightItemName)
-
-
-
-
-
-
Parameters:
freightItemName - the freightItemName to set
-
-
-
- -

-getFreightDescription

-
-public java.lang.String getFreightDescription()
-
-
-
-
-
- -
Returns:
the freightDescription
-
-
-
- -

-setFreightDescription

-
-public void setFreightDescription(java.lang.String freightDescription)
-
-
-
-
-
-
Parameters:
freightDescription - the freightDescription to set
-
-
-
- -

-getFreightAmount

-
-public java.math.BigDecimal getFreightAmount()
-
-
-
-
-
- -
Returns:
the freightAmount
-
-
-
- -

-setFreightAmount

-
-public void setFreightAmount(java.math.BigDecimal freightAmount)
-
-
-
-
-
-
Parameters:
freightAmount - the freightAmount to set
-
-
-
- -

-setFreightAmount

-
-public void setFreightAmount(java.lang.String freightAmount)
-
-
-
-
-
-
Parameters:
freightAmount - the freightAmount to set
-
-
-
- -

-getDutyItemName

-
-public java.lang.String getDutyItemName()
-
-
-
-
-
- -
Returns:
the dutyItemName
-
-
-
- -

-setDutyItemName

-
-public void setDutyItemName(java.lang.String dutyItemName)
-
-
-
-
-
-
Parameters:
dutyItemName - the dutyItemName to set
-
-
-
- -

-getDutyItemDescription

-
-public java.lang.String getDutyItemDescription()
-
-
-
-
-
- -
Returns:
the dutyItemDescription
-
-
-
- -

-setDutyItemDescription

-
-public void setDutyItemDescription(java.lang.String dutyItemDescription)
-
-
-
-
-
-
Parameters:
dutyItemDescription - the dutyItemDescription to set
-
-
-
- -

-getDutyAmount

-
-public java.math.BigDecimal getDutyAmount()
-
-
-
-
-
- -
Returns:
the dutyAmount
-
-
-
- -

-setDutyAmount

-
-public void setDutyAmount(java.math.BigDecimal dutyAmount)
-
-
-
-
-
-
Parameters:
dutyAmount - the dutyAmount to set
-
-
-
- -

-setDutyAmount

-
-public void setDutyAmount(java.lang.String dutyAmount)
-
-
-
-
-
-
Parameters:
dutyAmount - the dutyAmount to set
-
-
-
- -

-isTaxExempt

-
-public boolean isTaxExempt()
-
-
-
-
-
- -
Returns:
the taxExempt
-
-
-
- -

-setTaxExempt

-
-public void setTaxExempt(boolean taxExempt)
-
-
-
-
-
-
Parameters:
taxExempt - the taxExempt to set
-
-
-
- -

-getPurchaseOrderNumber

-
-public java.lang.String getPurchaseOrderNumber()
-
-
-
-
-
- -
Returns:
the purchaseOrderNumber
-
-
-
- -

-setPurchaseOrderNumber

-
-public void setPurchaseOrderNumber(java.lang.String purchaseOrderNumber)
-
-
-
-
-
-
Parameters:
purchaseOrderNumber - the purchaseOrderNumber to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/aim/PrepaidCard.html b/docs/javadocs/net/authorize/data/aim/PrepaidCard.html deleted file mode 100644 index cfad21e..0000000 --- a/docs/javadocs/net/authorize/data/aim/PrepaidCard.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - -PrepaidCard (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.aim -
-Class PrepaidCard

-
-java.lang.Object
-  extended by net.authorize.data.aim.PrepaidCard
-
-
-
-
public class PrepaidCard
extends java.lang.Object
- - -

-Container used in split tender transactions. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static PrepaidCardcreatePrepaidCard() - -
-           
- java.math.BigDecimalgetApprovedAmount() - -
-           
- java.math.BigDecimalgetBalanceOnCard() - -
-           
- java.math.BigDecimalgetRequestedAmount() - -
-           
- voidsetApprovedAmount(java.math.BigDecimal approvedAmount) - -
-           
- voidsetBalanceOnCard(java.math.BigDecimal balanceOnCard) - -
-           
- voidsetRequestedAmount(java.math.BigDecimal requestedAmount) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createPrepaidCard

-
-public static PrepaidCard createPrepaidCard()
-
-
-
-
-
-
- -

-getRequestedAmount

-
-public java.math.BigDecimal getRequestedAmount()
-
-
- -
Returns:
the requestedAmount
-
-
-
- -

-setRequestedAmount

-
-public void setRequestedAmount(java.math.BigDecimal requestedAmount)
-
-
-
Parameters:
requestedAmount - the requestedAmount to set
-
-
-
- -

-getApprovedAmount

-
-public java.math.BigDecimal getApprovedAmount()
-
-
- -
Returns:
the approvedAmount
-
-
-
- -

-setApprovedAmount

-
-public void setApprovedAmount(java.math.BigDecimal approvedAmount)
-
-
-
Parameters:
approvedAmount - the approvedAmount to set
-
-
-
- -

-getBalanceOnCard

-
-public java.math.BigDecimal getBalanceOnCard()
-
-
- -
Returns:
the balanceOnCard
-
-
-
- -

-setBalanceOnCard

-
-public void setBalanceOnCard(java.math.BigDecimal balanceOnCard)
-
-
-
Parameters:
balanceOnCard - the balanceOnCard to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/aim/SplitTenderPayment.html b/docs/javadocs/net/authorize/data/aim/SplitTenderPayment.html deleted file mode 100644 index 58bb6d2..0000000 --- a/docs/javadocs/net/authorize/data/aim/SplitTenderPayment.html +++ /dev/null @@ -1,665 +0,0 @@ - - - - - - -SplitTenderPayment (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.aim -
-Class SplitTenderPayment

-
-java.lang.Object
-  extended by net.authorize.data.aim.SplitTenderPayment
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class SplitTenderPayment
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Constructor Summary
SplitTenderPayment() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static SplitTenderPaymentcreateSplitTenderPayment() - -
-           
- java.lang.StringgetAccountNumber() - -
-           
- CardTypegetAccountType() - -
-           
- java.math.BigDecimalgetApprovedAmount() - -
-           
- java.lang.StringgetAuthCode() - -
-           
- java.math.BigDecimalgetBalanceOnCard() - -
-           
- java.math.BigDecimalgetRequestedAmount() - -
-           
- ResponseCodegetResponseCode() - -
-           
- java.lang.StringgetResponseToCustomer() - -
-           
- java.lang.StringgetTransId() - -
-           
- voidsetAccountNumber(java.lang.String accountNumber) - -
-           
- voidsetAccountType(CardType accountType) - -
-           
- voidsetApprovedAmount(java.math.BigDecimal approvedAmount) - -
-           
- voidsetAuthCode(java.lang.String authCode) - -
-           
- voidsetBalanceOnCard(java.math.BigDecimal balanceOnCard) - -
-           
- voidsetRequestedAmount(java.math.BigDecimal requestedAmount) - -
-           
- voidsetResponseCode(ResponseCode responseCode) - -
-           
- voidsetResponseToCustomer(java.lang.String responseToCustomer) - -
-           
- voidsetTransId(java.lang.String transId) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-SplitTenderPayment

-
-public SplitTenderPayment()
-
-
- - - - - - - - -
-Method Detail
- -

-createSplitTenderPayment

-
-public static SplitTenderPayment createSplitTenderPayment()
-
-
-
-
-
-
-
-
-
- -

-getTransId

-
-public java.lang.String getTransId()
-
-
-
-
-
- -
Returns:
the transId
-
-
-
- -

-setTransId

-
-public void setTransId(java.lang.String transId)
-
-
-
-
-
-
Parameters:
transId - the transId to set
-
-
-
- -

-getResponseToCustomer

-
-public java.lang.String getResponseToCustomer()
-
-
-
-
-
- -
Returns:
the responseToCustomer
-
-
-
- -

-setResponseToCustomer

-
-public void setResponseToCustomer(java.lang.String responseToCustomer)
-
-
-
-
-
-
Parameters:
responseToCustomer - the responseToCustomer to set
-
-
-
- -

-getAuthCode

-
-public java.lang.String getAuthCode()
-
-
-
-
-
- -
Returns:
the authCode
-
-
-
- -

-setAuthCode

-
-public void setAuthCode(java.lang.String authCode)
-
-
-
-
-
-
Parameters:
authCode - the authCode to set
-
-
-
- -

-getAccountNumber

-
-public java.lang.String getAccountNumber()
-
-
-
-
-
- -
Returns:
the accountNumber
-
-
-
- -

-setAccountNumber

-
-public void setAccountNumber(java.lang.String accountNumber)
-
-
-
-
-
-
Parameters:
accountNumber - the accountNumber to set
-
-
-
- -

-getAccountType

-
-public CardType getAccountType()
-
-
-
-
-
- -
Returns:
the accountType
-
-
-
- -

-setAccountType

-
-public void setAccountType(CardType accountType)
-
-
-
-
-
-
Parameters:
accountType - the accountType to set
-
-
-
- -

-getRequestedAmount

-
-public java.math.BigDecimal getRequestedAmount()
-
-
-
-
-
- -
Returns:
the requestedAmount
-
-
-
- -

-setRequestedAmount

-
-public void setRequestedAmount(java.math.BigDecimal requestedAmount)
-
-
-
-
-
-
Parameters:
requestedAmount - the requestedAmount to set
-
-
-
- -

-getApprovedAmount

-
-public java.math.BigDecimal getApprovedAmount()
-
-
-
-
-
- -
Returns:
the approvedAmount
-
-
-
- -

-setApprovedAmount

-
-public void setApprovedAmount(java.math.BigDecimal approvedAmount)
-
-
-
-
-
-
Parameters:
approvedAmount - the approvedAmount to set
-
-
-
- -

-getBalanceOnCard

-
-public java.math.BigDecimal getBalanceOnCard()
-
-
-
-
-
- -
Returns:
the balanceOnCard
-
-
-
- -

-setBalanceOnCard

-
-public void setBalanceOnCard(java.math.BigDecimal balanceOnCard)
-
-
-
-
-
-
Parameters:
balanceOnCard - the balanceOnCard to set
-
-
-
- -

-getResponseCode

-
-public ResponseCode getResponseCode()
-
-
-
-
-
- -
Returns:
the responseCode
-
-
-
- -

-setResponseCode

-
-public void setResponseCode(ResponseCode responseCode)
-
-
-
-
-
-
Parameters:
responseCode - the responseCode to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/aim/class-use/PrepaidCard.html b/docs/javadocs/net/authorize/data/aim/class-use/PrepaidCard.html deleted file mode 100644 index 16503f0..0000000 --- a/docs/javadocs/net/authorize/data/aim/class-use/PrepaidCard.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.aim.PrepaidCard (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.aim.PrepaidCard

-
- - - - - - - - - - - - - -
-Packages that use PrepaidCard
net.authorize.aim  
net.authorize.data.aim  
-  -

- - - - - -
-Uses of PrepaidCard in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return PrepaidCard
- PrepaidCardResult.getPrepaidCard() - -
-          Return the prepaid card information.
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type PrepaidCard
- voidResult.setPrepaidCard(PrepaidCard prepaidCard) - -
-          Set the prepaid card information.
-  -

- - - - - -
-Uses of PrepaidCard in net.authorize.data.aim
-  -

- - - - - - - - - -
Methods in net.authorize.data.aim that return PrepaidCard
-static PrepaidCardPrepaidCard.createPrepaidCard() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/aim/class-use/SplitTenderPayment.html b/docs/javadocs/net/authorize/data/aim/class-use/SplitTenderPayment.html deleted file mode 100644 index 75a021e..0000000 --- a/docs/javadocs/net/authorize/data/aim/class-use/SplitTenderPayment.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.aim.SplitTenderPayment (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.aim.SplitTenderPayment

-
- - - - - - - - - - - - - -
-Packages that use SplitTenderPayment
net.authorize.aim  
net.authorize.data.aim  
-  -

- - - - - -
-Uses of SplitTenderPayment in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return types with arguments of type SplitTenderPayment
- java.util.ArrayList<SplitTenderPayment>Result.getSplitTenderPayments() - -
-          Return a list of split tender payment information.
-  -

- - - - - - - - - -
Method parameters in net.authorize.aim with type arguments of type SplitTenderPayment
- voidResult.setSplitTenderPayments(java.util.ArrayList<SplitTenderPayment> splitTenderPayments) - -
-          Set the split tender payment information.
-  -

- - - - - -
-Uses of SplitTenderPayment in net.authorize.data.aim
-  -

- - - - - - - - - -
Methods in net.authorize.data.aim that return SplitTenderPayment
-static SplitTenderPaymentSplitTenderPayment.createSplitTenderPayment() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/aim/package-frame.html b/docs/javadocs/net/authorize/data/aim/package-frame.html deleted file mode 100644 index 3442694..0000000 --- a/docs/javadocs/net/authorize/data/aim/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -net.authorize.data.aim (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data.aim - - - - -
-Classes  - -
-PrepaidCard -
-SplitTenderPayment
- - - - diff --git a/docs/javadocs/net/authorize/data/aim/package-summary.html b/docs/javadocs/net/authorize/data/aim/package-summary.html deleted file mode 100644 index 5afc7f8..0000000 --- a/docs/javadocs/net/authorize/data/aim/package-summary.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -net.authorize.data.aim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data.aim -

- - - - - - - - - - - - - -
-Class Summary
PrepaidCardContainer used in split tender transactions.
SplitTenderPayment 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/aim/package-tree.html b/docs/javadocs/net/authorize/data/aim/package-tree.html deleted file mode 100644 index 6a4920e..0000000 --- a/docs/javadocs/net/authorize/data/aim/package-tree.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -net.authorize.data.aim Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data.aim -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/aim/package-use.html b/docs/javadocs/net/authorize/data/aim/package-use.html deleted file mode 100644 index a9196c9..0000000 --- a/docs/javadocs/net/authorize/data/aim/package-use.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - -Uses of Package net.authorize.data.aim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data.aim

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.data.aim
net.authorize.aim  
net.authorize.data.aim  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.aim used by net.authorize.aim
PrepaidCard - -
-          Container used in split tender transactions.
SplitTenderPayment - -
-           
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.aim used by net.authorize.data.aim
PrepaidCard - -
-          Container used in split tender transactions.
SplitTenderPayment - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/PaymentSchedule.html b/docs/javadocs/net/authorize/data/arb/PaymentSchedule.html deleted file mode 100644 index f35bd94..0000000 --- a/docs/javadocs/net/authorize/data/arb/PaymentSchedule.html +++ /dev/null @@ -1,540 +0,0 @@ - - - - - - -PaymentSchedule (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.arb -
-Class PaymentSchedule

-
-java.lang.Object
-  extended by net.authorize.data.arb.PaymentSchedule
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class PaymentSchedule
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-static java.lang.StringSCHEDULE_DATE_FORMAT - -
-           
-  - - - - - - - - - - - -
-Constructor Summary
-protected PaymentSchedule() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static PaymentSchedulecreatePaymentSchedule() - -
-           
- intgetIntervaLength() - -
-           
- java.util.DategetStartDate() - -
-           
- SubscriptionUnitTypegetSubscriptionUnit() - -
-           
- intgetTotalOccurrences() - -
-           
- intgetTrialOccurrences() - -
-           
- voidsetIntervalLength(int interval_length) - -
-           
- voidsetStartDate(java.util.Date date) - -
-           
- voidsetStartDate(java.lang.String start_date) - -
-           
- voidsetSubscriptionUnit(SubscriptionUnitType subscription_unit) - -
-           
- voidsetTotalOccurrences(int total_occurrences) - -
-           
- voidsetTrialOccurrences(int trial_occurrences) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-SCHEDULE_DATE_FORMAT

-
-public static java.lang.String SCHEDULE_DATE_FORMAT
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-PaymentSchedule

-
-protected PaymentSchedule()
-
-
- - - - - - - - -
-Method Detail
- -

-createPaymentSchedule

-
-public static PaymentSchedule createPaymentSchedule()
-
-
-
-
-
-
-
-
-
- -

-getIntervaLength

-
-public int getIntervaLength()
-
-
-
-
-
-
-
-
-
- -

-setIntervalLength

-
-public void setIntervalLength(int interval_length)
-
-
-
-
-
-
-
-
-
- -

-getStartDate

-
-public java.util.Date getStartDate()
-
-
-
-
-
-
-
-
-
- -

-setStartDate

-
-public void setStartDate(java.util.Date date)
-
-
-
-
-
-
-
-
-
- -

-setStartDate

-
-public void setStartDate(java.lang.String start_date)
-
-
-
-
-
-
-
-
-
- -

-getSubscriptionUnit

-
-public SubscriptionUnitType getSubscriptionUnit()
-
-
-
-
-
-
-
-
-
- -

-setSubscriptionUnit

-
-public void setSubscriptionUnit(SubscriptionUnitType subscription_unit)
-
-
-
-
-
-
-
-
-
- -

-getTotalOccurrences

-
-public int getTotalOccurrences()
-
-
-
-
-
-
-
-
-
- -

-setTotalOccurrences

-
-public void setTotalOccurrences(int total_occurrences)
-
-
-
-
-
-
-
-
-
- -

-getTrialOccurrences

-
-public int getTrialOccurrences()
-
-
-
-
-
-
-
-
-
- -

-setTrialOccurrences

-
-public void setTrialOccurrences(int trial_occurrences)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/Subscription.html b/docs/javadocs/net/authorize/data/arb/Subscription.html deleted file mode 100644 index 5d2eb46..0000000 --- a/docs/javadocs/net/authorize/data/arb/Subscription.html +++ /dev/null @@ -1,657 +0,0 @@ - - - - - - -Subscription (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.arb -
-Class Subscription

-
-java.lang.Object
-  extended by net.authorize.data.arb.Subscription
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Subscription
extends java.lang.Object
implements java.io.Serializable
- - -

-Subscription container. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - -
-Constructor Summary
-protected Subscription() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static SubscriptioncreateSubscription() - -
-          Create a subscription.
- java.math.BigDecimalgetAmount() - -
-          Get the subscription amount.
- CustomergetCustomer() - -
-          Get the customer container.
- java.lang.StringgetName() - -
-          Get the name of the subscription.
- OrdergetOrder() - -
-           
- PaymentgetPayment() - -
-          Get the payment container.
- PaymentSchedulegetSchedule() - -
-          Get the payment schedule of the subscription.
- java.lang.StringgetSubscriptionId() - -
-          Get the subscription id.
- java.math.BigDecimalgetTrialAmount() - -
-          Get the trial amount of the subscription.
- voidsetAmount(java.math.BigDecimal amount) - -
-          Set the subscription amount.
- voidsetCustomer(Customer customer) - -
-          Set the customer container.
- voidsetName(java.lang.String name) - -
-          Set the name of the subscription.
- voidsetOrder(Order order) - -
-           
- voidsetPayment(Payment payment) - -
-          Set the payment container for the subscription.
- voidsetSchedule(PaymentSchedule schedule) - -
-          Set the payment schedule of the subscription.
- voidsetSubscriptionId(java.lang.String subscription_id) - -
-          Set the subscription id.
- voidsetTrialAmount(java.math.BigDecimal trial_amount) - -
-          Set the trial amount of the subscription.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-Subscription

-
-protected Subscription()
-
-
- - - - - - - - -
-Method Detail
- -

-createSubscription

-
-public static Subscription createSubscription()
-
-
Create a subscription. -

-

-
-
-
- -
Returns:
Subscription
-
-
-
- -

-getSubscriptionId

-
-public java.lang.String getSubscriptionId()
-
-
Get the subscription id. -

-

-
-
-
- -
Returns:
String
-
-
-
- -

-setSubscriptionId

-
-public void setSubscriptionId(java.lang.String subscription_id)
-
-
Set the subscription id. -

-

-
-
-
-
Parameters:
subscription_id -
-
-
-
- -

-getCustomer

-
-public Customer getCustomer()
-
-
Get the customer container. -

-

-
-
-
- -
Returns:
Customer
-
-
-
- -

-setCustomer

-
-public void setCustomer(Customer customer)
-
-
Set the customer container. -

-

-
-
-
-
Parameters:
customer -
-
-
-
- -

-getAmount

-
-public java.math.BigDecimal getAmount()
-
-
Get the subscription amount. -

-

-
-
-
- -
Returns:
BigDecimal
-
-
-
- -

-setAmount

-
-public void setAmount(java.math.BigDecimal amount)
-
-
Set the subscription amount. -

-

-
-
-
-
Parameters:
amount -
-
-
-
- -

-getName

-
-public java.lang.String getName()
-
-
Get the name of the subscription. -

-

-
-
-
- -
Returns:
String
-
-
-
- -

-setName

-
-public void setName(java.lang.String name)
-
-
Set the name of the subscription. -

-

-
-
-
-
Parameters:
name -
-
-
-
- -

-getPayment

-
-public Payment getPayment()
-
-
Get the payment container. -

-

-
-
-
- -
Returns:
Payment
-
-
-
- -

-setPayment

-
-public void setPayment(Payment payment)
-
-
Set the payment container for the subscription. -

-

-
-
-
-
Parameters:
payment -
-
-
-
- -

-getSchedule

-
-public PaymentSchedule getSchedule()
-
-
Get the payment schedule of the subscription. -

-

-
-
-
- -
Returns:
PaymentSchedule
-
-
-
- -

-setSchedule

-
-public void setSchedule(PaymentSchedule schedule)
-
-
Set the payment schedule of the subscription. -

-

-
-
-
-
Parameters:
schedule -
-
-
-
- -

-getTrialAmount

-
-public java.math.BigDecimal getTrialAmount()
-
-
Get the trial amount of the subscription. -

-

-
-
-
- -
Returns:
BigDecimal
-
-
-
- -

-setTrialAmount

-
-public void setTrialAmount(java.math.BigDecimal trial_amount)
-
-
Set the trial amount of the subscription. -

-

-
-
-
-
Parameters:
trial_amount -
-
-
-
- -

-getOrder

-
-public Order getOrder()
-
-
-
-
-
- -
Returns:
the order
-
-
-
- -

-setOrder

-
-public void setOrder(Order order)
-
-
-
-
-
-
Parameters:
order - the order to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/SubscriptionStatusType.html b/docs/javadocs/net/authorize/data/arb/SubscriptionStatusType.html deleted file mode 100644 index 9a89e05..0000000 --- a/docs/javadocs/net/authorize/data/arb/SubscriptionStatusType.html +++ /dev/null @@ -1,408 +0,0 @@ - - - - - - -SubscriptionStatusType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.arb -
-Enum SubscriptionStatusType

-
-java.lang.Object
-  extended by java.lang.Enum<SubscriptionStatusType>
-      extended by net.authorize.data.arb.SubscriptionStatusType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SubscriptionStatusType>
-
-
-
-
public enum SubscriptionStatusType
extends java.lang.Enum<SubscriptionStatusType>
- - -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
ACTIVE - -
-           
CANCELED - -
-           
EXPIRED - -
-           
SUSPENDED - -
-           
TERMINATED - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static SubscriptionStatusTypefromValue(java.lang.String v) - -
-           
- java.lang.Stringvalue() - -
-           
-static SubscriptionStatusTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static SubscriptionStatusType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-ACTIVE

-
-public static final SubscriptionStatusType ACTIVE
-
-
-
-
-
- -

-EXPIRED

-
-public static final SubscriptionStatusType EXPIRED
-
-
-
-
-
- -

-SUSPENDED

-
-public static final SubscriptionStatusType SUSPENDED
-
-
-
-
-
- -

-CANCELED

-
-public static final SubscriptionStatusType CANCELED
-
-
-
-
-
- -

-TERMINATED

-
-public static final SubscriptionStatusType TERMINATED
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static SubscriptionStatusType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (SubscriptionStatusType c : SubscriptionStatusType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static SubscriptionStatusType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-value

-
-public java.lang.String value()
-
-
-
-
-
-
- -

-fromValue

-
-public static SubscriptionStatusType fromValue(java.lang.String v)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/SubscriptionUnitType.html b/docs/javadocs/net/authorize/data/arb/SubscriptionUnitType.html deleted file mode 100644 index 69e31e3..0000000 --- a/docs/javadocs/net/authorize/data/arb/SubscriptionUnitType.html +++ /dev/null @@ -1,360 +0,0 @@ - - - - - - -SubscriptionUnitType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.arb -
-Enum SubscriptionUnitType

-
-java.lang.Object
-  extended by java.lang.Enum<SubscriptionUnitType>
-      extended by net.authorize.data.arb.SubscriptionUnitType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SubscriptionUnitType>
-
-
-
-
public enum SubscriptionUnitType
extends java.lang.Enum<SubscriptionUnitType>
- - -

-


- -

- - - - - - - - - - - - - -
-Enum Constant Summary
DAYS - -
-           
MONTHS - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static SubscriptionUnitTypefromValue(java.lang.String v) - -
-           
- java.lang.Stringvalue() - -
-           
-static SubscriptionUnitTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static SubscriptionUnitType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-DAYS

-
-public static final SubscriptionUnitType DAYS
-
-
-
-
-
- -

-MONTHS

-
-public static final SubscriptionUnitType MONTHS
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static SubscriptionUnitType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (SubscriptionUnitType c : SubscriptionUnitType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static SubscriptionUnitType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-value

-
-public java.lang.String value()
-
-
-
-
-
-
- -

-fromValue

-
-public static SubscriptionUnitType fromValue(java.lang.String v)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/class-use/PaymentSchedule.html b/docs/javadocs/net/authorize/data/arb/class-use/PaymentSchedule.html deleted file mode 100644 index 7a8bbb5..0000000 --- a/docs/javadocs/net/authorize/data/arb/class-use/PaymentSchedule.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.arb.PaymentSchedule (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.arb.PaymentSchedule

-
- - - - - - - - - -
-Packages that use PaymentSchedule
net.authorize.data.arb  
-  -

- - - - - -
-Uses of PaymentSchedule in net.authorize.data.arb
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.arb that return PaymentSchedule
-static PaymentSchedulePaymentSchedule.createPaymentSchedule() - -
-           
- PaymentScheduleSubscription.getSchedule() - -
-          Get the payment schedule of the subscription.
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb with parameters of type PaymentSchedule
- voidSubscription.setSchedule(PaymentSchedule schedule) - -
-          Set the payment schedule of the subscription.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/class-use/Subscription.html b/docs/javadocs/net/authorize/data/arb/class-use/Subscription.html deleted file mode 100644 index ebac1be..0000000 --- a/docs/javadocs/net/authorize/data/arb/class-use/Subscription.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.arb.Subscription (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.arb.Subscription

-
- - - - - - - - - - - - - - - - - -
-Packages that use Subscription
net.authorize  
net.authorize.arb  
net.authorize.data.arb  
-  -

- - - - - -
-Uses of Subscription in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type Subscription
- TransactionMerchant.createARBTransaction(TransactionType transactionType, - Subscription subscription) - -
-          Creates a new ARB Transaction.
-  -

- - - - - -
-Uses of Subscription in net.authorize.arb
-  -

- - - - - - - - - -
Methods in net.authorize.arb with parameters of type Subscription
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - Subscription subscription) - -
-          Creates a transaction.
-  -

- - - - - -
-Uses of Subscription in net.authorize.data.arb
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb that return Subscription
-static SubscriptionSubscription.createSubscription() - -
-          Create a subscription.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/class-use/SubscriptionStatusType.html b/docs/javadocs/net/authorize/data/arb/class-use/SubscriptionStatusType.html deleted file mode 100644 index c9c4949..0000000 --- a/docs/javadocs/net/authorize/data/arb/class-use/SubscriptionStatusType.html +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.arb.SubscriptionStatusType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.arb.SubscriptionStatusType

-
- - - - - - - - - - - - - -
-Packages that use SubscriptionStatusType
net.authorize.arb  
net.authorize.data.arb  
-  -

- - - - - -
-Uses of SubscriptionStatusType in net.authorize.arb
-  -

- - - - - - - - - -
Fields in net.authorize.arb declared as SubscriptionStatusType
-protected  SubscriptionStatusTypeResult.subscriptionStatus - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.arb that return SubscriptionStatusType
- SubscriptionStatusTypeResult.getSubscriptionStatus() - -
-           
-  -

- - - - - -
-Uses of SubscriptionStatusType in net.authorize.data.arb
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.arb that return SubscriptionStatusType
-static SubscriptionStatusTypeSubscriptionStatusType.fromValue(java.lang.String v) - -
-           
-static SubscriptionStatusTypeSubscriptionStatusType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static SubscriptionStatusType[]SubscriptionStatusType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/class-use/SubscriptionUnitType.html b/docs/javadocs/net/authorize/data/arb/class-use/SubscriptionUnitType.html deleted file mode 100644 index 182bcc8..0000000 --- a/docs/javadocs/net/authorize/data/arb/class-use/SubscriptionUnitType.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.arb.SubscriptionUnitType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.arb.SubscriptionUnitType

-
- - - - - - - - - -
-Packages that use SubscriptionUnitType
net.authorize.data.arb  
-  -

- - - - - -
-Uses of SubscriptionUnitType in net.authorize.data.arb
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.arb that return SubscriptionUnitType
-static SubscriptionUnitTypeSubscriptionUnitType.fromValue(java.lang.String v) - -
-           
- SubscriptionUnitTypePaymentSchedule.getSubscriptionUnit() - -
-           
-static SubscriptionUnitTypeSubscriptionUnitType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static SubscriptionUnitType[]SubscriptionUnitType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb with parameters of type SubscriptionUnitType
- voidPaymentSchedule.setSubscriptionUnit(SubscriptionUnitType subscription_unit) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/package-frame.html b/docs/javadocs/net/authorize/data/arb/package-frame.html deleted file mode 100644 index bc15dfa..0000000 --- a/docs/javadocs/net/authorize/data/arb/package-frame.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - -net.authorize.data.arb (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data.arb - - - - -
-Classes  - -
-PaymentSchedule -
-Subscription
- - - - - - -
-Enums  - -
-SubscriptionStatusType -
-SubscriptionUnitType
- - - - diff --git a/docs/javadocs/net/authorize/data/arb/package-summary.html b/docs/javadocs/net/authorize/data/arb/package-summary.html deleted file mode 100644 index aabf81d..0000000 --- a/docs/javadocs/net/authorize/data/arb/package-summary.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - -net.authorize.data.arb (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data.arb -

- - - - - - - - - - - - - -
-Class Summary
PaymentSchedule 
SubscriptionSubscription container.
-  - -

- - - - - - - - - - - - - -
-Enum Summary
SubscriptionStatusType 
SubscriptionUnitType 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/package-tree.html b/docs/javadocs/net/authorize/data/arb/package-tree.html deleted file mode 100644 index bf4396c..0000000 --- a/docs/javadocs/net/authorize/data/arb/package-tree.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -net.authorize.data.arb Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data.arb -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.data.arb.PaymentSchedule (implements java.io.Serializable) -
    • net.authorize.data.arb.Subscription (implements java.io.Serializable) -
    -
-

-Enum Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/arb/package-use.html b/docs/javadocs/net/authorize/data/arb/package-use.html deleted file mode 100644 index 5d381cb..0000000 --- a/docs/javadocs/net/authorize/data/arb/package-use.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - -Uses of Package net.authorize.data.arb (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data.arb

-
- - - - - - - - - - - - - - - - - -
-Packages that use net.authorize.data.arb
net.authorize  
net.authorize.arb  
net.authorize.data.arb  
-  -

- - - - - - - - -
-Classes in net.authorize.data.arb used by net.authorize
Subscription - -
-          Subscription container.
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.arb used by net.authorize.arb
Subscription - -
-          Subscription container.
SubscriptionStatusType - -
-           
-  -

- - - - - - - - - - - - - - - - - -
-Classes in net.authorize.data.arb used by net.authorize.data.arb
PaymentSchedule - -
-           
Subscription - -
-          Subscription container.
SubscriptionStatusType - -
-           
SubscriptionUnitType - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/CustomerProfile.html b/docs/javadocs/net/authorize/data/cim/CustomerProfile.html deleted file mode 100644 index a0bde47..0000000 --- a/docs/javadocs/net/authorize/data/cim/CustomerProfile.html +++ /dev/null @@ -1,634 +0,0 @@ - - - - - - -CustomerProfile (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.cim -
-Class CustomerProfile

-
-java.lang.Object
-  extended by net.authorize.data.cim.CustomerProfile
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class CustomerProfile
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  java.lang.StringcustomerProfileId - -
-           
-protected  java.lang.Stringdescription - -
-           
-protected  java.lang.Stringemail - -
-           
-protected  java.lang.StringmerchantCustomerId - -
-           
-protected  java.util.ArrayList<Address>shipToAddressList - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddShipToAddress(Address shipTo) - -
-          Add an address to the ship to list.
-static CustomerProfilecreateCustomerProfile() - -
-          Create a new CustomerProfile object
- java.lang.StringgetCustomerProfileId() - -
-          Get the customer profile id.
- java.lang.StringgetDescription() - -
-          Gets the value of the description property.
- java.lang.StringgetEmail() - -
-          Gets the value of the email property.
- java.lang.StringgetMerchantCustomerId() - -
-          Gets the value of the merchantCustomerId property.
- AddressgetShipToAddress() - -
-          Return the first (perhaps only) address in the list.
- java.util.ArrayList<Address>getShipToAddressList() - -
-           
- voidsetCustomerProfileId(java.lang.String id) - -
-          Set the customer profile id.
- voidsetDescription(java.lang.String value) - -
-          Sets the value of the description property.
- voidsetEmail(java.lang.String value) - -
-          Sets the value of the email property.
- voidsetMerchantCustomerId(java.lang.String value) - -
-          Sets the value of the merchantCustomerId property.
- voidsetShipToAddressList(java.util.ArrayList<Address> shipToAddressList) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-merchantCustomerId

-
-protected java.lang.String merchantCustomerId
-
-
-
-
-
- -

-description

-
-protected java.lang.String description
-
-
-
-
-
- -

-email

-
-protected java.lang.String email
-
-
-
-
-
- -

-customerProfileId

-
-protected java.lang.String customerProfileId
-
-
-
-
-
- -

-shipToAddressList

-
-protected java.util.ArrayList<Address> shipToAddressList
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-createCustomerProfile

-
-public static CustomerProfile createCustomerProfile()
-
-
Create a new CustomerProfile object -

-

-
-
-
- -
Returns:
CustomerProfile
-
-
-
- -

-getCustomerProfileId

-
-public java.lang.String getCustomerProfileId()
-
-
Get the customer profile id. -

-

-
-
-
- -
Returns:
the id
-
-
-
- -

-setCustomerProfileId

-
-public void setCustomerProfileId(java.lang.String id)
-
-
Set the customer profile id. -

-

-
-
-
-
Parameters:
id - the id to set
-
-
-
- -

-getMerchantCustomerId

-
-public java.lang.String getMerchantCustomerId()
-
-
Gets the value of the merchantCustomerId property. -

-

-
-
-
- -
Returns:
possible object is - String
-
-
-
- -

-setMerchantCustomerId

-
-public void setMerchantCustomerId(java.lang.String value)
-
-
Sets the value of the merchantCustomerId property. -

-

-
-
-
-
Parameters:
value - allowed object is - String
-
-
-
- -

-getDescription

-
-public java.lang.String getDescription()
-
-
Gets the value of the description property. -

-

-
-
-
- -
Returns:
possible object is - String
-
-
-
- -

-setDescription

-
-public void setDescription(java.lang.String value)
-
-
Sets the value of the description property. -

-

-
-
-
-
Parameters:
value - allowed object is - String
-
-
-
- -

-getEmail

-
-public java.lang.String getEmail()
-
-
Gets the value of the email property. -

-

-
-
-
- -
Returns:
possible object is - String
-
-
-
- -

-setEmail

-
-public void setEmail(java.lang.String value)
-
-
Sets the value of the email property. -

-

-
-
-
-
Parameters:
value - allowed object is - String
-
-
-
- -

-getShipToAddressList

-
-public java.util.ArrayList<Address> getShipToAddressList()
-
-
-
-
-
- -
Returns:
the shipToAddressList
-
-
-
- -

-setShipToAddressList

-
-public void setShipToAddressList(java.util.ArrayList<Address> shipToAddressList)
-
-
-
-
-
-
Parameters:
shipToAddressList - the shipToAddressList to set
-
-
-
- -

-addShipToAddress

-
-public void addShipToAddress(Address shipTo)
-
-
Add an address to the ship to list. -

-

-
-
-
-
Parameters:
shipTo -
-
-
-
- -

-getShipToAddress

-
-public Address getShipToAddress()
-
-
Return the first (perhaps only) address in the list. -

-

-
-
-
- -
Returns:
Address
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/DirectResponse.html b/docs/javadocs/net/authorize/data/cim/DirectResponse.html deleted file mode 100644 index b41b82e..0000000 --- a/docs/javadocs/net/authorize/data/cim/DirectResponse.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - -DirectResponse (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.cim -
-Class DirectResponse

-
-java.lang.Object
-  extended by net.authorize.data.cim.DirectResponse
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class DirectResponse
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-static java.lang.StringRESPONSE_DELIMITER - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static DirectResponsecreateDirectResponse(java.lang.String directResponseString) - -
-          Create a validation direct response from a passed in string.
- java.util.Map<ResponseField,java.lang.String>getDirectResponseMap() - -
-           
- java.lang.StringgetDirectResponseString() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-RESPONSE_DELIMITER

-
-public static final java.lang.String RESPONSE_DELIMITER
-
-
-
See Also:
Constant Field Values
-
- - - - - - - - -
-Method Detail
- -

-createDirectResponse

-
-public static DirectResponse createDirectResponse(java.lang.String directResponseString)
-
-
Create a validation direct response from a passed in string. -

-

-
-
-
-
Parameters:
directResponseString - -
Returns:
DirectResponse object
-
-
-
- -

-getDirectResponseString

-
-public java.lang.String getDirectResponseString()
-
-
-
-
-
- -
Returns:
the directResponseString
-
-
-
- -

-getDirectResponseMap

-
-public java.util.Map<ResponseField,java.lang.String> getDirectResponseMap()
-
-
-
-
-
- -
Returns:
the directResponseMap
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/PaymentProfile.html b/docs/javadocs/net/authorize/data/cim/PaymentProfile.html deleted file mode 100644 index 446afff..0000000 --- a/docs/javadocs/net/authorize/data/cim/PaymentProfile.html +++ /dev/null @@ -1,533 +0,0 @@ - - - - - - -PaymentProfile (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.cim -
-Class PaymentProfile

-
-java.lang.Object
-  extended by net.authorize.data.cim.PaymentProfile
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class PaymentProfile
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  AddressbillTo - -
-           
-protected  java.lang.StringcustomerPaymentProfileId - -
-           
-protected  CustomerTypecustomerType - -
-           
-protected  java.util.ArrayList<Payment>paymentList - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddPayment(Payment payment) - -
-          Add a Payment container to the payment list.
-static PaymentProfilecreatePaymentProfile() - -
-           
- AddressgetBillTo() - -
-          Gets the value of the billTo property.
- java.lang.StringgetCustomerPaymentProfileId() - -
-           
- CustomerTypegetCustomerType() - -
-          Gets the value of the customerType property.
- java.util.ArrayList<Payment>getPaymentList() - -
-           
- voidsetBillTo(Address value) - -
-          Sets the value of the billTo property.
- voidsetCustomerPaymentProfileId(java.lang.String customerPaymentProfileId) - -
-           
- voidsetCustomerType(CustomerType value) - -
-          Sets the value of the customerType property.
- voidsetPaymentList(java.util.ArrayList<Payment> paymentList) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-customerType

-
-protected CustomerType customerType
-
-
-
-
-
- -

-billTo

-
-protected Address billTo
-
-
-
-
-
- -

-paymentList

-
-protected java.util.ArrayList<Payment> paymentList
-
-
-
-
-
- -

-customerPaymentProfileId

-
-protected java.lang.String customerPaymentProfileId
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-createPaymentProfile

-
-public static PaymentProfile createPaymentProfile()
-
-
-
-
-
-
-
-
-
- -

-getCustomerType

-
-public CustomerType getCustomerType()
-
-
Gets the value of the customerType property. -

-

-
-
-
- -
Returns:
possible object is - CustomerType
-
-
-
- -

-setCustomerType

-
-public void setCustomerType(CustomerType value)
-
-
Sets the value of the customerType property. -

-

-
-
-
-
Parameters:
value - allowed object is - CustomerType
-
-
-
- -

-getBillTo

-
-public Address getBillTo()
-
-
Gets the value of the billTo property. -

-

-
-
-
- -
Returns:
possible object is - Address
-
-
-
- -

-setBillTo

-
-public void setBillTo(Address value)
-
-
Sets the value of the billTo property. -

-

-
-
-
-
Parameters:
value - allowed object is - Address
-
-
-
- -

-getPaymentList

-
-public java.util.ArrayList<Payment> getPaymentList()
-
-
-
-
-
- -
Returns:
the paymentList
-
-
-
- -

-addPayment

-
-public void addPayment(Payment payment)
-
-
Add a Payment container to the payment list. -

-

-
-
-
-
Parameters:
payment -
-
-
-
- -

-setPaymentList

-
-public void setPaymentList(java.util.ArrayList<Payment> paymentList)
-
-
-
-
-
-
Parameters:
paymentList - the payments to set
-
-
-
- -

-getCustomerPaymentProfileId

-
-public java.lang.String getCustomerPaymentProfileId()
-
-
-
-
-
- -
Returns:
the customerPaymentProfileId
-
-
-
- -

-setCustomerPaymentProfileId

-
-public void setCustomerPaymentProfileId(java.lang.String customerPaymentProfileId)
-
-
-
-
-
-
Parameters:
customerPaymentProfileId - the customerPaymentProfileId to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/class-use/CustomerProfile.html b/docs/javadocs/net/authorize/data/cim/class-use/CustomerProfile.html deleted file mode 100644 index f86135c..0000000 --- a/docs/javadocs/net/authorize/data/cim/class-use/CustomerProfile.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.cim.CustomerProfile (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.cim.CustomerProfile

-
- - - - - - - - - - - - - -
-Packages that use CustomerProfile
net.authorize.cim  
net.authorize.data.cim  
-  -

- - - - - -
-Uses of CustomerProfile in net.authorize.cim
-  -

- - - - - - - - - -
Fields in net.authorize.cim declared as CustomerProfile
-protected  CustomerProfileResult.customerProfile - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.cim that return CustomerProfile
- CustomerProfileResult.getCustomerProfile() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type CustomerProfile
- voidTransaction.setCustomerProfile(CustomerProfile customerProfile) - -
-          Set the customer profile.
-  -

- - - - - -
-Uses of CustomerProfile in net.authorize.data.cim
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim that return CustomerProfile
-static CustomerProfileCustomerProfile.createCustomerProfile() - -
-          Create a new CustomerProfile object
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/class-use/DirectResponse.html b/docs/javadocs/net/authorize/data/cim/class-use/DirectResponse.html deleted file mode 100644 index 1e2d233..0000000 --- a/docs/javadocs/net/authorize/data/cim/class-use/DirectResponse.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.cim.DirectResponse (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.cim.DirectResponse

-
- - - - - - - - - - - - - -
-Packages that use DirectResponse
net.authorize.cim  
net.authorize.data.cim  
-  -

- - - - - -
-Uses of DirectResponse in net.authorize.cim
-  -

- - - - - - - - - -
Fields in net.authorize.cim with type parameters of type DirectResponse
-protected  java.util.ArrayList<DirectResponse>Result.directResponseList - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.cim that return types with arguments of type DirectResponse
- java.util.ArrayList<DirectResponse>Result.getDirectResponseList() - -
-          Get the directResponse list
-  -

- - - - - -
-Uses of DirectResponse in net.authorize.data.cim
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim that return DirectResponse
-static DirectResponseDirectResponse.createDirectResponse(java.lang.String directResponseString) - -
-          Create a validation direct response from a passed in string.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/class-use/PaymentProfile.html b/docs/javadocs/net/authorize/data/cim/class-use/PaymentProfile.html deleted file mode 100644 index 84689c8..0000000 --- a/docs/javadocs/net/authorize/data/cim/class-use/PaymentProfile.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.cim.PaymentProfile (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.cim.PaymentProfile

-
- - - - - - - - - - - - - -
-Packages that use PaymentProfile
net.authorize.cim  
net.authorize.data.cim  
-  -

- - - - - -
-Uses of PaymentProfile in net.authorize.cim
-  -

- - - - - - - - - -
Fields in net.authorize.cim with type parameters of type PaymentProfile
-protected  java.util.ArrayList<PaymentProfile>Result.paymentProfileList - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.cim that return PaymentProfile
- PaymentProfileResult.getCustomerPaymentProfile() - -
-          Get the first/only payment profile from a possible list of many
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.cim that return types with arguments of type PaymentProfile
- java.util.ArrayList<PaymentProfile>Result.getCustomerPaymentProfileList() - -
-           
- java.util.ArrayList<PaymentProfile>Transaction.getPaymentProfileList() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type PaymentProfile
- voidTransaction.addPaymentProfile(PaymentProfile paymentProfile) - -
-          Add a payment profile.
-  -

- - - - - - - - - -
Method parameters in net.authorize.cim with type arguments of type PaymentProfile
- voidTransaction.setPaymentProfileList(java.util.ArrayList<PaymentProfile> paymentProfileList) - -
-           
-  -

- - - - - -
-Uses of PaymentProfile in net.authorize.data.cim
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim that return PaymentProfile
-static PaymentProfilePaymentProfile.createPaymentProfile() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/package-frame.html b/docs/javadocs/net/authorize/data/cim/package-frame.html deleted file mode 100644 index a1fc9ab..0000000 --- a/docs/javadocs/net/authorize/data/cim/package-frame.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - -net.authorize.data.cim (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data.cim - - - - -
-Classes  - -
-CustomerProfile -
-DirectResponse -
-PaymentProfile
- - - - diff --git a/docs/javadocs/net/authorize/data/cim/package-summary.html b/docs/javadocs/net/authorize/data/cim/package-summary.html deleted file mode 100644 index 08b6922..0000000 --- a/docs/javadocs/net/authorize/data/cim/package-summary.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -net.authorize.data.cim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data.cim -

- - - - - - - - - - - - - - - - - -
-Class Summary
CustomerProfile 
DirectResponse 
PaymentProfile 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/package-tree.html b/docs/javadocs/net/authorize/data/cim/package-tree.html deleted file mode 100644 index a1f5018..0000000 --- a/docs/javadocs/net/authorize/data/cim/package-tree.html +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - -net.authorize.data.cim Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data.cim -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.data.cim.CustomerProfile (implements java.io.Serializable) -
    • net.authorize.data.cim.DirectResponse (implements java.io.Serializable) -
    • net.authorize.data.cim.PaymentProfile (implements java.io.Serializable) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/cim/package-use.html b/docs/javadocs/net/authorize/data/cim/package-use.html deleted file mode 100644 index 23e0075..0000000 --- a/docs/javadocs/net/authorize/data/cim/package-use.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - -Uses of Package net.authorize.data.cim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data.cim

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.data.cim
net.authorize.cim  
net.authorize.data.cim  
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.data.cim used by net.authorize.cim
CustomerProfile - -
-           
DirectResponse - -
-           
PaymentProfile - -
-           
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.data.cim used by net.authorize.data.cim
CustomerProfile - -
-           
DirectResponse - -
-           
PaymentProfile - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/Address.html b/docs/javadocs/net/authorize/data/class-use/Address.html deleted file mode 100644 index 7e250c4..0000000 --- a/docs/javadocs/net/authorize/data/class-use/Address.html +++ /dev/null @@ -1,464 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.Address (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.Address

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use Address
net.authorize  
net.authorize.cim  
net.authorize.data  
net.authorize.data.cim  
net.authorize.xml  
-  -

- - - - - -
-Uses of Address in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as Address
-protected  AddressNVPTransaction.billToAddress - -
-           
-  -

- - - - - -
-Uses of Address in net.authorize.cim
-  -

- - - - - - - - - -
Methods in net.authorize.cim that return Address
- AddressResult.getCustomerShippingAddress() - -
-          Get the customer shipping address.
-  -

- - - - - - - - - -
Methods in net.authorize.cim with parameters of type Address
- voidTransaction.setShipTo(Address shipTo) - -
-          Set shipping information.
-  -

- - - - - -
-Uses of Address in net.authorize.data
-  -

- - - - - - - - - -
Subclasses of Address in net.authorize.data
- classShippingAddress - -
-          Product shipping address.
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.data that return Address
-static AddressAddress.createAddress() - -
-           
- AddressCustomer.getBillTo() - -
-           
- AddressCustomer.getShipTo() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data with parameters of type Address
- voidCustomer.setBillTo(Address bill_to) - -
-           
- voidCustomer.setShipTo(Address ship_to) - -
-           
-  -

- - - - - -
-Uses of Address in net.authorize.data.cim
-  -

- - - - - - - - - -
Fields in net.authorize.data.cim declared as Address
-protected  AddressPaymentProfile.billTo - -
-           
-  -

- - - - - - - - - -
Fields in net.authorize.data.cim with type parameters of type Address
-protected  java.util.ArrayList<Address>CustomerProfile.shipToAddressList - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.cim that return Address
- AddressPaymentProfile.getBillTo() - -
-          Gets the value of the billTo property.
- AddressCustomerProfile.getShipToAddress() - -
-          Return the first (perhaps only) address in the list.
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim that return types with arguments of type Address
- java.util.ArrayList<Address>CustomerProfile.getShipToAddressList() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.cim with parameters of type Address
- voidCustomerProfile.addShipToAddress(Address shipTo) - -
-          Add an address to the ship to list.
- voidPaymentProfile.setBillTo(Address value) - -
-          Sets the value of the billTo property.
-  -

- - - - - - - - - -
Method parameters in net.authorize.data.cim with type arguments of type Address
- voidCustomerProfile.setShipToAddressList(java.util.ArrayList<Address> shipToAddressList) - -
-           
-  -

- - - - - -
-Uses of Address in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as Address
-protected  AddressXMLTransaction.billToAddress - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/Customer.html b/docs/javadocs/net/authorize/data/class-use/Customer.html deleted file mode 100644 index 0501801..0000000 --- a/docs/javadocs/net/authorize/data/class-use/Customer.html +++ /dev/null @@ -1,461 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.Customer (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.Customer

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use Customer
net.authorize  
net.authorize.data  
net.authorize.data.arb  
net.authorize.data.reporting  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of Customer in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as Customer
-protected  CustomerNVPTransaction.customer - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return Customer
- CustomerITransaction.getCustomer() - -
-           
- CustomerNVPTransaction.getCustomer() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize with parameters of type Customer
- voidITransaction.setCustomer(Customer customer) - -
-           
- voidNVPTransaction.setCustomer(Customer customer) - -
-           
-  -

- - - - - -
-Uses of Customer in net.authorize.data
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data that return Customer
-static CustomerCustomer.createCustomer() - -
-           
-static CustomerCustomer.createCustomer(CustomerType customerType) - -
-           
-  -

- - - - - -
-Uses of Customer in net.authorize.data.arb
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb that return Customer
- CustomerSubscription.getCustomer() - -
-          Get the customer container.
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb with parameters of type Customer
- voidSubscription.setCustomer(Customer customer) - -
-          Set the customer container.
-  -

- - - - - -
-Uses of Customer in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return Customer
- CustomerTransactionDetails.getCustomer() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type Customer
- voidTransactionDetails.setCustomer(Customer customer) - -
-           
-  -

- - - - - -
-Uses of Customer in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return Customer
- CustomerTransaction.getCustomer() - -
-          Get the Customer information associated with the transaction.
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type Customer
- voidTransaction.setCustomer(Customer customer) - -
-          Set the Customer information for the transaction request.
-  -

- - - - - -
-Uses of Customer in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as Customer
-protected  CustomerXMLTransaction.customer - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return Customer
- CustomerXMLTransaction.getCustomer() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml with parameters of type Customer
- voidXMLTransaction.setCustomer(Customer customer) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/CustomerType.html b/docs/javadocs/net/authorize/data/class-use/CustomerType.html deleted file mode 100644 index bff99a5..0000000 --- a/docs/javadocs/net/authorize/data/class-use/CustomerType.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.CustomerType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.CustomerType

-
- - - - - - - - - - - - - -
-Packages that use CustomerType
net.authorize.data  
net.authorize.data.cim  
-  -

- - - - - -
-Uses of CustomerType in net.authorize.data
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data that return CustomerType
-static CustomerTypeCustomerType.findByName(java.lang.String name) - -
-          Lookup a CustomerType by it's name.
- CustomerTypeCustomer.getCustomerType() - -
-           
-static CustomerTypeCustomerType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static CustomerType[]CustomerType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data with parameters of type CustomerType
-static CustomerCustomer.createCustomer(CustomerType customerType) - -
-           
- voidCustomer.setCustomerType(CustomerType type) - -
-           
-  -

- - - - - -
-Uses of CustomerType in net.authorize.data.cim
-  -

- - - - - - - - - -
Fields in net.authorize.data.cim declared as CustomerType
-protected  CustomerTypePaymentProfile.customerType - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim that return CustomerType
- CustomerTypePaymentProfile.getCustomerType() - -
-          Gets the value of the customerType property.
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim with parameters of type CustomerType
- voidPaymentProfile.setCustomerType(CustomerType value) - -
-          Sets the value of the customerType property.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/DriversLicense.html b/docs/javadocs/net/authorize/data/class-use/DriversLicense.html deleted file mode 100644 index 28fc860..0000000 --- a/docs/javadocs/net/authorize/data/class-use/DriversLicense.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.DriversLicense (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.DriversLicense

-
- - - - - - - - - -
-Packages that use DriversLicense
net.authorize.data  
-  -

- - - - - -
-Uses of DriversLicense in net.authorize.data
-  -

- - - - - - - - - -
Methods in net.authorize.data that return DriversLicense
- DriversLicenseCustomer.getLicense() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data with parameters of type DriversLicense
- voidCustomer.setLicense(DriversLicense license) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/EmailReceipt.html b/docs/javadocs/net/authorize/data/class-use/EmailReceipt.html deleted file mode 100644 index e86f16d..0000000 --- a/docs/javadocs/net/authorize/data/class-use/EmailReceipt.html +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.EmailReceipt (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.EmailReceipt

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use EmailReceipt
net.authorize  
net.authorize.data  
net.authorize.notification  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of EmailReceipt in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as EmailReceipt
-protected  EmailReceiptNVPTransaction.emailReceipt - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return EmailReceipt
- EmailReceiptITransaction.getEmailReceipt() - -
-           
- EmailReceiptNVPTransaction.getEmailReceipt() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize with parameters of type EmailReceipt
- voidITransaction.setEmailReceipt(EmailReceipt emailReceipt) - -
-           
- voidNVPTransaction.setEmailReceipt(EmailReceipt emailReceipt) - -
-           
-  -

- - - - - -
-Uses of EmailReceipt in net.authorize.data
-  -

- - - - - - - - - -
Methods in net.authorize.data that return EmailReceipt
-static EmailReceiptEmailReceipt.createEmailReceipt() - -
-           
-  -

- - - - - -
-Uses of EmailReceipt in net.authorize.notification
-  -

- - - - - - - - - -
Methods in net.authorize.notification with parameters of type EmailReceipt
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.lang.String transId, - java.lang.String customerEmail, - EmailReceipt emailReceiptSettings) - -
-          Create a transaction.
-  -

- - - - - -
-Uses of EmailReceipt in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return EmailReceipt
- EmailReceiptTransaction.getEmailReceipt() - -
-          Get the EmailReceipt associated with the transaction.
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type EmailReceipt
- voidTransaction.setEmailReceipt(EmailReceipt emailReceipt) - -
-          Set the EmailReceipt information for the transaction request.
-  -

- - - - - -
-Uses of EmailReceipt in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as EmailReceipt
-protected  EmailReceiptXMLTransaction.emailReceipt - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return EmailReceipt
- EmailReceiptXMLTransaction.getEmailReceipt() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml with parameters of type EmailReceipt
- voidXMLTransaction.setEmailReceipt(EmailReceipt emailReceipt) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/Order.html b/docs/javadocs/net/authorize/data/class-use/Order.html deleted file mode 100644 index a8d5d51..0000000 --- a/docs/javadocs/net/authorize/data/class-use/Order.html +++ /dev/null @@ -1,453 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.Order (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.Order

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use Order
net.authorize  
net.authorize.data  
net.authorize.data.arb  
net.authorize.data.reporting  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of Order in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as Order
-protected  OrderNVPTransaction.order - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return Order
- OrderITransaction.getOrder() - -
-           
- OrderNVPTransaction.getOrder() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize with parameters of type Order
- voidITransaction.setOrder(Order order) - -
-           
- voidNVPTransaction.setOrder(Order order) - -
-           
-  -

- - - - - -
-Uses of Order in net.authorize.data
-  -

- - - - - - - - - -
Methods in net.authorize.data that return Order
-static OrderOrder.createOrder() - -
-           
-  -

- - - - - -
-Uses of Order in net.authorize.data.arb
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb that return Order
- OrderSubscription.getOrder() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb with parameters of type Order
- voidSubscription.setOrder(Order order) - -
-           
-  -

- - - - - -
-Uses of Order in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return Order
- OrderTransactionDetails.getOrder() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type Order
- voidTransactionDetails.setOrder(Order order) - -
-           
-  -

- - - - - -
-Uses of Order in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return Order
- OrderTransaction.getOrder() - -
-          Get the Order associated with the transaction.
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type Order
- voidTransaction.setOrder(Order order) - -
-          Set the Order (and OrderItems) for the transaction request.
-  -

- - - - - -
-Uses of Order in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as Order
-protected  OrderXMLTransaction.order - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return Order
- OrderXMLTransaction.getOrder() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml with parameters of type Order
- voidXMLTransaction.setOrder(Order order) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/OrderItem.html b/docs/javadocs/net/authorize/data/class-use/OrderItem.html deleted file mode 100644 index e1c3761..0000000 --- a/docs/javadocs/net/authorize/data/class-use/OrderItem.html +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.OrderItem (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.OrderItem

-
- - - - - - - - - -
-Packages that use OrderItem
net.authorize.data  
-  -

- - - - - -
-Uses of OrderItem in net.authorize.data
-  -

- - - - - - - - - -
Fields in net.authorize.data with type parameters of type OrderItem
-protected  java.util.List<OrderItem>Order.orderItems - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data that return OrderItem
-static OrderItemOrderItem.createOrderItem() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data that return types with arguments of type OrderItem
- java.util.List<OrderItem>Order.getOrderItems() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data with parameters of type OrderItem
- voidOrder.addOrderItem(OrderItem orderItem) - -
-          Adds an OrderItem to the list of OrderItems - provided the list of items - isn't already at the max of 30.
-  -

- - - - - - - - - -
Method parameters in net.authorize.data with type arguments of type OrderItem
- voidOrder.setOrderItems(java.util.List<OrderItem> orderItems) - -
-          Sets the list of OrderItems to the list being passed in.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/Payment.html b/docs/javadocs/net/authorize/data/class-use/Payment.html deleted file mode 100644 index 9a9be16..0000000 --- a/docs/javadocs/net/authorize/data/class-use/Payment.html +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.Payment (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.Payment

-
- - - - - - - - - - - - - - - - - - - - - -
-Packages that use Payment
net.authorize.data  
net.authorize.data.arb  
net.authorize.data.cim  
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of Payment in net.authorize.data
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data that return Payment
-static PaymentPayment.createPayment(BankAccount in_account) - -
-           
-static PaymentPayment.createPayment(CreditCard in_credit) - -
-           
-  -

- - - - - -
-Uses of Payment in net.authorize.data.arb
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb that return Payment
- PaymentSubscription.getPayment() - -
-          Get the payment container.
-  -

- - - - - - - - - -
Methods in net.authorize.data.arb with parameters of type Payment
- voidSubscription.setPayment(Payment payment) - -
-          Set the payment container for the subscription.
-  -

- - - - - -
-Uses of Payment in net.authorize.data.cim
-  -

- - - - - - - - - -
Fields in net.authorize.data.cim with type parameters of type Payment
-protected  java.util.ArrayList<Payment>PaymentProfile.paymentList - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim that return types with arguments of type Payment
- java.util.ArrayList<Payment>PaymentProfile.getPaymentList() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.cim with parameters of type Payment
- voidPaymentProfile.addPayment(Payment payment) - -
-          Add a Payment container to the payment list.
-  -

- - - - - - - - - -
Method parameters in net.authorize.data.cim with type arguments of type Payment
- voidPaymentProfile.setPaymentList(java.util.ArrayList<Payment> paymentList) - -
-           
-  -

- - - - - -
-Uses of Payment in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return Payment
- PaymentTransactionDetails.getPayment() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type Payment
- voidTransactionDetails.setPayment(Payment payment) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/PaymentMethod.html b/docs/javadocs/net/authorize/data/class-use/PaymentMethod.html deleted file mode 100644 index ee4b8f1..0000000 --- a/docs/javadocs/net/authorize/data/class-use/PaymentMethod.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.PaymentMethod (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.PaymentMethod

-
- - - - - - - - - -
-Packages that use PaymentMethod
net.authorize.data  
-  -

- - - - - -
-Uses of PaymentMethod in net.authorize.data
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data that return PaymentMethod
-static PaymentMethodPaymentMethod.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static PaymentMethod[]PaymentMethod.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/PermissionType.html b/docs/javadocs/net/authorize/data/class-use/PermissionType.html deleted file mode 100644 index d628530..0000000 --- a/docs/javadocs/net/authorize/data/class-use/PermissionType.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.PermissionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.PermissionType

-
- - - - - - - - - - - - - -
-Packages that use PermissionType
net.authorize.data  
net.authorize.mobile  
-  -

- - - - - -
-Uses of PermissionType in net.authorize.data
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.data that return PermissionType
-static PermissionTypePermissionType.findByValue(java.lang.String value) - -
-          Lookup a permission by it's value.
-static PermissionTypePermissionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static PermissionType[]PermissionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - -
-Uses of PermissionType in net.authorize.mobile
-  -

- - - - - - - - - -
Methods in net.authorize.mobile that return types with arguments of type PermissionType
- java.util.ArrayList<PermissionType>Result.getUserPermissions() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/ShippingAddress.html b/docs/javadocs/net/authorize/data/class-use/ShippingAddress.html deleted file mode 100644 index 76ac391..0000000 --- a/docs/javadocs/net/authorize/data/class-use/ShippingAddress.html +++ /dev/null @@ -1,363 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.ShippingAddress (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.ShippingAddress

-
- - - - - - - - - - - - - - - - - - - - - -
-Packages that use ShippingAddress
net.authorize  
net.authorize.data  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of ShippingAddress in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as ShippingAddress
-protected  ShippingAddressNVPTransaction.shippingAddress - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return ShippingAddress
- ShippingAddressITransaction.getShippingAddress() - -
-           
- ShippingAddressNVPTransaction.getShippingAddress() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize with parameters of type ShippingAddress
- voidITransaction.setShippingAddress(ShippingAddress shippingAddress) - -
-           
- voidNVPTransaction.setShippingAddress(ShippingAddress shippingAddress) - -
-           
-  -

- - - - - -
-Uses of ShippingAddress in net.authorize.data
-  -

- - - - - - - - - -
Methods in net.authorize.data that return ShippingAddress
-static ShippingAddressShippingAddress.createShippingAddress() - -
-           
-  -

- - - - - -
-Uses of ShippingAddress in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return ShippingAddress
- ShippingAddressTransaction.getShippingAddress() - -
-          Get the ShippingAddress for the transaction request.
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type ShippingAddress
- voidTransaction.setShippingAddress(ShippingAddress shippingAddress) - -
-          Set the ShippingAddress for the transaction request.
-  -

- - - - - -
-Uses of ShippingAddress in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as ShippingAddress
-protected  ShippingAddressXMLTransaction.shippingAddress - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return ShippingAddress
- ShippingAddressXMLTransaction.getShippingAddress() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml with parameters of type ShippingAddress
- voidXMLTransaction.setShippingAddress(ShippingAddress shippingAddress) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/class-use/ShippingCharges.html b/docs/javadocs/net/authorize/data/class-use/ShippingCharges.html deleted file mode 100644 index e152c58..0000000 --- a/docs/javadocs/net/authorize/data/class-use/ShippingCharges.html +++ /dev/null @@ -1,403 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.ShippingCharges (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.ShippingCharges

-
- - - - - - - - - - - - - - - - - - - - - -
-Packages that use ShippingCharges
net.authorize  
net.authorize.data  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of ShippingCharges in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as ShippingCharges
-protected  ShippingChargesNVPTransaction.shippingCharges - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return ShippingCharges
- ShippingChargesITransaction.getShippingCharges() - -
-           
- ShippingChargesNVPTransaction.getShippingCharges() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize with parameters of type ShippingCharges
- voidITransaction.setShippingCharges(ShippingCharges shippingCharges) - -
-           
- voidNVPTransaction.setShippingCharges(ShippingCharges shippingCharges) - -
-           
-  -

- - - - - -
-Uses of ShippingCharges in net.authorize.data
-  -

- - - - - - - - - -
Fields in net.authorize.data declared as ShippingCharges
-protected  ShippingChargesOrder.shippingCharges - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data that return ShippingCharges
-static ShippingChargesShippingCharges.createShippingCharges() - -
-           
- ShippingChargesOrder.getShippingCharges() - -
-          Get the shipping charges associated with this order.
-  -

- - - - - - - - - -
Methods in net.authorize.data with parameters of type ShippingCharges
- voidOrder.setShippingCharges(ShippingCharges shippingCharges) - -
-          Set the shipping charges assocaited with this order.
-  -

- - - - - -
-Uses of ShippingCharges in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return ShippingCharges
- ShippingChargesTransaction.getShippingCharges() - -
-          Get the ShippingCharges associated with the transaction.
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type ShippingCharges
- voidTransaction.setShippingCharges(ShippingCharges shippingCharges) - -
-          Set the ShippingCharges for the transaction request.
-  -

- - - - - -
-Uses of ShippingCharges in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as ShippingCharges
-protected  ShippingChargesXMLTransaction.shippingCharges - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return ShippingCharges
- ShippingChargesXMLTransaction.getShippingCharges() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml with parameters of type ShippingCharges
- voidXMLTransaction.setShippingCharges(ShippingCharges shippingCharges) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/AVSCode.html b/docs/javadocs/net/authorize/data/creditcard/AVSCode.html deleted file mode 100644 index 8110b7c..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/AVSCode.html +++ /dev/null @@ -1,561 +0,0 @@ - - - - - - -AVSCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.creditcard -
-Enum AVSCode

-
-java.lang.Object
-  extended by java.lang.Enum<AVSCode>
-      extended by net.authorize.data.creditcard.AVSCode
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AVSCode>
-
-
-
-
public enum AVSCode
extends java.lang.Enum<AVSCode>
- - -

-Address Verification Service (AVS) response codes. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
A - -
-           
B - -
-           
E - -
-           
G - -
-           
N - -
-           
P - -
-           
R - -
-           
S - -
-           
U - -
-           
W - -
-           
X - -
-           
Y - -
-           
Z - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static AVSCodefindByValue(java.lang.String value) - -
-           
- java.lang.StringgetDescription() - -
-           
- java.lang.StringgetValue() - -
-           
-static AVSCodevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static AVSCode[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-A

-
-public static final AVSCode A
-
-
-
-
-
- -

-B

-
-public static final AVSCode B
-
-
-
-
-
- -

-E

-
-public static final AVSCode E
-
-
-
-
-
- -

-G

-
-public static final AVSCode G
-
-
-
-
-
- -

-N

-
-public static final AVSCode N
-
-
-
-
-
- -

-P

-
-public static final AVSCode P
-
-
-
-
-
- -

-R

-
-public static final AVSCode R
-
-
-
-
-
- -

-S

-
-public static final AVSCode S
-
-
-
-
-
- -

-U

-
-public static final AVSCode U
-
-
-
-
-
- -

-W

-
-public static final AVSCode W
-
-
-
-
-
- -

-X

-
-public static final AVSCode X
-
-
-
-
-
- -

-Y

-
-public static final AVSCode Y
-
-
-
-
-
- -

-Z

-
-public static final AVSCode Z
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static AVSCode[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (AVSCode c : AVSCode.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static AVSCode valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByValue

-
-public static AVSCode findByValue(java.lang.String value)
-
-
-
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
-
- -

-getDescription

-
-public java.lang.String getDescription()
-
-
- -
Returns:
the description
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/CardType.html b/docs/javadocs/net/authorize/data/creditcard/CardType.html deleted file mode 100644 index fb06e44..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/CardType.html +++ /dev/null @@ -1,461 +0,0 @@ - - - - - - -CardType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.creditcard -
-Enum CardType

-
-java.lang.Object
-  extended by java.lang.Enum<CardType>
-      extended by net.authorize.data.creditcard.CardType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CardType>
-
-
-
-
public enum CardType
extends java.lang.Enum<CardType>
- - -

-Supported payment card types. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
AMERICAN_EXPRESS - -
-           
DINERS_CLUB - -
-           
DISCOVER - -
-           
ECHECK - -
-           
JCB - -
-           
MASTER_CARD - -
-           
UNKNOWN - -
-           
VISA - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static CardTypefindByValue(java.lang.String value) - -
-           
- java.lang.StringgetValue() - -
-           
-static CardTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static CardType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-VISA

-
-public static final CardType VISA
-
-
-
-
-
- -

-MASTER_CARD

-
-public static final CardType MASTER_CARD
-
-
-
-
-
- -

-AMERICAN_EXPRESS

-
-public static final CardType AMERICAN_EXPRESS
-
-
-
-
-
- -

-DISCOVER

-
-public static final CardType DISCOVER
-
-
-
-
-
- -

-DINERS_CLUB

-
-public static final CardType DINERS_CLUB
-
-
-
-
-
- -

-JCB

-
-public static final CardType JCB
-
-
-
-
-
- -

-ECHECK

-
-public static final CardType ECHECK
-
-
-
-
-
- -

-UNKNOWN

-
-public static final CardType UNKNOWN
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static CardType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (CardType c : CardType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static CardType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByValue

-
-public static CardType findByValue(java.lang.String value)
-
-
-
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/CreditCard.html b/docs/javadocs/net/authorize/data/creditcard/CreditCard.html deleted file mode 100644 index e64b06a..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/CreditCard.html +++ /dev/null @@ -1,894 +0,0 @@ - - - - - - -CreditCard (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.creditcard -
-Class CreditCard

-
-java.lang.Object
-  extended by net.authorize.data.creditcard.CreditCard
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class CreditCard
extends java.lang.Object
implements java.io.Serializable
- - -

-Credit card specific information. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-static java.lang.StringARB_EXPIRY_DATE_FORMAT - -
-           
-  - - - - - - - - - - - -
-Constructor Summary
-protected CreditCard() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static CreditCardcreateCreditCard() - -
-           
- AVSCodegetAvsCode() - -
-           
- java.lang.StringgetCardCode() - -
-           
- java.lang.StringgetCardholderAuthenticationIndicator() - -
-           
- java.lang.StringgetCardholderAuthenticationValue() - -
-           
- CardTypegetCardType() - -
-           
- java.lang.StringgetCreditCardNumber() - -
-           
- java.util.DategetExpirationDate() - -
-          Return the expiration date.
- java.lang.StringgetExpirationMonth() - -
-           
- java.lang.StringgetExpirationYear() - -
-           
- java.lang.StringgetTrack1() - -
-           
- java.lang.StringgetTrack2() - -
-           
- booleanisCardPresent() - -
-           
- voidsetAvsCode(AVSCode avsCode) - -
-           
- voidsetCardCode(java.lang.String cardCode) - -
-           
- voidsetCardholderAuthenticationIndicator(java.lang.String cardholderAuthenticationIndicator) - -
-           
- voidsetCardholderAuthenticationValue(java.lang.String cardholderAuthenticationValue) - -
-           
- voidsetCardPresent(boolean cardPresent) - -
-           
- voidsetCardType(CardType cardType) - -
-           
- voidsetCreditCardNumber(java.lang.String creditCardNumber) - -
-           
- voidsetExpirationDate(java.util.Date expirationDate) - -
-          Set the expiration date.
- voidsetExpirationDate(java.lang.String expiration_date) - -
-          Set the expiration date using yyyy-MM as the format.
- voidsetExpirationMonth(java.lang.String expirationMonth) - -
-           
- voidsetExpirationYear(java.lang.String expirationYear) - -
-           
- voidsetMaskedCreditCardNumber(java.lang.String maskedCreditCardNumber) - -
-          Used in the response that comes back to offer access to the partial credit card number.
- voidsetTrack1(java.lang.String track1) - -
-           
- voidsetTrack2(java.lang.String track2) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-ARB_EXPIRY_DATE_FORMAT

-
-public static java.lang.String ARB_EXPIRY_DATE_FORMAT
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-CreditCard

-
-protected CreditCard()
-
-
- - - - - - - - -
-Method Detail
- -

-createCreditCard

-
-public static CreditCard createCreditCard()
-
-
-
-
-
-
-
-
-
- -

-getCreditCardNumber

-
-public java.lang.String getCreditCardNumber()
-
-
-
-
-
- -
Returns:
the creditCardNumber
-
-
-
- -

-setCreditCardNumber

-
-public void setCreditCardNumber(java.lang.String creditCardNumber)
-
-
-
-
-
-
Parameters:
creditCardNumber - the creditCardNumber to set
-
-
-
- -

-setMaskedCreditCardNumber

-
-public void setMaskedCreditCardNumber(java.lang.String maskedCreditCardNumber)
-
-
Used in the response that comes back to offer access to the partial credit card number. -

-

-
-
-
-
Parameters:
maskedCreditCardNumber -
-
-
-
- -

-getExpirationMonth

-
-public java.lang.String getExpirationMonth()
-
-
-
-
-
- -
Returns:
the expirationMonth
-
-
-
- -

-setExpirationMonth

-
-public void setExpirationMonth(java.lang.String expirationMonth)
-
-
-
-
-
-
Parameters:
expirationMonth - the expirationMonth to set
-
-
-
- -

-getExpirationYear

-
-public java.lang.String getExpirationYear()
-
-
-
-
-
- -
Returns:
the expirationYear
-
-
-
- -

-setExpirationYear

-
-public void setExpirationYear(java.lang.String expirationYear)
-
-
-
-
-
-
Parameters:
expirationYear - the expirationYear to set
-
-
-
- -

-getExpirationDate

-
-public java.util.Date getExpirationDate()
-
-
Return the expiration date. -

-

-
-
-
- -
Returns:
expirationDate
-
-
-
- -

-setExpirationDate

-
-public void setExpirationDate(java.util.Date expirationDate)
-
-
Set the expiration date. -

-

-
-
-
-
Parameters:
expirationDate -
-
-
-
- -

-setExpirationDate

-
-public void setExpirationDate(java.lang.String expiration_date)
-
-
Set the expiration date using yyyy-MM as the format. -

-

-
-
-
-
Parameters:
expiration_date -
-
-
-
- -

-getCardType

-
-public CardType getCardType()
-
-
-
-
-
- -
Returns:
the cardType
-
-
-
- -

-setCardType

-
-public void setCardType(CardType cardType)
-
-
-
-
-
-
Parameters:
cardType - the cardType to set
-
-
-
- -

-getCardCode

-
-public java.lang.String getCardCode()
-
-
-
-
-
- -
Returns:
the card code
-
-
-
- -

-setCardCode

-
-public void setCardCode(java.lang.String cardCode)
-
-
-
-
-
-
Parameters:
cardCode - the card code to set
-
-
-
- -

-getCardholderAuthenticationIndicator

-
-public java.lang.String getCardholderAuthenticationIndicator()
-
-
-
-
-
- -
Returns:
the cardholderAuthenticationIndicator
-
-
-
- -

-setCardholderAuthenticationIndicator

-
-public void setCardholderAuthenticationIndicator(java.lang.String cardholderAuthenticationIndicator)
-
-
-
-
-
-
Parameters:
cardholderAuthenticationIndicator - the cardholderAuthenticationIndicator to set
-
-
-
- -

-getCardholderAuthenticationValue

-
-public java.lang.String getCardholderAuthenticationValue()
-
-
-
-
-
- -
Returns:
the cardholderAuthenticationValue
-
-
-
- -

-setCardholderAuthenticationValue

-
-public void setCardholderAuthenticationValue(java.lang.String cardholderAuthenticationValue)
-
-
-
-
-
-
Parameters:
cardholderAuthenticationValue - the cardholderAuthenticationValue to set
-
-
-
- -

-getAvsCode

-
-public AVSCode getAvsCode()
-
-
-
-
-
- -
Returns:
the avsCode
-
-
-
- -

-setAvsCode

-
-public void setAvsCode(AVSCode avsCode)
-
-
-
-
-
-
Parameters:
avsCode - the avsCode to set
-
-
-
- -

-getTrack1

-
-public java.lang.String getTrack1()
-
-
-
-
-
- -
Returns:
the track1
-
-
-
- -

-setTrack1

-
-public void setTrack1(java.lang.String track1)
-
-
-
-
-
-
Parameters:
track1 - the track1 to set
-
-
-
- -

-getTrack2

-
-public java.lang.String getTrack2()
-
-
-
-
-
- -
Returns:
the track2
-
-
-
- -

-setTrack2

-
-public void setTrack2(java.lang.String track2)
-
-
-
-
-
-
Parameters:
track2 - the track2 to set
-
-
-
- -

-isCardPresent

-
-public boolean isCardPresent()
-
-
-
-
-
- -
Returns:
the cardPresent
-
-
-
- -

-setCardPresent

-
-public void setCardPresent(boolean cardPresent)
-
-
-
-
-
-
Parameters:
cardPresent - the cardPresent to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/class-use/AVSCode.html b/docs/javadocs/net/authorize/data/creditcard/class-use/AVSCode.html deleted file mode 100644 index b1a35e0..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/class-use/AVSCode.html +++ /dev/null @@ -1,311 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.creditcard.AVSCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.creditcard.AVSCode

-
- - - - - - - - - - - - - - - - - -
-Packages that use AVSCode
net.authorize.aim  
net.authorize.data.creditcard  
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of AVSCode in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return AVSCode
- AVSCodeResult.getAvsResultCode() - -
-          Return the AVS result code.
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type AVSCode
- voidResult.setAvsResultCode(AVSCode avsResultCode) - -
-          Set the AVS result code.
-  -

- - - - - -
-Uses of AVSCode in net.authorize.data.creditcard
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.creditcard that return AVSCode
-static AVSCodeAVSCode.findByValue(java.lang.String value) - -
-           
- AVSCodeCreditCard.getAvsCode() - -
-           
-static AVSCodeAVSCode.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static AVSCode[]AVSCode.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.creditcard with parameters of type AVSCode
- voidCreditCard.setAvsCode(AVSCode avsCode) - -
-           
-  -

- - - - - -
-Uses of AVSCode in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return AVSCode
- AVSCodeTransactionDetails.getAvsResponse() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type AVSCode
- voidTransactionDetails.setAvsResponse(AVSCode avsResponse) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/class-use/CardType.html b/docs/javadocs/net/authorize/data/creditcard/class-use/CardType.html deleted file mode 100644 index e8f14c8..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/class-use/CardType.html +++ /dev/null @@ -1,401 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.creditcard.CardType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.creditcard.CardType

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use CardType
net.authorize.aim  
net.authorize.data.aim  
net.authorize.data.creditcard  
net.authorize.data.reporting  
net.authorize.util  
-  -

- - - - - -
-Uses of CardType in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return CardType
- CardTypeResult.getAccountType() - -
-          Return the account card type.
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type CardType
- voidResult.setAccountType(CardType accountType) - -
-          Set the account card type.
-  -

- - - - - -
-Uses of CardType in net.authorize.data.aim
-  -

- - - - - - - - - -
Methods in net.authorize.data.aim that return CardType
- CardTypeSplitTenderPayment.getAccountType() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.aim with parameters of type CardType
- voidSplitTenderPayment.setAccountType(CardType accountType) - -
-           
-  -

- - - - - -
-Uses of CardType in net.authorize.data.creditcard
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.creditcard that return CardType
-static CardTypeCardType.findByValue(java.lang.String value) - -
-           
- CardTypeCreditCard.getCardType() - -
-           
-static CardTypeCardType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static CardType[]CardType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.creditcard with parameters of type CardType
- voidCreditCard.setCardType(CardType cardType) - -
-           
-  -

- - - - - -
-Uses of CardType in net.authorize.data.reporting
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.reporting that return CardType
- CardTypeBatchStatistics.getAccountType() - -
-           
- CardTypeTransactionDetails.getAccountType() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type CardType
- voidBatchStatistics.setAccountType(CardType accountType) - -
-           
- voidTransactionDetails.setAccountType(CardType accountType) - -
-           
-  -

- - - - - -
-Uses of CardType in net.authorize.util
-  -

- - - - - - - - - -
Methods in net.authorize.util that return CardType
-static CardTypeLuhn.getCardType(java.lang.String cardNumber) - -
-          Return the CardType by inspecting the first digits of the card number.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/class-use/CreditCard.html b/docs/javadocs/net/authorize/data/creditcard/class-use/CreditCard.html deleted file mode 100644 index c52500f..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/class-use/CreditCard.html +++ /dev/null @@ -1,416 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.creditcard.CreditCard (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.creditcard.CreditCard

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use CreditCard
net.authorize  
net.authorize.data  
net.authorize.data.creditcard  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of CreditCard in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as CreditCard
-protected  CreditCardNVPTransaction.creditCard - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return CreditCard
- CreditCardITransaction.getCreditCard() - -
-           
- CreditCardNVPTransaction.getCreditCard() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize with parameters of type CreditCard
- voidITransaction.setCreditCard(CreditCard creditCard) - -
-           
- voidNVPTransaction.setCreditCard(CreditCard creditCard) - -
-           
-  -

- - - - - -
-Uses of CreditCard in net.authorize.data
-  -

- - - - - - - - - -
Methods in net.authorize.data that return CreditCard
- CreditCardPayment.getCreditCard() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data with parameters of type CreditCard
-static PaymentPayment.createPayment(CreditCard in_credit) - -
-           
- voidPayment.setCreditCard(CreditCard credit_card) - -
-           
-  -

- - - - - -
-Uses of CreditCard in net.authorize.data.creditcard
-  -

- - - - - - - - - -
Methods in net.authorize.data.creditcard that return CreditCard
-static CreditCardCreditCard.createCreditCard() - -
-           
-  -

- - - - - -
-Uses of CreditCard in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return CreditCard
- CreditCardTransaction.getCreditCard() - -
-          Get the CreditCard associated with the transaction.
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type CreditCard
- voidTransaction.setCreditCard(CreditCard creditCard) - -
-          Set the CreditCard information for the transaction request.
-  -

- - - - - -
-Uses of CreditCard in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as CreditCard
-protected  CreditCardXMLTransaction.creditCard - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return CreditCard
- CreditCardXMLTransaction.getCreditCard() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml with parameters of type CreditCard
- voidXMLTransaction.setCreditCard(CreditCard creditCard) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/package-frame.html b/docs/javadocs/net/authorize/data/creditcard/package-frame.html deleted file mode 100644 index 1dc9115..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/package-frame.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - -net.authorize.data.creditcard (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data.creditcard - - - - -
-Classes  - -
-CreditCard
- - - - - - -
-Enums  - -
-AVSCode -
-CardType
- - - - diff --git a/docs/javadocs/net/authorize/data/creditcard/package-summary.html b/docs/javadocs/net/authorize/data/creditcard/package-summary.html deleted file mode 100644 index 33904ea..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/package-summary.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -net.authorize.data.creditcard (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data.creditcard -

- - - - - - - - - -
-Class Summary
CreditCardCredit card specific information.
-  - -

- - - - - - - - - - - - - -
-Enum Summary
AVSCodeAddress Verification Service (AVS) response codes.
CardTypeSupported payment card types.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/package-tree.html b/docs/javadocs/net/authorize/data/creditcard/package-tree.html deleted file mode 100644 index 4496e7a..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/package-tree.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - -net.authorize.data.creditcard Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data.creditcard -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.data.creditcard.CreditCard (implements java.io.Serializable) -
    -
-

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) -
        -
      • net.authorize.data.creditcard.CardType
      • net.authorize.data.creditcard.AVSCode
      -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/creditcard/package-use.html b/docs/javadocs/net/authorize/data/creditcard/package-use.html deleted file mode 100644 index a1b85e4..0000000 --- a/docs/javadocs/net/authorize/data/creditcard/package-use.html +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - -Uses of Package net.authorize.data.creditcard (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data.creditcard

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use net.authorize.data.creditcard
net.authorize  
net.authorize.aim  
net.authorize.data  
net.authorize.data.aim  
net.authorize.data.creditcard  
net.authorize.data.reporting  
net.authorize.sim  
net.authorize.util  
net.authorize.xml  
-  -

- - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize
CreditCard - -
-          Credit card specific information.
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize.aim
AVSCode - -
-          Address Verification Service (AVS) response codes.
CardType - -
-          Supported payment card types.
-  -

- - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize.data
CreditCard - -
-          Credit card specific information.
-  -

- - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize.data.aim
CardType - -
-          Supported payment card types.
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize.data.creditcard
AVSCode - -
-          Address Verification Service (AVS) response codes.
CardType - -
-          Supported payment card types.
CreditCard - -
-          Credit card specific information.
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize.data.reporting
AVSCode - -
-          Address Verification Service (AVS) response codes.
CardType - -
-          Supported payment card types.
-  -

- - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize.sim
CreditCard - -
-          Credit card specific information.
-  -

- - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize.util
CardType - -
-          Supported payment card types.
-  -

- - - - - - - - -
-Classes in net.authorize.data.creditcard used by net.authorize.xml
CreditCard - -
-          Credit card specific information.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/BankAccount.html b/docs/javadocs/net/authorize/data/echeck/BankAccount.html deleted file mode 100644 index b673280..0000000 --- a/docs/javadocs/net/authorize/data/echeck/BankAccount.html +++ /dev/null @@ -1,814 +0,0 @@ - - - - - - -BankAccount (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.echeck -
-Class BankAccount

-
-java.lang.Object
-  extended by net.authorize.data.echeck.BankAccount
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
Direct Known Subclasses:
ECheck
-
-
-
-
public class BankAccount
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  java.lang.StringbankAccountName - -
-           
-protected  java.lang.StringbankAccountNumber - -
-           
-protected  BankAccountTypebankAccountType - -
-           
-protected  java.lang.StringbankCheckNumber - -
-           
-protected  java.lang.StringbankName - -
-           
-protected  ECheckTypeeCheckType - -
-           
-static intMAX_ACCOUNT_NUMBER_LENGTH - -
-           
-static intMAX_BANK_ACCOUNT_LENGTH - -
-           
-static intMAX_BANK_CHECK_NUMBER_LENGTH - -
-           
-static intMAX_BANK_NAME_LENGTH - -
-           
-static intMAX_ROUTING_NUMBER_LENGTH - -
-           
-protected  java.lang.StringroutingNumber - -
-           
-  - - - - - - - - - - - -
-Constructor Summary
-protected BankAccount() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static BankAccountcreateBankAccount() - -
-           
- java.lang.StringgetBankAccountName() - -
-           
- java.lang.StringgetBankAccountNumber() - -
-           
- BankAccountTypegetBankAccountType() - -
-           
- java.lang.StringgetBankCheckNumber() - -
-           
- java.lang.StringgetBankName() - -
-           
- ECheckTypegetECheckType() - -
-           
- java.lang.StringgetRoutingNumber() - -
-           
- voidsetBankAccountName(java.lang.String bankAccountName) - -
-           
- voidsetBankAccountNumber(java.lang.String bankAccountNumber) - -
-           
- voidsetBankAccountType(BankAccountType bankAccountType) - -
-           
- voidsetBankCheckNumber(java.lang.String bankCheckNumber) - -
-           
- voidsetBankName(java.lang.String bankName) - -
-           
- voidsetECheckType(ECheckType eCheckType) - -
-           
- voidsetRoutingNumber(java.lang.String routingNumber) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-MAX_ROUTING_NUMBER_LENGTH

-
-public static final int MAX_ROUTING_NUMBER_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_ACCOUNT_NUMBER_LENGTH

-
-public static final int MAX_ACCOUNT_NUMBER_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_BANK_NAME_LENGTH

-
-public static final int MAX_BANK_NAME_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_BANK_ACCOUNT_LENGTH

-
-public static final int MAX_BANK_ACCOUNT_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_BANK_CHECK_NUMBER_LENGTH

-
-public static final int MAX_BANK_CHECK_NUMBER_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-routingNumber

-
-protected java.lang.String routingNumber
-
-
-
-
-
- -

-bankAccountNumber

-
-protected java.lang.String bankAccountNumber
-
-
-
-
-
- -

-bankAccountType

-
-protected BankAccountType bankAccountType
-
-
-
-
-
- -

-bankName

-
-protected java.lang.String bankName
-
-
-
-
-
- -

-bankAccountName

-
-protected java.lang.String bankAccountName
-
-
-
-
-
- -

-eCheckType

-
-protected ECheckType eCheckType
-
-
-
-
-
- -

-bankCheckNumber

-
-protected java.lang.String bankCheckNumber
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-BankAccount

-
-protected BankAccount()
-
-
- - - - - - - - -
-Method Detail
- -

-getRoutingNumber

-
-public java.lang.String getRoutingNumber()
-
-
-
-
-
- -
Returns:
the routingNumber
-
-
-
- -

-setRoutingNumber

-
-public void setRoutingNumber(java.lang.String routingNumber)
-
-
-
-
-
-
Parameters:
routingNumber - the routingNumber to set
-
-
-
- -

-getBankAccountNumber

-
-public java.lang.String getBankAccountNumber()
-
-
-
-
-
- -
Returns:
the bankAccountNumber
-
-
-
- -

-setBankAccountNumber

-
-public void setBankAccountNumber(java.lang.String bankAccountNumber)
-
-
-
-
-
-
Parameters:
bankAccountNumber - the bankAccountNumber to set
-
-
-
- -

-getBankAccountType

-
-public BankAccountType getBankAccountType()
-
-
-
-
-
- -
Returns:
the bankAccountType
-
-
-
- -

-setBankAccountType

-
-public void setBankAccountType(BankAccountType bankAccountType)
-
-
-
-
-
-
Parameters:
bankAccountType - the bankAccountType to set
-
-
-
- -

-getBankName

-
-public java.lang.String getBankName()
-
-
-
-
-
- -
Returns:
the bankName
-
-
-
- -

-setBankName

-
-public void setBankName(java.lang.String bankName)
-
-
-
-
-
-
Parameters:
bankName - the bankName to set
-
-
-
- -

-getBankAccountName

-
-public java.lang.String getBankAccountName()
-
-
-
-
-
- -
Returns:
the bankAccountName
-
-
-
- -

-setBankAccountName

-
-public void setBankAccountName(java.lang.String bankAccountName)
-
-
-
-
-
-
Parameters:
bankAccountName - the bankAccountName to set
-
-
-
- -

-getECheckType

-
-public ECheckType getECheckType()
-
-
-
-
-
- -
Returns:
the eCheckType
-
-
-
- -

-setECheckType

-
-public void setECheckType(ECheckType eCheckType)
-
-
-
-
-
-
Parameters:
eCheckType - the eCheckType to set
-
-
-
- -

-getBankCheckNumber

-
-public java.lang.String getBankCheckNumber()
-
-
-
-
-
- -
Returns:
the bankCheckNumber
-
-
-
- -

-setBankCheckNumber

-
-public void setBankCheckNumber(java.lang.String bankCheckNumber)
-
-
-
-
-
-
Parameters:
bankCheckNumber - the bankCheckNumber to set
-
-
-
- -

-createBankAccount

-
-public static BankAccount createBankAccount()
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/BankAccountType.html b/docs/javadocs/net/authorize/data/echeck/BankAccountType.html deleted file mode 100644 index 0cf43d4..0000000 --- a/docs/javadocs/net/authorize/data/echeck/BankAccountType.html +++ /dev/null @@ -1,397 +0,0 @@ - - - - - - -BankAccountType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.echeck -
-Enum BankAccountType

-
-java.lang.Object
-  extended by java.lang.Enum<BankAccountType>
-      extended by net.authorize.data.echeck.BankAccountType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BankAccountType>
-
-
-
-
public enum BankAccountType
extends java.lang.Enum<BankAccountType>
- - -

-Supported bank account types. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
BUSINESSCHECKING - -
-           
CHECKING - -
-           
SAVINGS - -
-           
UNKNOWN - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static BankAccountTypefindByValue(java.lang.String value) - -
-           
- java.lang.StringgetValue() - -
-           
-static BankAccountTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static BankAccountType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-CHECKING

-
-public static final BankAccountType CHECKING
-
-
-
-
-
- -

-BUSINESSCHECKING

-
-public static final BankAccountType BUSINESSCHECKING
-
-
-
-
-
- -

-SAVINGS

-
-public static final BankAccountType SAVINGS
-
-
-
-
-
- -

-UNKNOWN

-
-public static final BankAccountType UNKNOWN
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static BankAccountType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (BankAccountType c : BankAccountType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static BankAccountType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByValue

-
-public static BankAccountType findByValue(java.lang.String value)
-
-
-
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/ECheck.html b/docs/javadocs/net/authorize/data/echeck/ECheck.html deleted file mode 100644 index e7009fc..0000000 --- a/docs/javadocs/net/authorize/data/echeck/ECheck.html +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - -ECheck (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.echeck -
-Class ECheck

-
-java.lang.Object
-  extended by net.authorize.data.echeck.BankAccount
-      extended by net.authorize.data.echeck.ECheck
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class ECheck
extends BankAccount
- - -

-Container used to hold ECheck related information. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.data.echeck.BankAccount
bankAccountName, bankAccountNumber, bankAccountType, bankCheckNumber, bankName, eCheckType, MAX_ACCOUNT_NUMBER_LENGTH, MAX_BANK_ACCOUNT_LENGTH, MAX_BANK_CHECK_NUMBER_LENGTH, MAX_BANK_NAME_LENGTH, MAX_ROUTING_NUMBER_LENGTH, routingNumber
-  - - - - - - - - - - - -
-Constructor Summary
-protected ECheck() - -
-           
-  - - - - - - - - - - - -
-Method Summary
-static ECheckcreateECheck() - -
-           
- - - - - - - -
Methods inherited from class net.authorize.data.echeck.BankAccount
createBankAccount, getBankAccountName, getBankAccountNumber, getBankAccountType, getBankCheckNumber, getBankName, getECheckType, getRoutingNumber, setBankAccountName, setBankAccountNumber, setBankAccountType, setBankCheckNumber, setBankName, setECheckType, setRoutingNumber
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-ECheck

-
-protected ECheck()
-
-
- - - - - - - - -
-Method Detail
- -

-createECheck

-
-public static ECheck createECheck()
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/ECheckType.html b/docs/javadocs/net/authorize/data/echeck/ECheckType.html deleted file mode 100644 index f56a8fa..0000000 --- a/docs/javadocs/net/authorize/data/echeck/ECheckType.html +++ /dev/null @@ -1,452 +0,0 @@ - - - - - - -ECheckType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.echeck -
-Enum ECheckType

-
-java.lang.Object
-  extended by java.lang.Enum<ECheckType>
-      extended by net.authorize.data.echeck.ECheckType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ECheckType>
-
-
-
-
public enum ECheckType
extends java.lang.Enum<ECheckType>
- - -

-eCheck.Net transaction types supported by the Authorize.Net Payment Gateway - - ARC - Accounts Receivable Conversion - BOC - Back Office Conversion - CCD - Cash Concentration or Disbursement - PPD - Prearranged Payment and Deposit Entry - TEL - Telephone-Initiated Entry - WEB - Internet-Initiated Entry -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
ARC - -
-           
BOC - -
-           
CCD - -
-           
PPD - -
-           
TEL - -
-           
UNKNOWN - -
-           
WEB - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ECheckTypefindByValue(java.lang.String value) - -
-           
- java.lang.StringgetValue() - -
-           
-static ECheckTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ECheckType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-ARC

-
-public static final ECheckType ARC
-
-
-
-
-
- -

-BOC

-
-public static final ECheckType BOC
-
-
-
-
-
- -

-CCD

-
-public static final ECheckType CCD
-
-
-
-
-
- -

-PPD

-
-public static final ECheckType PPD
-
-
-
-
-
- -

-TEL

-
-public static final ECheckType TEL
-
-
-
-
-
- -

-WEB

-
-public static final ECheckType WEB
-
-
-
-
-
- -

-UNKNOWN

-
-public static final ECheckType UNKNOWN
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static ECheckType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (ECheckType c : ECheckType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static ECheckType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByValue

-
-public static ECheckType findByValue(java.lang.String value)
-
-
-
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/NOCCode.html b/docs/javadocs/net/authorize/data/echeck/NOCCode.html deleted file mode 100644 index 78325e9..0000000 --- a/docs/javadocs/net/authorize/data/echeck/NOCCode.html +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - -NOCCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.echeck -
-Enum NOCCode

-
-java.lang.Object
-  extended by java.lang.Enum<NOCCode>
-      extended by net.authorize.data.echeck.NOCCode
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NOCCode>
-
-
-
-
public enum NOCCode
extends java.lang.Enum<NOCCode>
- - -

-ACH notice of change (NOC) codes that may be received from the customer's - bank in the event of a discrepancy in the bank information provided with the transaction. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
C01 - -
-           
C02 - -
-           
C03 - -
-           
C04 - -
-           
C05 - -
-           
C06 - -
-           
C07 - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static NOCCodefindByCode(java.lang.String code) - -
-           
- java.lang.StringgetCode() - -
-           
- java.lang.StringgetDescription() - -
-           
- java.lang.StringgetNocReason() - -
-           
-static NOCCodevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static NOCCode[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-C01

-
-public static final NOCCode C01
-
-
-
-
-
- -

-C02

-
-public static final NOCCode C02
-
-
-
-
-
- -

-C03

-
-public static final NOCCode C03
-
-
-
-
-
- -

-C04

-
-public static final NOCCode C04
-
-
-
-
-
- -

-C05

-
-public static final NOCCode C05
-
-
-
-
-
- -

-C06

-
-public static final NOCCode C06
-
-
-
-
-
- -

-C07

-
-public static final NOCCode C07
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static NOCCode[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (NOCCode c : NOCCode.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static NOCCode valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByCode

-
-public static NOCCode findByCode(java.lang.String code)
-
-
-
-
-
-
- -

-getCode

-
-public java.lang.String getCode()
-
-
- -
Returns:
the code
-
-
-
- -

-getNocReason

-
-public java.lang.String getNocReason()
-
-
- -
Returns:
the nocReason
-
-
-
- -

-getDescription

-
-public java.lang.String getDescription()
-
-
- -
Returns:
the description
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/ReturnCode.html b/docs/javadocs/net/authorize/data/echeck/ReturnCode.html deleted file mode 100644 index 5092d54..0000000 --- a/docs/javadocs/net/authorize/data/echeck/ReturnCode.html +++ /dev/null @@ -1,785 +0,0 @@ - - - - - - -ReturnCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.echeck -
-Enum ReturnCode

-
-java.lang.Object
-  extended by java.lang.Enum<ReturnCode>
-      extended by net.authorize.data.echeck.ReturnCode
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ReturnCode>
-
-
-
-
public enum ReturnCode
extends java.lang.Enum<ReturnCode>
- - -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
R01 - -
-           
R02 - -
-           
R03 - -
-           
R04 - -
-           
R05 - -
-           
R06 - -
-           
R07 - -
-           
R08 - -
-           
R09 - -
-           
R10 - -
-           
R12 - -
-           
R13 - -
-           
R14 - -
-           
R15 - -
-           
R16 - -
-           
R17 - -
-           
R20 - -
-           
R23 - -
-           
R24 - -
-           
R29 - -
-           
R30 - -
-           
R31 - -
-           
R32 - -
-           
R34 - -
-           
R35 - -
-           
R36 - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ReturnCodefindByCode(java.lang.String code) - -
-           
- java.lang.StringgetCode() - -
-           
- java.lang.StringgetReturnType() - -
-           
- java.lang.StringgetShortTitle() - -
-           
-static ReturnCodevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ReturnCode[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-R01

-
-public static final ReturnCode R01
-
-
-
-
-
- -

-R02

-
-public static final ReturnCode R02
-
-
-
-
-
- -

-R03

-
-public static final ReturnCode R03
-
-
-
-
-
- -

-R04

-
-public static final ReturnCode R04
-
-
-
-
-
- -

-R05

-
-public static final ReturnCode R05
-
-
-
-
-
- -

-R06

-
-public static final ReturnCode R06
-
-
-
-
-
- -

-R07

-
-public static final ReturnCode R07
-
-
-
-
-
- -

-R08

-
-public static final ReturnCode R08
-
-
-
-
-
- -

-R09

-
-public static final ReturnCode R09
-
-
-
-
-
- -

-R10

-
-public static final ReturnCode R10
-
-
-
-
-
- -

-R12

-
-public static final ReturnCode R12
-
-
-
-
-
- -

-R13

-
-public static final ReturnCode R13
-
-
-
-
-
- -

-R14

-
-public static final ReturnCode R14
-
-
-
-
-
- -

-R15

-
-public static final ReturnCode R15
-
-
-
-
-
- -

-R16

-
-public static final ReturnCode R16
-
-
-
-
-
- -

-R17

-
-public static final ReturnCode R17
-
-
-
-
-
- -

-R20

-
-public static final ReturnCode R20
-
-
-
-
-
- -

-R23

-
-public static final ReturnCode R23
-
-
-
-
-
- -

-R24

-
-public static final ReturnCode R24
-
-
-
-
-
- -

-R29

-
-public static final ReturnCode R29
-
-
-
-
-
- -

-R30

-
-public static final ReturnCode R30
-
-
-
-
-
- -

-R31

-
-public static final ReturnCode R31
-
-
-
-
-
- -

-R32

-
-public static final ReturnCode R32
-
-
-
-
-
- -

-R34

-
-public static final ReturnCode R34
-
-
-
-
-
- -

-R35

-
-public static final ReturnCode R35
-
-
-
-
-
- -

-R36

-
-public static final ReturnCode R36
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static ReturnCode[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (ReturnCode c : ReturnCode.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static ReturnCode valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByCode

-
-public static ReturnCode findByCode(java.lang.String code)
-
-
-
-
-
-
- -

-getCode

-
-public java.lang.String getCode()
-
-
- -
Returns:
the code
-
-
-
- -

-getReturnType

-
-public java.lang.String getReturnType()
-
-
- -
Returns:
the returnType
-
-
-
- -

-getShortTitle

-
-public java.lang.String getShortTitle()
-
-
- -
Returns:
the shortTitle
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/class-use/BankAccount.html b/docs/javadocs/net/authorize/data/echeck/class-use/BankAccount.html deleted file mode 100644 index 3365e89..0000000 --- a/docs/javadocs/net/authorize/data/echeck/class-use/BankAccount.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.echeck.BankAccount (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.echeck.BankAccount

-
- - - - - - - - - - - - - - - - - - - - - -
-Packages that use BankAccount
net.authorize  
net.authorize.data  
net.authorize.data.echeck  
net.authorize.xml  
-  -

- - - - - -
-Uses of BankAccount in net.authorize
-  -

- - - - - - - - - - - - - -
Methods in net.authorize that return BankAccount
- BankAccountITransaction.getBankAccount() - -
-           
- BankAccountNVPTransaction.getBankAccount() - -
-          Returns the bank account/eCheck account information.
-  -

- - - - - - - - - - - - - -
Methods in net.authorize with parameters of type BankAccount
- voidITransaction.setBankAccount(BankAccount bankAccount) - -
-           
- voidNVPTransaction.setBankAccount(BankAccount bankAccount) - -
-          Set the bank account / eCheck information.
-  -

- - - - - -
-Uses of BankAccount in net.authorize.data
-  -

- - - - - - - - - -
Methods in net.authorize.data that return BankAccount
- BankAccountPayment.getBankAccount() - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data with parameters of type BankAccount
-static PaymentPayment.createPayment(BankAccount in_account) - -
-           
- voidPayment.setBankAccount(BankAccount bank_account) - -
-           
-  -

- - - - - -
-Uses of BankAccount in net.authorize.data.echeck
-  -

- - - - - - - - - -
Subclasses of BankAccount in net.authorize.data.echeck
- classECheck - -
-          Container used to hold ECheck related information.
-  -

- - - - - - - - - -
Methods in net.authorize.data.echeck that return BankAccount
-static BankAccountBankAccount.createBankAccount() - -
-           
-  -

- - - - - -
-Uses of BankAccount in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml declared as BankAccount
-protected  BankAccountXMLTransaction.bankAccount - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return BankAccount
- BankAccountXMLTransaction.getBankAccount() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.xml with parameters of type BankAccount
- voidXMLTransaction.setBankAccount(BankAccount bankAccount) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/class-use/BankAccountType.html b/docs/javadocs/net/authorize/data/echeck/class-use/BankAccountType.html deleted file mode 100644 index 663e0fb..0000000 --- a/docs/javadocs/net/authorize/data/echeck/class-use/BankAccountType.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.echeck.BankAccountType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.echeck.BankAccountType

-
- - - - - - - - - -
-Packages that use BankAccountType
net.authorize.data.echeck  
-  -

- - - - - -
-Uses of BankAccountType in net.authorize.data.echeck
-  -

- - - - - - - - - -
Fields in net.authorize.data.echeck declared as BankAccountType
-protected  BankAccountTypeBankAccount.bankAccountType - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.echeck that return BankAccountType
-static BankAccountTypeBankAccountType.findByValue(java.lang.String value) - -
-           
- BankAccountTypeBankAccount.getBankAccountType() - -
-           
-static BankAccountTypeBankAccountType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static BankAccountType[]BankAccountType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.echeck with parameters of type BankAccountType
- voidBankAccount.setBankAccountType(BankAccountType bankAccountType) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/class-use/ECheck.html b/docs/javadocs/net/authorize/data/echeck/class-use/ECheck.html deleted file mode 100644 index 726a4d7..0000000 --- a/docs/javadocs/net/authorize/data/echeck/class-use/ECheck.html +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.echeck.ECheck (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.echeck.ECheck

-
- - - - - - - - - - - - - - - - - -
-Packages that use ECheck
net.authorize  
net.authorize.data.echeck  
net.authorize.sim  
-  -

- - - - - -
-Uses of ECheck in net.authorize
-  -

- - - - - - - - - -
Fields in net.authorize declared as ECheck
-protected  ECheckNVPTransaction.eCheck - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize that return ECheck
- ECheckNVPTransaction.getECheck() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type ECheck
- voidNVPTransaction.setECheck(ECheck eCheck) - -
-           
-  -

- - - - - -
-Uses of ECheck in net.authorize.data.echeck
-  -

- - - - - - - - - -
Methods in net.authorize.data.echeck that return ECheck
-static ECheckECheck.createECheck() - -
-           
-  -

- - - - - -
-Uses of ECheck in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return ECheck
- ECheckTransaction.getECheck() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type ECheck
- voidTransaction.setECheck(ECheck eCheck) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/class-use/ECheckType.html b/docs/javadocs/net/authorize/data/echeck/class-use/ECheckType.html deleted file mode 100644 index 8539c4e..0000000 --- a/docs/javadocs/net/authorize/data/echeck/class-use/ECheckType.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.echeck.ECheckType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.echeck.ECheckType

-
- - - - - - - - - -
-Packages that use ECheckType
net.authorize.data.echeck  
-  -

- - - - - -
-Uses of ECheckType in net.authorize.data.echeck
-  -

- - - - - - - - - -
Fields in net.authorize.data.echeck declared as ECheckType
-protected  ECheckTypeBankAccount.eCheckType - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.echeck that return ECheckType
-static ECheckTypeECheckType.findByValue(java.lang.String value) - -
-           
- ECheckTypeBankAccount.getECheckType() - -
-           
-static ECheckTypeECheckType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ECheckType[]ECheckType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.echeck with parameters of type ECheckType
- voidBankAccount.setECheckType(ECheckType eCheckType) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/class-use/NOCCode.html b/docs/javadocs/net/authorize/data/echeck/class-use/NOCCode.html deleted file mode 100644 index 531670b..0000000 --- a/docs/javadocs/net/authorize/data/echeck/class-use/NOCCode.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.echeck.NOCCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.echeck.NOCCode

-
- - - - - - - - - -
-Packages that use NOCCode
net.authorize.data.echeck  
-  -

- - - - - -
-Uses of NOCCode in net.authorize.data.echeck
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.echeck that return NOCCode
-static NOCCodeNOCCode.findByCode(java.lang.String code) - -
-           
-static NOCCodeNOCCode.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static NOCCode[]NOCCode.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/class-use/ReturnCode.html b/docs/javadocs/net/authorize/data/echeck/class-use/ReturnCode.html deleted file mode 100644 index 8a26693..0000000 --- a/docs/javadocs/net/authorize/data/echeck/class-use/ReturnCode.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.echeck.ReturnCode (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.echeck.ReturnCode

-
- - - - - - - - - -
-Packages that use ReturnCode
net.authorize.data.echeck  
-  -

- - - - - -
-Uses of ReturnCode in net.authorize.data.echeck
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.echeck that return ReturnCode
-static ReturnCodeReturnCode.findByCode(java.lang.String code) - -
-           
-static ReturnCodeReturnCode.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ReturnCode[]ReturnCode.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/package-frame.html b/docs/javadocs/net/authorize/data/echeck/package-frame.html deleted file mode 100644 index ac07255..0000000 --- a/docs/javadocs/net/authorize/data/echeck/package-frame.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - -net.authorize.data.echeck (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data.echeck - - - - -
-Classes  - -
-BankAccount -
-ECheck
- - - - - - -
-Enums  - -
-BankAccountType -
-ECheckType -
-NOCCode -
-ReturnCode
- - - - diff --git a/docs/javadocs/net/authorize/data/echeck/package-summary.html b/docs/javadocs/net/authorize/data/echeck/package-summary.html deleted file mode 100644 index 850441f..0000000 --- a/docs/javadocs/net/authorize/data/echeck/package-summary.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - -net.authorize.data.echeck (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data.echeck -

- - - - - - - - - - - - - -
-Class Summary
BankAccount 
ECheckContainer used to hold ECheck related information.
-  - -

- - - - - - - - - - - - - - - - - - - - - -
-Enum Summary
BankAccountTypeSupported bank account types.
ECheckTypeeCheck.Net transaction types supported by the Authorize.Net Payment Gateway - - ARC - Accounts Receivable Conversion - BOC - Back Office Conversion - CCD - Cash Concentration or Disbursement - PPD - Prearranged Payment and Deposit Entry - TEL - Telephone-Initiated Entry - WEB - Internet-Initiated Entry
NOCCodeACH notice of change (NOC) codes that may be received from the customer's - bank in the event of a discrepancy in the bank information provided with the transaction.
ReturnCode 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/package-tree.html b/docs/javadocs/net/authorize/data/echeck/package-tree.html deleted file mode 100644 index d698ddd..0000000 --- a/docs/javadocs/net/authorize/data/echeck/package-tree.html +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - -net.authorize.data.echeck Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data.echeck -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.data.echeck.BankAccount (implements java.io.Serializable) -
        -
      • net.authorize.data.echeck.ECheck
      -
    -
-

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/echeck/package-use.html b/docs/javadocs/net/authorize/data/echeck/package-use.html deleted file mode 100644 index 11dab3e..0000000 --- a/docs/javadocs/net/authorize/data/echeck/package-use.html +++ /dev/null @@ -1,290 +0,0 @@ - - - - - - -Uses of Package net.authorize.data.echeck (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data.echeck

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use net.authorize.data.echeck
net.authorize  
net.authorize.data  
net.authorize.data.echeck  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.echeck used by net.authorize
BankAccount - -
-           
ECheck - -
-          Container used to hold ECheck related information.
-  -

- - - - - - - - -
-Classes in net.authorize.data.echeck used by net.authorize.data
BankAccount - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize.data.echeck used by net.authorize.data.echeck
BankAccount - -
-           
BankAccountType - -
-          Supported bank account types.
ECheck - -
-          Container used to hold ECheck related information.
ECheckType - -
-          eCheck.Net transaction types supported by the Authorize.Net Payment Gateway - - ARC - Accounts Receivable Conversion - BOC - Back Office Conversion - CCD - Cash Concentration or Disbursement - PPD - Prearranged Payment and Deposit Entry - TEL - Telephone-Initiated Entry - WEB - Internet-Initiated Entry
NOCCode - -
-          ACH notice of change (NOC) codes that may be received from the customer's - bank in the event of a discrepancy in the bank information provided with the transaction.
ReturnCode - -
-           
-  -

- - - - - - - - -
-Classes in net.authorize.data.echeck used by net.authorize.sim
ECheck - -
-          Container used to hold ECheck related information.
-  -

- - - - - - - - -
-Classes in net.authorize.data.echeck used by net.authorize.xml
BankAccount - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/mobile/MerchantContact.html b/docs/javadocs/net/authorize/data/mobile/MerchantContact.html deleted file mode 100644 index 8872e92..0000000 --- a/docs/javadocs/net/authorize/data/mobile/MerchantContact.html +++ /dev/null @@ -1,535 +0,0 @@ - - - - - - -MerchantContact (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.mobile -
-Class MerchantContact

-
-java.lang.Object
-  extended by net.authorize.data.mobile.MerchantContact
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class MerchantContact
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static MerchantContactcreateMerchantContact() - -
-          Create a merchant contact.
-static MerchantContactcreateMerchantContact(java.lang.String companyName, - java.lang.String address, - java.lang.String city, - java.lang.String state, - java.lang.String zip, - java.lang.String phone) - -
-          Create a merchant contact.
- java.lang.StringgetAddress() - -
-           
- java.lang.StringgetCity() - -
-           
- java.lang.StringgetCompanyName() - -
-           
- java.lang.StringgetPhone() - -
-           
- java.lang.StringgetState() - -
-           
- java.lang.StringgetZip() - -
-           
- voidsetAddress(java.lang.String address) - -
-           
- voidsetCity(java.lang.String city) - -
-           
- voidsetCompanyName(java.lang.String companyName) - -
-           
- voidsetPhone(java.lang.String phone) - -
-           
- voidsetState(java.lang.String state) - -
-           
- voidsetZip(java.lang.String zip) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createMerchantContact

-
-public static MerchantContact createMerchantContact()
-
-
Create a merchant contact. -

-

-
-
-
- -
Returns:
MerchantContact
-
-
-
- -

-createMerchantContact

-
-public static MerchantContact createMerchantContact(java.lang.String companyName,
-                                                    java.lang.String address,
-                                                    java.lang.String city,
-                                                    java.lang.String state,
-                                                    java.lang.String zip,
-                                                    java.lang.String phone)
-
-
Create a merchant contact. -

-

-
-
-
-
Parameters:
companyName -
address -
city -
state -
zip -
phone - -
Returns:
MerchantContact container
-
-
-
- -

-getCompanyName

-
-public java.lang.String getCompanyName()
-
-
-
-
-
- -
Returns:
the companyName
-
-
-
- -

-setCompanyName

-
-public void setCompanyName(java.lang.String companyName)
-
-
-
-
-
-
Parameters:
companyName - the companyName to set
-
-
-
- -

-getAddress

-
-public java.lang.String getAddress()
-
-
-
-
-
- -
Returns:
the address
-
-
-
- -

-setAddress

-
-public void setAddress(java.lang.String address)
-
-
-
-
-
-
Parameters:
address - the address to set
-
-
-
- -

-getCity

-
-public java.lang.String getCity()
-
-
-
-
-
- -
Returns:
the city
-
-
-
- -

-setCity

-
-public void setCity(java.lang.String city)
-
-
-
-
-
-
Parameters:
city - the city to set
-
-
-
- -

-getState

-
-public java.lang.String getState()
-
-
-
-
-
- -
Returns:
the state
-
-
-
- -

-setState

-
-public void setState(java.lang.String state)
-
-
-
-
-
-
Parameters:
state - the state to set
-
-
-
- -

-getZip

-
-public java.lang.String getZip()
-
-
-
-
-
- -
Returns:
the zip
-
-
-
- -

-setZip

-
-public void setZip(java.lang.String zip)
-
-
-
-
-
-
Parameters:
zip - the zip to set
-
-
-
- -

-getPhone

-
-public java.lang.String getPhone()
-
-
-
-
-
- -
Returns:
the phone
-
-
-
- -

-setPhone

-
-public void setPhone(java.lang.String phone)
-
-
-
-
-
-
Parameters:
phone - the phone to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/mobile/MobileDevice.html b/docs/javadocs/net/authorize/data/mobile/MobileDevice.html deleted file mode 100644 index ffefce7..0000000 --- a/docs/javadocs/net/authorize/data/mobile/MobileDevice.html +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - -MobileDevice (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.mobile -
-Class MobileDevice

-
-java.lang.Object
-  extended by net.authorize.data.mobile.MobileDevice
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class MobileDevice
extends java.lang.Object
implements java.io.Serializable
- - -

-Defines a MobileDevice -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static MobileDevicecreateMobileDevice() - -
-          Create a MobileDevice.
-static MobileDevicecreateMobileDevice(java.lang.String mobileDeviceId, - java.lang.String description, - java.lang.String phoneNumber) - -
-          Create a MobileDevice from description & phone number.
- java.lang.StringgetDescription() - -
-          Get the description of the mobile device.
- java.lang.StringgetMobileDeviceId() - -
-           
- java.lang.StringgetPhoneNumber() - -
-          Get the phone number of the mobile device.
- voidsetDescription(java.lang.String description) - -
-          Set the description of the mobile device.
- voidsetMobileDeviceId(java.lang.String mobileDeviceId) - -
-           
- voidsetPhoneNumber(java.lang.String phoneNumber) - -
-          Set the phone number of the mobile device.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createMobileDevice

-
-public static MobileDevice createMobileDevice()
-
-
Create a MobileDevice. -

-

-
-
-
- -
Returns:
mobile device object
-
-
-
- -

-createMobileDevice

-
-public static MobileDevice createMobileDevice(java.lang.String mobileDeviceId,
-                                              java.lang.String description,
-                                              java.lang.String phoneNumber)
-
-
Create a MobileDevice from description & phone number. -

-

-
-
-
-
Parameters:
mobileDeviceId -
description -
phoneNumber - -
Returns:
mobile device information
-
-
-
- -

-getDescription

-
-public java.lang.String getDescription()
-
-
Get the description of the mobile device. -

-

-
-
-
- -
Returns:
the description
-
-
-
- -

-setDescription

-
-public void setDescription(java.lang.String description)
-
-
Set the description of the mobile device. -

-

-
-
-
-
Parameters:
description - the description to set
-
-
-
- -

-getPhoneNumber

-
-public java.lang.String getPhoneNumber()
-
-
Get the phone number of the mobile device. -

-

-
-
-
- -
Returns:
the phoneNumber
-
-
-
- -

-setPhoneNumber

-
-public void setPhoneNumber(java.lang.String phoneNumber)
-
-
Set the phone number of the mobile device. -

-

-
-
-
-
Parameters:
phoneNumber - the phoneNumber to set
-
-
-
- -

-getMobileDeviceId

-
-public java.lang.String getMobileDeviceId()
-
-
-
-
-
- -
Returns:
the mobileDeviceId
-
-
-
- -

-setMobileDeviceId

-
-public void setMobileDeviceId(java.lang.String mobileDeviceId)
-
-
-
-
-
-
Parameters:
mobileDeviceId - the mobileDeviceId to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/mobile/class-use/MerchantContact.html b/docs/javadocs/net/authorize/data/mobile/class-use/MerchantContact.html deleted file mode 100644 index 3d967e3..0000000 --- a/docs/javadocs/net/authorize/data/mobile/class-use/MerchantContact.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.mobile.MerchantContact (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.mobile.MerchantContact

-
- - - - - - - - - - - - - -
-Packages that use MerchantContact
net.authorize.data.mobile  
net.authorize.mobile  
-  -

- - - - - -
-Uses of MerchantContact in net.authorize.data.mobile
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.mobile that return MerchantContact
-static MerchantContactMerchantContact.createMerchantContact() - -
-          Create a merchant contact.
-static MerchantContactMerchantContact.createMerchantContact(java.lang.String companyName, - java.lang.String address, - java.lang.String city, - java.lang.String state, - java.lang.String zip, - java.lang.String phone) - -
-          Create a merchant contact.
-  -

- - - - - -
-Uses of MerchantContact in net.authorize.mobile
-  -

- - - - - - - - - -
Methods in net.authorize.mobile that return MerchantContact
- MerchantContactResult.getMerchantContact() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/mobile/class-use/MobileDevice.html b/docs/javadocs/net/authorize/data/mobile/class-use/MobileDevice.html deleted file mode 100644 index eeb59e8..0000000 --- a/docs/javadocs/net/authorize/data/mobile/class-use/MobileDevice.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.mobile.MobileDevice (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.mobile.MobileDevice

-
- - - - - - - - - - - - - -
-Packages that use MobileDevice
net.authorize.data.mobile  
net.authorize.mobile  
-  -

- - - - - -
-Uses of MobileDevice in net.authorize.data.mobile
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.mobile that return MobileDevice
-static MobileDeviceMobileDevice.createMobileDevice() - -
-          Create a MobileDevice.
-static MobileDeviceMobileDevice.createMobileDevice(java.lang.String mobileDeviceId, - java.lang.String description, - java.lang.String phoneNumber) - -
-          Create a MobileDevice from description & phone number.
-  -

- - - - - -
-Uses of MobileDevice in net.authorize.mobile
-  -

- - - - - - - - - -
Methods in net.authorize.mobile that return MobileDevice
- MobileDeviceTransaction.getMobileDevice() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.mobile with parameters of type MobileDevice
- voidTransaction.setMobileDevice(MobileDevice mobileDevice) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/mobile/package-frame.html b/docs/javadocs/net/authorize/data/mobile/package-frame.html deleted file mode 100644 index 8c8793a..0000000 --- a/docs/javadocs/net/authorize/data/mobile/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -net.authorize.data.mobile (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data.mobile - - - - -
-Classes  - -
-MerchantContact -
-MobileDevice
- - - - diff --git a/docs/javadocs/net/authorize/data/mobile/package-summary.html b/docs/javadocs/net/authorize/data/mobile/package-summary.html deleted file mode 100644 index 393c4b2..0000000 --- a/docs/javadocs/net/authorize/data/mobile/package-summary.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - -net.authorize.data.mobile (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data.mobile -

- - - - - - - - - - - - - -
-Class Summary
MerchantContact 
MobileDeviceDefines a MobileDevice
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/mobile/package-tree.html b/docs/javadocs/net/authorize/data/mobile/package-tree.html deleted file mode 100644 index 66ac71d..0000000 --- a/docs/javadocs/net/authorize/data/mobile/package-tree.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -net.authorize.data.mobile Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data.mobile -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.data.mobile.MerchantContact (implements java.io.Serializable) -
    • net.authorize.data.mobile.MobileDevice (implements java.io.Serializable) -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/mobile/package-use.html b/docs/javadocs/net/authorize/data/mobile/package-use.html deleted file mode 100644 index 950acdd..0000000 --- a/docs/javadocs/net/authorize/data/mobile/package-use.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - -Uses of Package net.authorize.data.mobile (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data.mobile

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.data.mobile
net.authorize.data.mobile  
net.authorize.mobile  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.mobile used by net.authorize.data.mobile
MerchantContact - -
-           
MobileDevice - -
-          Defines a MobileDevice
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.mobile used by net.authorize.mobile
MerchantContact - -
-           
MobileDevice - -
-          Defines a MobileDevice
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/package-frame.html b/docs/javadocs/net/authorize/data/package-frame.html deleted file mode 100644 index 2757b23..0000000 --- a/docs/javadocs/net/authorize/data/package-frame.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - -net.authorize.data (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data - - - - -
-Classes  - -
-Address -
-Customer -
-DriversLicense -
-EmailReceipt -
-Order -
-OrderItem -
-Payment -
-ShippingAddress -
-ShippingCharges
- - - - - - -
-Enums  - -
-CustomerType -
-PaymentMethod -
-PermissionType
- - - - diff --git a/docs/javadocs/net/authorize/data/package-summary.html b/docs/javadocs/net/authorize/data/package-summary.html deleted file mode 100644 index 93ace18..0000000 --- a/docs/javadocs/net/authorize/data/package-summary.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - -net.authorize.data (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
Address 
CustomerCustomer specific information.
DriversLicense 
EmailReceiptMerchants can opt to send a payment gateway generated email receipt to - customers who provide an email address with their transaction.
OrderGeneral order related information.
OrderItemItemized order information.
Payment 
ShippingAddressProduct shipping address.
ShippingChargesShipping charges (tax, freight/shipping, duty)
-  - -

- - - - - - - - - - - - - - - - - -
-Enum Summary
CustomerType 
PaymentMethodThe method of payment for the transaction.
PermissionTypePermissions that are associated with accounts.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/package-tree.html b/docs/javadocs/net/authorize/data/package-tree.html deleted file mode 100644 index eb934c2..0000000 --- a/docs/javadocs/net/authorize/data/package-tree.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - -net.authorize.data Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.data.Address (implements java.io.Serializable) - -
    • net.authorize.data.Customer (implements java.io.Serializable) -
    • net.authorize.data.DriversLicense (implements java.io.Serializable) -
    • net.authorize.data.EmailReceipt (implements java.io.Serializable) -
    • net.authorize.data.Order (implements java.io.Serializable) -
    • net.authorize.data.OrderItem (implements java.io.Serializable) -
    • net.authorize.data.Payment (implements java.io.Serializable) -
    • net.authorize.data.ShippingCharges (implements java.io.Serializable) -
    -
-

-Enum Hierarchy -

-
    -
  • java.lang.Object -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/package-use.html b/docs/javadocs/net/authorize/data/package-use.html deleted file mode 100644 index a29019f..0000000 --- a/docs/javadocs/net/authorize/data/package-use.html +++ /dev/null @@ -1,525 +0,0 @@ - - - - - - -Uses of Package net.authorize.data (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use net.authorize.data
net.authorize  
net.authorize.cim  
net.authorize.data  
net.authorize.data.arb  
net.authorize.data.cim  
net.authorize.data.reporting  
net.authorize.mobile  
net.authorize.notification  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize.data used by net.authorize
Address - -
-           
Customer - -
-          Customer specific information.
EmailReceipt - -
-          Merchants can opt to send a payment gateway generated email receipt to - customers who provide an email address with their transaction.
Order - -
-          General order related information.
ShippingAddress - -
-          Product shipping address.
ShippingCharges - -
-          Shipping charges (tax, freight/shipping, duty)
-  -

- - - - - - - - -
-Classes in net.authorize.data used by net.authorize.cim
Address - -
-           
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize.data used by net.authorize.data
Address - -
-           
Customer - -
-          Customer specific information.
CustomerType - -
-           
DriversLicense - -
-           
EmailReceipt - -
-          Merchants can opt to send a payment gateway generated email receipt to - customers who provide an email address with their transaction.
Order - -
-          General order related information.
OrderItem - -
-          Itemized order information.
Payment - -
-           
PaymentMethod - -
-          The method of payment for the transaction.
PermissionType - -
-          Permissions that are associated with accounts.
ShippingAddress - -
-          Product shipping address.
ShippingCharges - -
-          Shipping charges (tax, freight/shipping, duty)
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.data used by net.authorize.data.arb
Customer - -
-          Customer specific information.
Order - -
-          General order related information.
Payment - -
-           
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.data used by net.authorize.data.cim
Address - -
-           
CustomerType - -
-           
Payment - -
-           
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.data used by net.authorize.data.reporting
Customer - -
-          Customer specific information.
Order - -
-          General order related information.
Payment - -
-           
-  -

- - - - - - - - -
-Classes in net.authorize.data used by net.authorize.mobile
PermissionType - -
-          Permissions that are associated with accounts.
-  -

- - - - - - - - -
-Classes in net.authorize.data used by net.authorize.notification
EmailReceipt - -
-          Merchants can opt to send a payment gateway generated email receipt to - customers who provide an email address with their transaction.
-  -

- - - - - - - - - - - - - - - - - -
-Classes in net.authorize.data used by net.authorize.sim
Customer - -
-          Customer specific information.
Order - -
-          General order related information.
ShippingAddress - -
-          Product shipping address.
ShippingCharges - -
-          Shipping charges (tax, freight/shipping, duty)
-  -

- - - - - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize.data used by net.authorize.xml
Address - -
-           
Customer - -
-          Customer specific information.
EmailReceipt - -
-          Merchants can opt to send a payment gateway generated email receipt to - customers who provide an email address with their transaction.
Order - -
-          General order related information.
ShippingAddress - -
-          Product shipping address.
ShippingCharges - -
-          Shipping charges (tax, freight/shipping, duty)
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/BatchDetails.html b/docs/javadocs/net/authorize/data/reporting/BatchDetails.html deleted file mode 100644 index 4b21082..0000000 --- a/docs/javadocs/net/authorize/data/reporting/BatchDetails.html +++ /dev/null @@ -1,571 +0,0 @@ - - - - - - -BatchDetails (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Class BatchDetails

-
-java.lang.Object
-  extended by net.authorize.data.reporting.BatchDetails
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class BatchDetails
extends java.lang.Object
implements java.io.Serializable
- - -

-Batch related reporting information. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddBatchStatistics(BatchStatistics batchStatistics) - -
-          Add batch statistics object to the existing list.
-static BatchDetailscreateBatchDetail() - -
-           
- java.lang.StringgetBatchId() - -
-           
- java.util.ArrayList<BatchStatistics>getBatchStatisticsList() - -
-           
- java.lang.StringgetPaymentMethod() - -
-           
- SettlementStateTypegetSettlementState() - -
-           
- java.util.DategetSettlementTimeLocal() - -
-           
- java.util.DategetSettlementTimeUTC() - -
-           
- voidsetBatchId(java.lang.String batchId) - -
-           
- voidsetBatchStatisticsList(java.util.ArrayList<BatchStatistics> batchStatisticsList) - -
-           
- voidsetPaymentMethod(java.lang.String paymentMethod) - -
-           
- voidsetSettlementState(SettlementStateType settlementState) - -
-           
- voidsetSettlementTimeLocal(java.util.Date settlementTimeLocal) - -
-           
- voidsetSettlementTimeLocal(java.lang.String settlementTimeLocal) - -
-           
- voidsetSettlementTimeUTC(java.util.Date settlementTimeUTC) - -
-           
- voidsetSettlementTimeUTC(java.lang.String settlementTimeUTC) - -
-          Set the settlement time UTC.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createBatchDetail

-
-public static BatchDetails createBatchDetail()
-
-
-
-
-
-
-
-
-
- -

-getBatchId

-
-public java.lang.String getBatchId()
-
-
-
-
-
- -
Returns:
the batchId
-
-
-
- -

-setBatchId

-
-public void setBatchId(java.lang.String batchId)
-
-
-
-
-
-
Parameters:
batchId - the batchId to set
-
-
-
- -

-getSettlementTimeUTC

-
-public java.util.Date getSettlementTimeUTC()
-
-
-
-
-
- -
Returns:
the settlementTimeUTC
-
-
-
- -

-setSettlementTimeUTC

-
-public void setSettlementTimeUTC(java.util.Date settlementTimeUTC)
-
-
-
-
-
-
Parameters:
settlementTimeUTC - the settlementTimeUTC to set
-
-
-
- -

-setSettlementTimeUTC

-
-public void setSettlementTimeUTC(java.lang.String settlementTimeUTC)
-
-
Set the settlement time UTC. -

-

-
-
-
-
Parameters:
settlementTimeUTC -
-
-
-
- -

-getSettlementTimeLocal

-
-public java.util.Date getSettlementTimeLocal()
-
-
-
-
-
- -
Returns:
the settlementTimeLocal
-
-
-
- -

-setSettlementTimeLocal

-
-public void setSettlementTimeLocal(java.util.Date settlementTimeLocal)
-
-
-
-
-
-
Parameters:
settlementTimeLocal - the settlementTimeLocal to set
-
-
-
- -

-setSettlementTimeLocal

-
-public void setSettlementTimeLocal(java.lang.String settlementTimeLocal)
-
-
-
-
-
-
Parameters:
settlementTimeLocal - the settlementTimeLocal to set
-
-
-
- -

-getSettlementState

-
-public SettlementStateType getSettlementState()
-
-
-
-
-
- -
Returns:
the settlementState
-
-
-
- -

-setSettlementState

-
-public void setSettlementState(SettlementStateType settlementState)
-
-
-
-
-
-
Parameters:
settlementState - the settlementState to set
-
-
-
- -

-getBatchStatisticsList

-
-public java.util.ArrayList<BatchStatistics> getBatchStatisticsList()
-
-
-
-
-
- -
Returns:
the batchStatisticsList
-
-
-
- -

-addBatchStatistics

-
-public void addBatchStatistics(BatchStatistics batchStatistics)
-
-
Add batch statistics object to the existing list. -

-

-
-
-
-
Parameters:
batchStatistics -
-
-
-
- -

-setBatchStatisticsList

-
-public void setBatchStatisticsList(java.util.ArrayList<BatchStatistics> batchStatisticsList)
-
-
-
-
-
-
Parameters:
batchStatisticsList - the batchStatisticsList to set
-
-
-
- -

-getPaymentMethod

-
-public java.lang.String getPaymentMethod()
-
-
-
-
-
- -
Returns:
the paymentMethod
-
-
-
- -

-setPaymentMethod

-
-public void setPaymentMethod(java.lang.String paymentMethod)
-
-
-
-
-
-
Parameters:
paymentMethod - the paymentMethod to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/BatchStatistics.html b/docs/javadocs/net/authorize/data/reporting/BatchStatistics.html deleted file mode 100644 index d0ca0ac..0000000 --- a/docs/javadocs/net/authorize/data/reporting/BatchStatistics.html +++ /dev/null @@ -1,1616 +0,0 @@ - - - - - - -BatchStatistics (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Class BatchStatistics

-
-java.lang.Object
-  extended by net.authorize.data.reporting.BatchStatistics
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class BatchStatistics
extends java.lang.Object
implements java.io.Serializable
- - -

-Batch statistical data. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static BatchStatisticscreateBatchStatistics() - -
-           
- CardTypegetAccountType() - -
-           
- java.math.BigDecimalgetChargeAmount() - -
-           
- java.math.BigDecimalgetChargebackAmount() - -
-           
- longgetChargebackCount() - -
-           
- java.math.BigDecimalgetChargeChargebackAmount() - -
-           
- longgetChargeChargebackCount() - -
-           
- longgetChargeCount() - -
-           
- java.math.BigDecimalgetChargeReturnedItemsAmount() - -
-           
- longgetChargeReturnedItemsCount() - -
-           
- longgetCorrectionNoticeCount() - -
-           
- longgetDeclineCount() - -
-           
- longgetErrorCount() - -
-           
- java.math.BigDecimalgetRefundAmount() - -
-           
- java.math.BigDecimalgetRefundChargebackAmount() - -
-           
- longgetRefundChargebackCount() - -
-           
- longgetRefundCount() - -
-           
- java.math.BigDecimalgetRefundReturnedItemsAmount() - -
-           
- longgetRefundReturnedItemsCount() - -
-           
- java.math.BigDecimalgetReturnedItemAmount() - -
-           
- longgetReturnedItemCount() - -
-           
- longgetVoidCount() - -
-           
- voidsetAccountType(CardType accountType) - -
-           
- voidsetChargeAmount(java.math.BigDecimal chargeAmount) - -
-           
- voidsetChargeAmount(java.lang.String chargeAmount) - -
-           
- voidsetChargebackAmount(java.math.BigDecimal ChargebackAmount) - -
-           
- voidsetChargebackAmount(java.lang.String ChargebackAmount) - -
-           
- voidsetChargebackCount(long ChargebackCount) - -
-           
- voidsetChargebackCount(java.lang.String ChargebackCount) - -
-           
- voidsetChargeChargebackAmount(java.math.BigDecimal chargeChargebackAmount) - -
-           
- voidsetChargeChargebackAmount(java.lang.String chargeChargebackAmount) - -
-           
- voidsetChargeChargebackCount(long chargeChargebackCount) - -
-           
- voidsetChargeChargebackCount(java.lang.String chargeChargebackCount) - -
-           
- voidsetChargeCount(long chargeCount) - -
-           
- voidsetChargeCount(java.lang.String chargeCount) - -
-           
- voidsetChargeReturnedItemsAmount(java.math.BigDecimal chargeReturnedItemsAmount) - -
-           
- voidsetChargeReturnedItemsAmount(java.lang.String chargeReturnedItemsAmount) - -
-           
- voidsetChargeReturnedItemsCount(long chargeReturnedItemsCount) - -
-           
- voidsetChargeReturnedItemsCount(java.lang.String chargeReturnedItemsCount) - -
-           
- voidsetCorrectionNoticeCount(long correctionNoticeCount) - -
-           
- voidsetCorrectionNoticeCount(java.lang.String correctionNoticeCount) - -
-           
- voidsetDeclineCount(long declineCount) - -
-           
- voidsetDeclineCount(java.lang.String declineCount) - -
-           
- voidsetErrorCount(long errorCount) - -
-           
- voidsetErrorCount(java.lang.String errorCount) - -
-           
- voidsetRefundAmount(java.math.BigDecimal refundAmount) - -
-           
- voidsetRefundAmount(java.lang.String refundAmount) - -
-           
- voidsetRefundChargebackAmount(java.math.BigDecimal refundChargebackAmount) - -
-           
- voidsetRefundChargebackAmount(java.lang.String refundChargebackAmount) - -
-           
- voidsetRefundChargebackCount(long refundChargebackCount) - -
-           
- voidsetRefundChargebackCount(java.lang.String refundChargebackCount) - -
-           
- voidsetRefundCount(long refundCount) - -
-           
- voidsetRefundCount(java.lang.String refundCount) - -
-           
- voidsetRefundReturnedItemsAmount(java.math.BigDecimal refundReturnedItemsAmount) - -
-           
- voidsetRefundReturnedItemsAmount(java.lang.String refundReturnedItemsAmount) - -
-           
- voidsetRefundReturnedItemsCount(long refundReturnedItemsCount) - -
-           
- voidsetRefundReturnedItemsCount(java.lang.String refundReturnedItemsCount) - -
-           
- voidsetReturnedItemAmount(java.math.BigDecimal returnedItemAmount) - -
-           
- voidsetReturnedItemAmount(java.lang.String returnedItemAmount) - -
-           
- voidsetReturnedItemCount(long returnedItemCount) - -
-           
- voidsetReturnedItemCount(java.lang.String returnedItemCount) - -
-           
- voidsetVoidCount(long voidCount) - -
-           
- voidsetVoidCount(java.lang.String voidCount) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createBatchStatistics

-
-public static BatchStatistics createBatchStatistics()
-
-
-
-
-
-
-
-
-
- -

-getAccountType

-
-public CardType getAccountType()
-
-
-
-
-
- -
Returns:
the accountType
-
-
-
- -

-setAccountType

-
-public void setAccountType(CardType accountType)
-
-
-
-
-
-
Parameters:
accountType - the accountType to set
-
-
-
- -

-getChargeAmount

-
-public java.math.BigDecimal getChargeAmount()
-
-
-
-
-
- -
Returns:
the chargeAmount
-
-
-
- -

-setChargeAmount

-
-public void setChargeAmount(java.math.BigDecimal chargeAmount)
-
-
-
-
-
-
Parameters:
chargeAmount - the chargeAmount to set
-
-
-
- -

-setChargeAmount

-
-public void setChargeAmount(java.lang.String chargeAmount)
-
-
-
-
-
-
Parameters:
chargeAmount - the chargeAmount to set
-
-
-
- -

-getChargeCount

-
-public long getChargeCount()
-
-
-
-
-
- -
Returns:
the chargeCount
-
-
-
- -

-setChargeCount

-
-public void setChargeCount(long chargeCount)
-
-
-
-
-
-
Parameters:
chargeCount - the chargeCount to set
-
-
-
- -

-setChargeCount

-
-public void setChargeCount(java.lang.String chargeCount)
-
-
-
-
-
-
Parameters:
chargeCount - the chargeCount to set
-
-
-
- -

-getRefundAmount

-
-public java.math.BigDecimal getRefundAmount()
-
-
-
-
-
- -
Returns:
the refundAmount
-
-
-
- -

-setRefundAmount

-
-public void setRefundAmount(java.math.BigDecimal refundAmount)
-
-
-
-
-
-
Parameters:
refundAmount - the refundAmount to set
-
-
-
- -

-setRefundAmount

-
-public void setRefundAmount(java.lang.String refundAmount)
-
-
-
-
-
-
Parameters:
refundAmount - the refundAmount to set
-
-
-
- -

-getRefundCount

-
-public long getRefundCount()
-
-
-
-
-
- -
Returns:
the refundCount
-
-
-
- -

-setRefundCount

-
-public void setRefundCount(long refundCount)
-
-
-
-
-
-
Parameters:
refundCount - the refundCount to set
-
-
-
- -

-setRefundCount

-
-public void setRefundCount(java.lang.String refundCount)
-
-
-
-
-
-
Parameters:
refundCount - the refundCount to set
-
-
-
- -

-getVoidCount

-
-public long getVoidCount()
-
-
-
-
-
- -
Returns:
the voidCount
-
-
-
- -

-setVoidCount

-
-public void setVoidCount(long voidCount)
-
-
-
-
-
-
Parameters:
voidCount - the voidCount to set
-
-
-
- -

-setVoidCount

-
-public void setVoidCount(java.lang.String voidCount)
-
-
-
-
-
-
Parameters:
voidCount - the voidCount to set
-
-
-
- -

-getDeclineCount

-
-public long getDeclineCount()
-
-
-
-
-
- -
Returns:
the declineCount
-
-
-
- -

-setDeclineCount

-
-public void setDeclineCount(long declineCount)
-
-
-
-
-
-
Parameters:
declineCount - the declineCount to set
-
-
-
- -

-setDeclineCount

-
-public void setDeclineCount(java.lang.String declineCount)
-
-
-
-
-
-
Parameters:
declineCount - the declineCount to set
-
-
-
- -

-getErrorCount

-
-public long getErrorCount()
-
-
-
-
-
- -
Returns:
the errorCount
-
-
-
- -

-setErrorCount

-
-public void setErrorCount(long errorCount)
-
-
-
-
-
-
Parameters:
errorCount - the errorCount to set
-
-
-
- -

-setErrorCount

-
-public void setErrorCount(java.lang.String errorCount)
-
-
-
-
-
-
Parameters:
errorCount - the errorCount to set
-
-
-
- -

-getReturnedItemAmount

-
-public java.math.BigDecimal getReturnedItemAmount()
-
-
-
-
-
- -
Returns:
the returnedItemAmount
-
-
-
- -

-setReturnedItemAmount

-
-public void setReturnedItemAmount(java.math.BigDecimal returnedItemAmount)
-
-
-
-
-
-
Parameters:
returnedItemAmount - the returnedItemAmount to set
-
-
-
- -

-setReturnedItemAmount

-
-public void setReturnedItemAmount(java.lang.String returnedItemAmount)
-
-
-
-
-
-
Parameters:
returnedItemAmount - the returnedItemAmount to set
-
-
-
- -

-getReturnedItemCount

-
-public long getReturnedItemCount()
-
-
-
-
-
- -
Returns:
the returnedItemCount
-
-
-
- -

-setReturnedItemCount

-
-public void setReturnedItemCount(long returnedItemCount)
-
-
-
-
-
-
Parameters:
returnedItemCount - the returnedItemCount to set
-
-
-
- -

-setReturnedItemCount

-
-public void setReturnedItemCount(java.lang.String returnedItemCount)
-
-
-
-
-
-
Parameters:
returnedItemCount - the returnedItemCount to set
-
-
-
- -

-getChargebackAmount

-
-public java.math.BigDecimal getChargebackAmount()
-
-
-
-
-
- -
Returns:
the ChargebackAmount
-
-
-
- -

-setChargebackAmount

-
-public void setChargebackAmount(java.math.BigDecimal ChargebackAmount)
-
-
-
-
-
-
Parameters:
ChargebackAmount - the ChargebackAmount to set
-
-
-
- -

-setChargebackAmount

-
-public void setChargebackAmount(java.lang.String ChargebackAmount)
-
-
-
-
-
-
Parameters:
ChargebackAmount - the ChargebackAmount to set
-
-
-
- -

-getChargebackCount

-
-public long getChargebackCount()
-
-
-
-
-
- -
Returns:
the ChargebackCount
-
-
-
- -

-setChargebackCount

-
-public void setChargebackCount(long ChargebackCount)
-
-
-
-
-
-
Parameters:
ChargebackCount - the ChargebackCount to set
-
-
-
- -

-setChargebackCount

-
-public void setChargebackCount(java.lang.String ChargebackCount)
-
-
-
-
-
-
Parameters:
ChargebackCount - the ChargebackCount to set
-
-
-
- -

-getCorrectionNoticeCount

-
-public long getCorrectionNoticeCount()
-
-
-
-
-
- -
Returns:
the correctionNoticeCount
-
-
-
- -

-setCorrectionNoticeCount

-
-public void setCorrectionNoticeCount(long correctionNoticeCount)
-
-
-
-
-
-
Parameters:
correctionNoticeCount - the correctionNoticeCount to set
-
-
-
- -

-setCorrectionNoticeCount

-
-public void setCorrectionNoticeCount(java.lang.String correctionNoticeCount)
-
-
-
-
-
-
Parameters:
correctionNoticeCount - the correctionNoticeCount to set
-
-
-
- -

-getChargeChargebackAmount

-
-public java.math.BigDecimal getChargeChargebackAmount()
-
-
-
-
-
- -
Returns:
the chargeChargebackAmount
-
-
-
- -

-setChargeChargebackAmount

-
-public void setChargeChargebackAmount(java.math.BigDecimal chargeChargebackAmount)
-
-
-
-
-
-
Parameters:
chargeChargebackAmount - the chargeChargebackAmount to set
-
-
-
- -

-setChargeChargebackAmount

-
-public void setChargeChargebackAmount(java.lang.String chargeChargebackAmount)
-
-
-
-
-
-
Parameters:
chargeChargebackAmount - the chargeChargebackAmount to set
-
-
-
- -

-getChargeChargebackCount

-
-public long getChargeChargebackCount()
-
-
-
-
-
- -
Returns:
the chargeChargebackCount
-
-
-
- -

-setChargeChargebackCount

-
-public void setChargeChargebackCount(long chargeChargebackCount)
-
-
-
-
-
-
Parameters:
chargeChargebackCount - the chargeChargebackCount to set
-
-
-
- -

-setChargeChargebackCount

-
-public void setChargeChargebackCount(java.lang.String chargeChargebackCount)
-
-
-
-
-
-
Parameters:
chargeChargebackCount - the chargeChargebackCount to set
-
-
-
- -

-getRefundChargebackAmount

-
-public java.math.BigDecimal getRefundChargebackAmount()
-
-
-
-
-
- -
Returns:
the refundChargebackAmount
-
-
-
- -

-setRefundChargebackAmount

-
-public void setRefundChargebackAmount(java.math.BigDecimal refundChargebackAmount)
-
-
-
-
-
-
Parameters:
refundChargebackAmount - the refundChargebackAmount to set
-
-
-
- -

-setRefundChargebackAmount

-
-public void setRefundChargebackAmount(java.lang.String refundChargebackAmount)
-
-
-
-
-
-
Parameters:
refundChargebackAmount - the refundChargebackAmount to set
-
-
-
- -

-getRefundChargebackCount

-
-public long getRefundChargebackCount()
-
-
-
-
-
- -
Returns:
the refundChargebackCount
-
-
-
- -

-setRefundChargebackCount

-
-public void setRefundChargebackCount(long refundChargebackCount)
-
-
-
-
-
-
Parameters:
refundChargebackCount - the refundChargebackCount to set
-
-
-
- -

-setRefundChargebackCount

-
-public void setRefundChargebackCount(java.lang.String refundChargebackCount)
-
-
-
-
-
-
Parameters:
refundChargebackCount - the refundChargebackCount to set
-
-
-
- -

-getChargeReturnedItemsAmount

-
-public java.math.BigDecimal getChargeReturnedItemsAmount()
-
-
-
-
-
- -
Returns:
the chargeReturnedItemsAmount
-
-
-
- -

-setChargeReturnedItemsAmount

-
-public void setChargeReturnedItemsAmount(java.math.BigDecimal chargeReturnedItemsAmount)
-
-
-
-
-
-
Parameters:
chargeReturnedItemsAmount - the chargeReturnedItemsAmount to set
-
-
-
- -

-setChargeReturnedItemsAmount

-
-public void setChargeReturnedItemsAmount(java.lang.String chargeReturnedItemsAmount)
-
-
-
-
-
-
Parameters:
chargeReturnedItemsAmount - the chargeReturnedItemsAmount to set
-
-
-
- -

-getChargeReturnedItemsCount

-
-public long getChargeReturnedItemsCount()
-
-
-
-
-
- -
Returns:
the chargeReturnedItemsCount
-
-
-
- -

-setChargeReturnedItemsCount

-
-public void setChargeReturnedItemsCount(long chargeReturnedItemsCount)
-
-
-
-
-
-
Parameters:
chargeReturnedItemsCount - the chargeReturnedItemsCount to set
-
-
-
- -

-setChargeReturnedItemsCount

-
-public void setChargeReturnedItemsCount(java.lang.String chargeReturnedItemsCount)
-
-
-
-
-
-
Parameters:
chargeReturnedItemsCount - the chargeReturnedItemsCount to set
-
-
-
- -

-getRefundReturnedItemsAmount

-
-public java.math.BigDecimal getRefundReturnedItemsAmount()
-
-
-
-
-
- -
Returns:
the refundReturnedItemsAmount
-
-
-
- -

-setRefundReturnedItemsAmount

-
-public void setRefundReturnedItemsAmount(java.math.BigDecimal refundReturnedItemsAmount)
-
-
-
-
-
-
Parameters:
refundReturnedItemsAmount - the refundReturnedItemsAmount to set
-
-
-
- -

-setRefundReturnedItemsAmount

-
-public void setRefundReturnedItemsAmount(java.lang.String refundReturnedItemsAmount)
-
-
-
-
-
-
Parameters:
refundReturnedItemsAmount - the refundReturnedItemsAmount to set
-
-
-
- -

-getRefundReturnedItemsCount

-
-public long getRefundReturnedItemsCount()
-
-
-
-
-
- -
Returns:
the refundReturnedItemsCount
-
-
-
- -

-setRefundReturnedItemsCount

-
-public void setRefundReturnedItemsCount(long refundReturnedItemsCount)
-
-
-
-
-
-
Parameters:
refundReturnedItemsCount - the refundReturnedItemsCount to set
-
-
-
- -

-setRefundReturnedItemsCount

-
-public void setRefundReturnedItemsCount(java.lang.String refundReturnedItemsCount)
-
-
-
-
-
-
Parameters:
refundReturnedItemsCount - the refundReturnedItemsCount to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/CAVVResponseType.html b/docs/javadocs/net/authorize/data/reporting/CAVVResponseType.html deleted file mode 100644 index 16101d6..0000000 --- a/docs/javadocs/net/authorize/data/reporting/CAVVResponseType.html +++ /dev/null @@ -1,561 +0,0 @@ - - - - - - -CAVVResponseType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Enum CAVVResponseType

-
-java.lang.Object
-  extended by java.lang.Enum<CAVVResponseType>
-      extended by net.authorize.data.reporting.CAVVResponseType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CAVVResponseType>
-
-
-
-
public enum CAVVResponseType
extends java.lang.Enum<CAVVResponseType>
- - -

-Cardholder Authentication Verification type. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
CAVV_0 - -
-           
CAVV_1 - -
-           
CAVV_2 - -
-           
CAVV_3 - -
-           
CAVV_4 - -
-           
CAVV_5 - -
-           
CAVV_6 - -
-           
CAVV_7 - -
-           
CAVV_8 - -
-           
CAVV_9 - -
-           
CAVV_A - -
-           
CAVV_B - -
-           
NOT_VALIDATED - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static CAVVResponseTypefindByValue(java.lang.String value) - -
-           
- java.lang.StringgetDescription() - -
-           
- java.lang.StringgetValue() - -
-           
-static CAVVResponseTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static CAVVResponseType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-NOT_VALIDATED

-
-public static final CAVVResponseType NOT_VALIDATED
-
-
-
-
-
- -

-CAVV_0

-
-public static final CAVVResponseType CAVV_0
-
-
-
-
-
- -

-CAVV_1

-
-public static final CAVVResponseType CAVV_1
-
-
-
-
-
- -

-CAVV_2

-
-public static final CAVVResponseType CAVV_2
-
-
-
-
-
- -

-CAVV_3

-
-public static final CAVVResponseType CAVV_3
-
-
-
-
-
- -

-CAVV_4

-
-public static final CAVVResponseType CAVV_4
-
-
-
-
-
- -

-CAVV_5

-
-public static final CAVVResponseType CAVV_5
-
-
-
-
-
- -

-CAVV_6

-
-public static final CAVVResponseType CAVV_6
-
-
-
-
-
- -

-CAVV_7

-
-public static final CAVVResponseType CAVV_7
-
-
-
-
-
- -

-CAVV_8

-
-public static final CAVVResponseType CAVV_8
-
-
-
-
-
- -

-CAVV_9

-
-public static final CAVVResponseType CAVV_9
-
-
-
-
-
- -

-CAVV_A

-
-public static final CAVVResponseType CAVV_A
-
-
-
-
-
- -

-CAVV_B

-
-public static final CAVVResponseType CAVV_B
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static CAVVResponseType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (CAVVResponseType c : CAVVResponseType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static CAVVResponseType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByValue

-
-public static CAVVResponseType findByValue(java.lang.String value)
-
-
-
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
-
- -

-getDescription

-
-public java.lang.String getDescription()
-
-
- -
Returns:
the description
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/CardCodeResponseType.html b/docs/javadocs/net/authorize/data/reporting/CardCodeResponseType.html deleted file mode 100644 index 3bb0be7..0000000 --- a/docs/javadocs/net/authorize/data/reporting/CardCodeResponseType.html +++ /dev/null @@ -1,433 +0,0 @@ - - - - - - -CardCodeResponseType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Enum CardCodeResponseType

-
-java.lang.Object
-  extended by java.lang.Enum<CardCodeResponseType>
-      extended by net.authorize.data.reporting.CardCodeResponseType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CardCodeResponseType>
-
-
-
-
public enum CardCodeResponseType
extends java.lang.Enum<CardCodeResponseType>
- - -

-Card code type. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
M - -
-           
N - -
-           
P - -
-           
S - -
-           
U - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static CardCodeResponseTypefindByValue(java.lang.String value) - -
-           
- java.lang.StringgetDescription() - -
-           
- java.lang.StringgetValue() - -
-           
-static CardCodeResponseTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static CardCodeResponseType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-M

-
-public static final CardCodeResponseType M
-
-
-
-
-
- -

-N

-
-public static final CardCodeResponseType N
-
-
-
-
-
- -

-P

-
-public static final CardCodeResponseType P
-
-
-
-
-
- -

-S

-
-public static final CardCodeResponseType S
-
-
-
-
-
- -

-U

-
-public static final CardCodeResponseType U
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static CardCodeResponseType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (CardCodeResponseType c : CardCodeResponseType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static CardCodeResponseType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByValue

-
-public static CardCodeResponseType findByValue(java.lang.String value)
-
-
-
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
-
- -

-getDescription

-
-public java.lang.String getDescription()
-
-
- -
Returns:
the description
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/FDSFilter.html b/docs/javadocs/net/authorize/data/reporting/FDSFilter.html deleted file mode 100644 index 8889da6..0000000 --- a/docs/javadocs/net/authorize/data/reporting/FDSFilter.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - -FDSFilter (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Class FDSFilter

-
-java.lang.Object
-  extended by net.authorize.data.reporting.FDSFilter
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class FDSFilter
extends java.lang.Object
implements java.io.Serializable
- - -

-Fraud Detection Suite filter enumeration. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static FDSFiltercreateFDSFilter() - -
-           
- FDSFilterActionTypegetAction() - -
-           
- java.lang.StringgetName() - -
-           
- voidsetAction(FDSFilterActionType action) - -
-           
- voidsetName(java.lang.String name) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createFDSFilter

-
-public static FDSFilter createFDSFilter()
-
-
-
-
-
-
-
-
-
- -

-getName

-
-public java.lang.String getName()
-
-
-
-
-
- -
Returns:
the name
-
-
-
- -

-setName

-
-public void setName(java.lang.String name)
-
-
-
-
-
-
Parameters:
name - the name to set
-
-
-
- -

-getAction

-
-public FDSFilterActionType getAction()
-
-
-
-
-
- -
Returns:
the action
-
-
-
- -

-setAction

-
-public void setAction(FDSFilterActionType action)
-
-
-
-
-
-
Parameters:
action - the action to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/FDSFilterActionType.html b/docs/javadocs/net/authorize/data/reporting/FDSFilterActionType.html deleted file mode 100644 index be32b83..0000000 --- a/docs/javadocs/net/authorize/data/reporting/FDSFilterActionType.html +++ /dev/null @@ -1,394 +0,0 @@ - - - - - - -FDSFilterActionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Enum FDSFilterActionType

-
-java.lang.Object
-  extended by java.lang.Enum<FDSFilterActionType>
-      extended by net.authorize.data.reporting.FDSFilterActionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FDSFilterActionType>
-
-
-
-
public enum FDSFilterActionType
extends java.lang.Enum<FDSFilterActionType>
- - -

-The action taken for a transaction that triggered one or more of the - Advanced Fraud Detection Suite filters. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
AUTH_AND_HOLD - -
-           
DECLINE - -
-           
HOLD - -
-           
REJECT - -
-           
REPORT - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static FDSFilterActionTypefindByValue(java.lang.String value) - -
-           
-static FDSFilterActionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static FDSFilterActionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-REJECT

-
-public static final FDSFilterActionType REJECT
-
-
-
-
-
- -

-DECLINE

-
-public static final FDSFilterActionType DECLINE
-
-
-
-
-
- -

-HOLD

-
-public static final FDSFilterActionType HOLD
-
-
-
-
-
- -

-AUTH_AND_HOLD

-
-public static final FDSFilterActionType AUTH_AND_HOLD
-
-
-
-
-
- -

-REPORT

-
-public static final FDSFilterActionType REPORT
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static FDSFilterActionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (FDSFilterActionType c : FDSFilterActionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static FDSFilterActionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByValue

-
-public static FDSFilterActionType findByValue(java.lang.String value)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/ReportingDetails.html b/docs/javadocs/net/authorize/data/reporting/ReportingDetails.html deleted file mode 100644 index 1fd1a85..0000000 --- a/docs/javadocs/net/authorize/data/reporting/ReportingDetails.html +++ /dev/null @@ -1,644 +0,0 @@ - - - - - - -ReportingDetails (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Class ReportingDetails

-
-java.lang.Object
-  extended by net.authorize.data.reporting.ReportingDetails
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class ReportingDetails
extends java.lang.Object
implements java.io.Serializable
- - -

-Reporting details. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - -
-Field Summary
-static java.lang.StringDATE_FORMAT - -
-           
-static java.lang.StringDATE_FORMAT_FULL - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ReportingDetailscreateReportingDetails() - -
-           
- java.util.ArrayList<BatchDetails>getBatchDetailsList() - -
-           
- java.util.DategetBatchFirstSettlementDate() - -
-           
- java.lang.StringgetBatchId() - -
-           
- java.util.DategetBatchLastSettlementDate() - -
-           
- java.util.ArrayList<TransactionDetails>getTransactionDetailList() - -
-           
- java.lang.StringgetTransactionId() - -
-           
- booleanisBatchIncludeStatistics() - -
-           
- voidsetBatchDetailsList(java.util.ArrayList<BatchDetails> batchDetailList) - -
-           
- voidsetBatchFirstSettlementDate(java.util.Date batchFirstSettlementDate) - -
-           
- voidsetBatchFirstSettlementDate(java.lang.String batchFirstSettlementDate) - -
-           
- voidsetBatchId(java.lang.String batchId) - -
-           
- voidsetBatchIncludeStatistics(boolean batchIncludeStatistics) - -
-           
- voidsetBatchLastSettlementDate(java.util.Date batchLastSettlementDate) - -
-           
- voidsetBatchLastSettlementDate(java.lang.String batchLastSettlementDate) - -
-           
- voidsetTransactionDetailList(java.util.ArrayList<TransactionDetails> transactionDetailList) - -
-           
- voidsetTransactionId(java.lang.String transactionId) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-DATE_FORMAT

-
-public static java.lang.String DATE_FORMAT
-
-
-
-
-
- -

-DATE_FORMAT_FULL

-
-public static java.lang.String DATE_FORMAT_FULL
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-createReportingDetails

-
-public static ReportingDetails createReportingDetails()
-
-
-
-
-
-
-
-
-
- -

-isBatchIncludeStatistics

-
-public boolean isBatchIncludeStatistics()
-
-
-
-
-
- -
Returns:
the batchIncludeStatistics
-
-
-
- -

-setBatchIncludeStatistics

-
-public void setBatchIncludeStatistics(boolean batchIncludeStatistics)
-
-
-
-
-
-
Parameters:
batchIncludeStatistics - the batchIncludeStatistics to set
-
-
-
- -

-getBatchFirstSettlementDate

-
-public java.util.Date getBatchFirstSettlementDate()
-
-
-
-
-
- -
Returns:
the batchFirstSettlementDate
-
-
-
- -

-setBatchFirstSettlementDate

-
-public void setBatchFirstSettlementDate(java.util.Date batchFirstSettlementDate)
-
-
-
-
-
-
Parameters:
batchFirstSettlementDate - the batchFirstSettlementDate to set
-
-
-
- -

-setBatchFirstSettlementDate

-
-public void setBatchFirstSettlementDate(java.lang.String batchFirstSettlementDate)
-
-
-
-
-
-
Parameters:
batchFirstSettlementDate - the batchFirstSettlementDate to set
-
-
-
- -

-getBatchLastSettlementDate

-
-public java.util.Date getBatchLastSettlementDate()
-
-
-
-
-
- -
Returns:
the batchLastSettlementDate
-
-
-
- -

-setBatchLastSettlementDate

-
-public void setBatchLastSettlementDate(java.util.Date batchLastSettlementDate)
-
-
-
-
-
-
Parameters:
batchLastSettlementDate - the batchLastSettlementDate to set
-
-
-
- -

-setBatchLastSettlementDate

-
-public void setBatchLastSettlementDate(java.lang.String batchLastSettlementDate)
-
-
-
-
-
-
Parameters:
batchLastSettlementDate - the batchLastSettlementDate to set
-
-
-
- -

-getBatchId

-
-public java.lang.String getBatchId()
-
-
-
-
-
- -
Returns:
the batchId
-
-
-
- -

-setBatchId

-
-public void setBatchId(java.lang.String batchId)
-
-
-
-
-
-
Parameters:
batchId - the batchId to set
-
-
-
- -

-getTransactionId

-
-public java.lang.String getTransactionId()
-
-
-
-
-
- -
Returns:
the transactionId
-
-
-
- -

-setTransactionId

-
-public void setTransactionId(java.lang.String transactionId)
-
-
-
-
-
-
Parameters:
transactionId - the transactionId to set
-
-
-
- -

-getBatchDetailsList

-
-public java.util.ArrayList<BatchDetails> getBatchDetailsList()
-
-
-
-
-
- -
Returns:
the batchDetailList
-
-
-
- -

-setBatchDetailsList

-
-public void setBatchDetailsList(java.util.ArrayList<BatchDetails> batchDetailList)
-
-
-
-
-
-
Parameters:
batchDetailList - the batchDetailList to set
-
-
-
- -

-getTransactionDetailList

-
-public java.util.ArrayList<TransactionDetails> getTransactionDetailList()
-
-
-
-
-
- -
Returns:
the transactionDetailList
-
-
-
- -

-setTransactionDetailList

-
-public void setTransactionDetailList(java.util.ArrayList<TransactionDetails> transactionDetailList)
-
-
-
-
-
-
Parameters:
transactionDetailList - the transactionDetailList to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/ReportingTransactionType.html b/docs/javadocs/net/authorize/data/reporting/ReportingTransactionType.html deleted file mode 100644 index 077c7f0..0000000 --- a/docs/javadocs/net/authorize/data/reporting/ReportingTransactionType.html +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - -ReportingTransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Enum ReportingTransactionType

-
-java.lang.Object
-  extended by java.lang.Enum<ReportingTransactionType>
-      extended by net.authorize.data.reporting.ReportingTransactionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ReportingTransactionType>
-
-
-
-
public enum ReportingTransactionType
extends java.lang.Enum<ReportingTransactionType>
- - -

-ReportingTransactionType enumeration. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
AUTH_CAPTURE - -
-           
AUTH_ONLY - -
-           
CAPTURE_ONLY - -
-           
REFUND - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ReportingTransactionTypefromValue(java.lang.String v) - -
-           
- java.lang.Stringvalue() - -
-           
-static ReportingTransactionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ReportingTransactionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-AUTH_CAPTURE

-
-public static final ReportingTransactionType AUTH_CAPTURE
-
-
-
-
-
- -

-AUTH_ONLY

-
-public static final ReportingTransactionType AUTH_ONLY
-
-
-
-
-
- -

-CAPTURE_ONLY

-
-public static final ReportingTransactionType CAPTURE_ONLY
-
-
-
-
-
- -

-REFUND

-
-public static final ReportingTransactionType REFUND
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static ReportingTransactionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (ReportingTransactionType c : ReportingTransactionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static ReportingTransactionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-value

-
-public java.lang.String value()
-
-
-
-
-
-
- -

-fromValue

-
-public static ReportingTransactionType fromValue(java.lang.String v)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/SettlementStateType.html b/docs/javadocs/net/authorize/data/reporting/SettlementStateType.html deleted file mode 100644 index a6ccd50..0000000 --- a/docs/javadocs/net/authorize/data/reporting/SettlementStateType.html +++ /dev/null @@ -1,364 +0,0 @@ - - - - - - -SettlementStateType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Enum SettlementStateType

-
-java.lang.Object
-  extended by java.lang.Enum<SettlementStateType>
-      extended by net.authorize.data.reporting.SettlementStateType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SettlementStateType>
-
-
-
-
public enum SettlementStateType
extends java.lang.Enum<SettlementStateType>
- - -

-Settlement state enumeration. -

- -

-


- -

- - - - - - - - - - - - - -
-Enum Constant Summary
ERROR - -
-           
SETTLED_SUCCESSFULLY - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static SettlementStateTypefromValue(java.lang.String v) - -
-           
- java.lang.Stringvalue() - -
-           
-static SettlementStateTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static SettlementStateType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-SETTLED_SUCCESSFULLY

-
-public static final SettlementStateType SETTLED_SUCCESSFULLY
-
-
-
-
-
- -

-ERROR

-
-public static final SettlementStateType ERROR
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static SettlementStateType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (SettlementStateType c : SettlementStateType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static SettlementStateType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-value

-
-public java.lang.String value()
-
-
-
-
-
-
- -

-fromValue

-
-public static SettlementStateType fromValue(java.lang.String v)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/TransactionDetails.html b/docs/javadocs/net/authorize/data/reporting/TransactionDetails.html deleted file mode 100644 index 27f99bc..0000000 --- a/docs/javadocs/net/authorize/data/reporting/TransactionDetails.html +++ /dev/null @@ -1,1891 +0,0 @@ - - - - - - -TransactionDetails (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Class TransactionDetails

-
-java.lang.Object
-  extended by net.authorize.data.reporting.TransactionDetails
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class TransactionDetails
extends java.lang.Object
implements java.io.Serializable
- - -

-Reporting transaction details. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static TransactionDetailscreateTransactionDetails() - -
-           
- java.lang.StringgetAccountNumber() - -
-           
- CardTypegetAccountType() - -
-           
- java.math.BigDecimalgetAuthAmount() - -
-           
- java.lang.StringgetAuthCode() - -
-           
- AVSCodegetAvsResponse() - -
-           
- BatchDetailsgetBatch() - -
-           
- CardCodeResponseTypegetCardCodeResponse() - -
-           
- CAVVResponseTypegetCAVVResponse() - -
-           
- CustomergetCustomer() - -
-           
- java.lang.StringgetCustomerIP() - -
-           
- FDSFilterActionTypegetFDSFilterAction() - -
-           
- java.util.ArrayList<FDSFilter>getFDSFilterList() - -
-           
- java.lang.StringgetFirstName() - -
-           
- java.lang.StringgetInvoiceNumber() - -
-           
- java.lang.StringgetLastName() - -
-           
- OrdergetOrder() - -
-           
- PaymentgetPayment() - -
-           
- java.math.BigDecimalgetPrepaidBalanceRemaining() - -
-           
- java.lang.StringgetRefTransId() - -
-           
- java.math.BigDecimalgetRequestedAmount() - -
-           
- ResponseCodegetResponseCode() - -
-           
- ResponseReasonCodegetResponseReasonCode() - -
-           
- java.math.BigDecimalgetSettleAmount() - -
-           
- java.lang.StringgetSplitTenderId() - -
-           
- java.util.DategetSubmitTimeLocal() - -
-           
- java.util.DategetSubmitTimeUTC() - -
-           
- TransactionStatusTypegetTransactionStatus() - -
-           
- ReportingTransactionTypegetTransactionType() - -
-           
- java.lang.StringgetTransId() - -
-           
- booleanisFullTransactionDetails() - -
-           
- booleanisItemTaxExempt() - -
-           
- booleanisRecurringBilling() - -
-           
- voidsetAccountNumber(java.lang.String accountNumber) - -
-           
- voidsetAccountType(CardType accountType) - -
-           
- voidsetAccountType(java.lang.String accountType) - -
-           
- voidsetAuthAmount(java.math.BigDecimal authAmount) - -
-           
- voidsetAuthAmount(java.lang.String authAmount) - -
-           
- voidsetAuthCode(java.lang.String authCode) - -
-           
- voidsetAvsResponse(AVSCode avsResponse) - -
-           
- voidsetBatch(BatchDetails batch) - -
-           
- voidsetCardCodeResponse(CardCodeResponseType cardCodeResponse) - -
-           
- voidsetCAVVResponse(CAVVResponseType cAVVResponse) - -
-           
- voidsetCustomer(Customer customer) - -
-           
- voidsetCustomerIP(java.lang.String customerIP) - -
-           
- voidsetFDSFilterAction(FDSFilterActionType fDSFilterAction) - -
-           
- voidsetFDSFilterList(java.util.ArrayList<FDSFilter> fDSFilterList) - -
-           
- voidsetFirstName(java.lang.String firstName) - -
-           
- voidsetFullTransactionDetails(boolean fullTransactionDetails) - -
-           
- voidsetInvoiceNumber(java.lang.String invoiceNumber) - -
-           
- voidsetItemTaxExempt(boolean itemTaxExempt) - -
-           
- voidsetItemTaxExempt(java.lang.String itemTaxExempt) - -
-           
- voidsetLastName(java.lang.String lastName) - -
-           
- voidsetOrder(Order order) - -
-           
- voidsetPayment(Payment payment) - -
-           
- voidsetPrepaidBalanceRemaining(java.math.BigDecimal prepaidBalanceRemaining) - -
-           
- voidsetPrepaidBalanceRemaining(java.lang.String prepaidBalanceRemaining) - -
-           
- voidsetRecurringBilling(boolean recurringBilling) - -
-           
- voidsetRecurringBilling(java.lang.String recurringBilling) - -
-           
- voidsetRefTransId(java.lang.String refTransId) - -
-           
- voidsetRequestedAmount(java.math.BigDecimal requestedAmount) - -
-           
- voidsetRequestedAmount(java.lang.String requestedAmount) - -
-           
- voidsetResponseCode(ResponseCode responseCode) - -
-           
- voidsetResponseReasonCode(ResponseReasonCode responseReasonCode) - -
-           
- voidsetSettleAmount(java.math.BigDecimal settleAmount) - -
-           
- voidsetSettleAmount(java.lang.String settleAmount) - -
-           
- voidsetSplitTenderId(java.lang.String splitTenderId) - -
-           
- voidsetSubmitTimeLocal(java.util.Date submitTimeLocal) - -
-           
- voidsetSubmitTimeLocal(java.lang.String submitTimeLocal) - -
-           
- voidsetSubmitTimeUTC(java.util.Date submitTimeUTC) - -
-           
- voidsetSubmitTimeUTC(java.lang.String submitTimeUTC) - -
-           
- voidsetTransactionStatus(java.lang.String transactionStatus) - -
-           
- voidsetTransactionStatus(TransactionStatusType transactionStatus) - -
-           
- voidsetTransactionType(ReportingTransactionType transactionType) - -
-           
- voidsetTransId(java.lang.String transId) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createTransactionDetails

-
-public static TransactionDetails createTransactionDetails()
-
-
-
-
-
-
-
-
-
- -

-getTransId

-
-public java.lang.String getTransId()
-
-
-
-
-
- -
Returns:
the transId
-
-
-
- -

-setTransId

-
-public void setTransId(java.lang.String transId)
-
-
-
-
-
-
Parameters:
transId - the transId to set
-
-
-
- -

-getSubmitTimeUTC

-
-public java.util.Date getSubmitTimeUTC()
-
-
-
-
-
- -
Returns:
the submitTimeUTC
-
-
-
- -

-setSubmitTimeUTC

-
-public void setSubmitTimeUTC(java.util.Date submitTimeUTC)
-
-
-
-
-
-
Parameters:
submitTimeUTC - the submitTimeUTC to set
-
-
-
- -

-setSubmitTimeUTC

-
-public void setSubmitTimeUTC(java.lang.String submitTimeUTC)
-
-
-
-
-
-
Parameters:
submitTimeUTC - the submitTimeUTC to set
-
-
-
- -

-getSubmitTimeLocal

-
-public java.util.Date getSubmitTimeLocal()
-
-
-
-
-
- -
Returns:
the submitTimeLocal
-
-
-
- -

-setSubmitTimeLocal

-
-public void setSubmitTimeLocal(java.util.Date submitTimeLocal)
-
-
-
-
-
-
Parameters:
submitTimeLocal - the submitTimeLocal to set
-
-
-
- -

-setSubmitTimeLocal

-
-public void setSubmitTimeLocal(java.lang.String submitTimeLocal)
-
-
-
-
-
-
Parameters:
submitTimeLocal - the submitTimeLocal to set
-
-
-
- -

-getTransactionStatus

-
-public TransactionStatusType getTransactionStatus()
-
-
-
-
-
- -
Returns:
the transactionStatus
-
-
-
- -

-setTransactionStatus

-
-public void setTransactionStatus(TransactionStatusType transactionStatus)
-
-
-
-
-
-
Parameters:
transactionStatus - the transactionStatus to set
-
-
-
- -

-setTransactionStatus

-
-public void setTransactionStatus(java.lang.String transactionStatus)
-
-
-
-
-
-
Parameters:
transactionStatus - the transactionStatus to set
-
-
-
- -

-getInvoiceNumber

-
-public java.lang.String getInvoiceNumber()
-
-
-
-
-
- -
Returns:
the invoiceNumber
-
-
-
- -

-setInvoiceNumber

-
-public void setInvoiceNumber(java.lang.String invoiceNumber)
-
-
-
-
-
-
Parameters:
invoiceNumber - the invoiceNumber to set
-
-
-
- -

-getFirstName

-
-public java.lang.String getFirstName()
-
-
-
-
-
- -
Returns:
the firstName
-
-
-
- -

-setFirstName

-
-public void setFirstName(java.lang.String firstName)
-
-
-
-
-
-
Parameters:
firstName - the firstName to set
-
-
-
- -

-getLastName

-
-public java.lang.String getLastName()
-
-
-
-
-
- -
Returns:
the lastName
-
-
-
- -

-setLastName

-
-public void setLastName(java.lang.String lastName)
-
-
-
-
-
-
Parameters:
lastName - the lastName to set
-
-
-
- -

-getAccountType

-
-public CardType getAccountType()
-
-
-
-
-
- -
Returns:
the accountType
-
-
-
- -

-setAccountType

-
-public void setAccountType(CardType accountType)
-
-
-
-
-
-
Parameters:
accountType - the accountType to set
-
-
-
- -

-setAccountType

-
-public void setAccountType(java.lang.String accountType)
-
-
-
-
-
-
Parameters:
accountType - the accountType to set
-
-
-
- -

-getAccountNumber

-
-public java.lang.String getAccountNumber()
-
-
-
-
-
- -
Returns:
the accountNumber
-
-
-
- -

-setAccountNumber

-
-public void setAccountNumber(java.lang.String accountNumber)
-
-
-
-
-
-
Parameters:
accountNumber - the accountNumber to set
-
-
-
- -

-isFullTransactionDetails

-
-public boolean isFullTransactionDetails()
-
-
-
-
-
- -
Returns:
the fullTransactionDetails
-
-
-
- -

-setFullTransactionDetails

-
-public void setFullTransactionDetails(boolean fullTransactionDetails)
-
-
-
-
-
-
Parameters:
fullTransactionDetails - the fullTransactionDetails to set
-
-
-
- -

-getRefTransId

-
-public java.lang.String getRefTransId()
-
-
-
-
-
- -
Returns:
the refTransId
-
-
-
- -

-setRefTransId

-
-public void setRefTransId(java.lang.String refTransId)
-
-
-
-
-
-
Parameters:
refTransId - the refTransId to set
-
-
-
- -

-getSplitTenderId

-
-public java.lang.String getSplitTenderId()
-
-
-
-
-
- -
Returns:
the splitTenderId
-
-
-
- -

-setSplitTenderId

-
-public void setSplitTenderId(java.lang.String splitTenderId)
-
-
-
-
-
-
Parameters:
splitTenderId - the splitTenderId to set
-
-
-
- -

-getTransactionType

-
-public ReportingTransactionType getTransactionType()
-
-
-
-
-
- -
Returns:
the transactionType
-
-
-
- -

-setTransactionType

-
-public void setTransactionType(ReportingTransactionType transactionType)
-
-
-
-
-
-
Parameters:
transactionType - the transactionType to set
-
-
-
- -

-getResponseCode

-
-public ResponseCode getResponseCode()
-
-
-
-
-
- -
Returns:
the responseCode
-
-
-
- -

-setResponseCode

-
-public void setResponseCode(ResponseCode responseCode)
-
-
-
-
-
-
Parameters:
responseCode - the responseCode to set
-
-
-
- -

-getResponseReasonCode

-
-public ResponseReasonCode getResponseReasonCode()
-
-
-
-
-
- -
Returns:
the responseReasonCode
-
-
-
- -

-setResponseReasonCode

-
-public void setResponseReasonCode(ResponseReasonCode responseReasonCode)
-
-
-
-
-
-
Parameters:
responseReasonCode - the responseReasonCode to set
-
-
-
- -

-getAuthCode

-
-public java.lang.String getAuthCode()
-
-
-
-
-
- -
Returns:
the authCode
-
-
-
- -

-setAuthCode

-
-public void setAuthCode(java.lang.String authCode)
-
-
-
-
-
-
Parameters:
authCode - the authCode to set
-
-
-
- -

-getAvsResponse

-
-public AVSCode getAvsResponse()
-
-
-
-
-
- -
Returns:
the avsResponse
-
-
-
- -

-setAvsResponse

-
-public void setAvsResponse(AVSCode avsResponse)
-
-
-
-
-
-
Parameters:
avsResponse - the avsResponse to set
-
-
-
- -

-getCardCodeResponse

-
-public CardCodeResponseType getCardCodeResponse()
-
-
-
-
-
- -
Returns:
the cardCodeResponse
-
-
-
- -

-setCardCodeResponse

-
-public void setCardCodeResponse(CardCodeResponseType cardCodeResponse)
-
-
-
-
-
-
Parameters:
cardCodeResponse - the cardCodeResponse to set
-
-
-
- -

-getCAVVResponse

-
-public CAVVResponseType getCAVVResponse()
-
-
-
-
-
- -
Returns:
the cAVVResponse
-
-
-
- -

-setCAVVResponse

-
-public void setCAVVResponse(CAVVResponseType cAVVResponse)
-
-
-
-
-
-
Parameters:
cAVVResponse - the cAVVResponse to set
-
-
-
- -

-getFDSFilterAction

-
-public FDSFilterActionType getFDSFilterAction()
-
-
-
-
-
- -
Returns:
the fDSFilterAction
-
-
-
- -

-setFDSFilterAction

-
-public void setFDSFilterAction(FDSFilterActionType fDSFilterAction)
-
-
-
-
-
-
Parameters:
fDSFilterAction - the fDSFilterAction to set
-
-
-
- -

-getFDSFilterList

-
-public java.util.ArrayList<FDSFilter> getFDSFilterList()
-
-
-
-
-
- -
Returns:
the fDSFilterList
-
-
-
- -

-setFDSFilterList

-
-public void setFDSFilterList(java.util.ArrayList<FDSFilter> fDSFilterList)
-
-
-
-
-
-
Parameters:
fDSFilterList - the fDSFilterList to set
-
-
-
- -

-getBatch

-
-public BatchDetails getBatch()
-
-
-
-
-
- -
Returns:
the batch
-
-
-
- -

-setBatch

-
-public void setBatch(BatchDetails batch)
-
-
-
-
-
-
Parameters:
batch - the batch to set
-
-
-
- -

-getOrder

-
-public Order getOrder()
-
-
-
-
-
- -
Returns:
the order
-
-
-
- -

-setOrder

-
-public void setOrder(Order order)
-
-
-
-
-
-
Parameters:
order - the order to set
-
-
-
- -

-getRequestedAmount

-
-public java.math.BigDecimal getRequestedAmount()
-
-
-
-
-
- -
Returns:
the requestedAmount
-
-
-
- -

-setRequestedAmount

-
-public void setRequestedAmount(java.math.BigDecimal requestedAmount)
-
-
-
-
-
-
Parameters:
requestedAmount - the requestedAmount to set
-
-
-
- -

-setRequestedAmount

-
-public void setRequestedAmount(java.lang.String requestedAmount)
-
-
-
-
-
-
Parameters:
requestedAmount - the requestedAmount to set
-
-
-
- -

-getAuthAmount

-
-public java.math.BigDecimal getAuthAmount()
-
-
-
-
-
- -
Returns:
the authAmount
-
-
-
- -

-setAuthAmount

-
-public void setAuthAmount(java.math.BigDecimal authAmount)
-
-
-
-
-
-
Parameters:
authAmount - the authAmount to set
-
-
-
- -

-setAuthAmount

-
-public void setAuthAmount(java.lang.String authAmount)
-
-
-
-
-
-
Parameters:
authAmount - the authAmount to set
-
-
-
- -

-getSettleAmount

-
-public java.math.BigDecimal getSettleAmount()
-
-
-
-
-
- -
Returns:
the settleAmount
-
-
-
- -

-setSettleAmount

-
-public void setSettleAmount(java.math.BigDecimal settleAmount)
-
-
-
-
-
-
Parameters:
settleAmount - the settleAmount to set
-
-
-
- -

-setSettleAmount

-
-public void setSettleAmount(java.lang.String settleAmount)
-
-
-
-
-
-
Parameters:
settleAmount - the settleAmount to set
-
-
-
- -

-getPayment

-
-public Payment getPayment()
-
-
-
-
-
- -
Returns:
the payment
-
-
-
- -

-setPayment

-
-public void setPayment(Payment payment)
-
-
-
-
-
-
Parameters:
payment - the payment to set
-
-
-
- -

-getCustomer

-
-public Customer getCustomer()
-
-
-
-
-
- -
Returns:
the customer
-
-
-
- -

-setCustomer

-
-public void setCustomer(Customer customer)
-
-
-
-
-
-
Parameters:
customer - the customer to set
-
-
-
- -

-isRecurringBilling

-
-public boolean isRecurringBilling()
-
-
-
-
-
- -
Returns:
the recurringBilling
-
-
-
- -

-setRecurringBilling

-
-public void setRecurringBilling(boolean recurringBilling)
-
-
-
-
-
-
Parameters:
recurringBilling - the recurringBilling to set
-
-
-
- -

-setRecurringBilling

-
-public void setRecurringBilling(java.lang.String recurringBilling)
-
-
-
-
-
-
Parameters:
recurringBilling - the recurringBilling to set
-
-
-
- -

-getCustomerIP

-
-public java.lang.String getCustomerIP()
-
-
-
-
-
- -
Returns:
the customerIP
-
-
-
- -

-setCustomerIP

-
-public void setCustomerIP(java.lang.String customerIP)
-
-
-
-
-
-
Parameters:
customerIP - the customerIP to set
-
-
-
- -

-getPrepaidBalanceRemaining

-
-public java.math.BigDecimal getPrepaidBalanceRemaining()
-
-
-
-
-
- -
Returns:
the prepaidBalanceRemaining
-
-
-
- -

-setPrepaidBalanceRemaining

-
-public void setPrepaidBalanceRemaining(java.math.BigDecimal prepaidBalanceRemaining)
-
-
-
-
-
-
Parameters:
prepaidBalanceRemaining - the prepaidBalanceRemaining to set
-
-
-
- -

-setPrepaidBalanceRemaining

-
-public void setPrepaidBalanceRemaining(java.lang.String prepaidBalanceRemaining)
-
-
-
-
-
-
Parameters:
prepaidBalanceRemaining - the prepaidBalanceRemaining to set
-
-
-
- -

-isItemTaxExempt

-
-public boolean isItemTaxExempt()
-
-
-
-
-
- -
Returns:
the itemTaxExempt
-
-
-
- -

-setItemTaxExempt

-
-public void setItemTaxExempt(boolean itemTaxExempt)
-
-
-
-
-
-
Parameters:
itemTaxExempt - the itemTaxExempt to set
-
-
-
- -

-setItemTaxExempt

-
-public void setItemTaxExempt(java.lang.String itemTaxExempt)
-
-
-
-
-
-
Parameters:
itemTaxExempt - the itemTaxExempt to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/TransactionStatusType.html b/docs/javadocs/net/authorize/data/reporting/TransactionStatusType.html deleted file mode 100644 index bf1d100..0000000 --- a/docs/javadocs/net/authorize/data/reporting/TransactionStatusType.html +++ /dev/null @@ -1,716 +0,0 @@ - - - - - - -TransactionStatusType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.reporting -
-Enum TransactionStatusType

-
-java.lang.Object
-  extended by java.lang.Enum<TransactionStatusType>
-      extended by net.authorize.data.reporting.TransactionStatusType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransactionStatusType>
-
-
-
-
public enum TransactionStatusType
extends java.lang.Enum<TransactionStatusType>
- - -

-Transaction status enumeration. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
APPROVED_REVIEW - -
-           
AUTHORIZED_PENDING_CAPTURE - -
-           
AUTHORIZED_PENDING_RELEASE - -
-           
CAPTURED_PENDING_SETTLEMENT - -
-           
CHARGEBACK - -
-           
CHARGEBACK_REVERSAL - -
-           
COMMUNICATION_ERROR - -
-           
COULD_NOT_VOID - -
-           
DECLINED - -
-           
EXPIRED - -
-           
FAILED_REVIEW - -
-           
FDS_AUTHORIZED_PENDING_REVIEW - -
-           
FDS_PENDING_REVIEW - -
-           
GENERAL_ERROR - -
-           
PENDING_FINAL_SETTLEMENT - -
-           
PENDING_SETTLEMENT - -
-           
REFUND_PENDING_SETTLEMENT - -
-           
REFUND_SETTLED_SUCCESSFULLY - -
-           
RETURNED_ITEM - -
-           
SETTLED_SUCCESSFULLY - -
-           
SETTLEMENT_ERROR - -
-           
UNDER_REVIEW - -
-           
UPDATING_SETTLEMENT - -
-           
VOIDED - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static TransactionStatusTypefromValue(java.lang.String v) - -
-           
- java.lang.Stringvalue() - -
-           
-static TransactionStatusTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionStatusType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-AUTHORIZED_PENDING_CAPTURE

-
-public static final TransactionStatusType AUTHORIZED_PENDING_CAPTURE
-
-
-
-
-
- -

-CAPTURED_PENDING_SETTLEMENT

-
-public static final TransactionStatusType CAPTURED_PENDING_SETTLEMENT
-
-
-
-
-
- -

-COMMUNICATION_ERROR

-
-public static final TransactionStatusType COMMUNICATION_ERROR
-
-
-
-
-
- -

-REFUND_SETTLED_SUCCESSFULLY

-
-public static final TransactionStatusType REFUND_SETTLED_SUCCESSFULLY
-
-
-
-
-
- -

-REFUND_PENDING_SETTLEMENT

-
-public static final TransactionStatusType REFUND_PENDING_SETTLEMENT
-
-
-
-
-
- -

-APPROVED_REVIEW

-
-public static final TransactionStatusType APPROVED_REVIEW
-
-
-
-
-
- -

-DECLINED

-
-public static final TransactionStatusType DECLINED
-
-
-
-
-
- -

-COULD_NOT_VOID

-
-public static final TransactionStatusType COULD_NOT_VOID
-
-
-
-
-
- -

-EXPIRED

-
-public static final TransactionStatusType EXPIRED
-
-
-
-
-
- -

-GENERAL_ERROR

-
-public static final TransactionStatusType GENERAL_ERROR
-
-
-
-
-
- -

-PENDING_FINAL_SETTLEMENT

-
-public static final TransactionStatusType PENDING_FINAL_SETTLEMENT
-
-
-
-
-
- -

-PENDING_SETTLEMENT

-
-public static final TransactionStatusType PENDING_SETTLEMENT
-
-
-
-
-
- -

-FAILED_REVIEW

-
-public static final TransactionStatusType FAILED_REVIEW
-
-
-
-
-
- -

-SETTLED_SUCCESSFULLY

-
-public static final TransactionStatusType SETTLED_SUCCESSFULLY
-
-
-
-
-
- -

-SETTLEMENT_ERROR

-
-public static final TransactionStatusType SETTLEMENT_ERROR
-
-
-
-
-
- -

-UNDER_REVIEW

-
-public static final TransactionStatusType UNDER_REVIEW
-
-
-
-
-
- -

-UPDATING_SETTLEMENT

-
-public static final TransactionStatusType UPDATING_SETTLEMENT
-
-
-
-
-
- -

-VOIDED

-
-public static final TransactionStatusType VOIDED
-
-
-
-
-
- -

-FDS_PENDING_REVIEW

-
-public static final TransactionStatusType FDS_PENDING_REVIEW
-
-
-
-
-
- -

-FDS_AUTHORIZED_PENDING_REVIEW

-
-public static final TransactionStatusType FDS_AUTHORIZED_PENDING_REVIEW
-
-
-
-
-
- -

-RETURNED_ITEM

-
-public static final TransactionStatusType RETURNED_ITEM
-
-
-
-
-
- -

-CHARGEBACK

-
-public static final TransactionStatusType CHARGEBACK
-
-
-
-
-
- -

-CHARGEBACK_REVERSAL

-
-public static final TransactionStatusType CHARGEBACK_REVERSAL
-
-
-
-
-
- -

-AUTHORIZED_PENDING_RELEASE

-
-public static final TransactionStatusType AUTHORIZED_PENDING_RELEASE
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static TransactionStatusType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (TransactionStatusType c : TransactionStatusType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static TransactionStatusType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-value

-
-public java.lang.String value()
-
-
-
-
-
-
- -

-fromValue

-
-public static TransactionStatusType fromValue(java.lang.String v)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/BatchDetails.html b/docs/javadocs/net/authorize/data/reporting/class-use/BatchDetails.html deleted file mode 100644 index 88aa4d7..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/BatchDetails.html +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.BatchDetails (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.BatchDetails

-
- - - - - - - - - -
-Packages that use BatchDetails
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of BatchDetails in net.authorize.data.reporting
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.reporting that return BatchDetails
-static BatchDetailsBatchDetails.createBatchDetail() - -
-           
- BatchDetailsTransactionDetails.getBatch() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return types with arguments of type BatchDetails
- java.util.ArrayList<BatchDetails>ReportingDetails.getBatchDetailsList() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type BatchDetails
- voidTransactionDetails.setBatch(BatchDetails batch) - -
-           
-  -

- - - - - - - - - -
Method parameters in net.authorize.data.reporting with type arguments of type BatchDetails
- voidReportingDetails.setBatchDetailsList(java.util.ArrayList<BatchDetails> batchDetailList) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/BatchStatistics.html b/docs/javadocs/net/authorize/data/reporting/class-use/BatchStatistics.html deleted file mode 100644 index 3760891..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/BatchStatistics.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.BatchStatistics (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.BatchStatistics

-
- - - - - - - - - -
-Packages that use BatchStatistics
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of BatchStatistics in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return BatchStatistics
-static BatchStatisticsBatchStatistics.createBatchStatistics() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return types with arguments of type BatchStatistics
- java.util.ArrayList<BatchStatistics>BatchDetails.getBatchStatisticsList() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type BatchStatistics
- voidBatchDetails.addBatchStatistics(BatchStatistics batchStatistics) - -
-          Add batch statistics object to the existing list.
-  -

- - - - - - - - - -
Method parameters in net.authorize.data.reporting with type arguments of type BatchStatistics
- voidBatchDetails.setBatchStatisticsList(java.util.ArrayList<BatchStatistics> batchStatisticsList) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/CAVVResponseType.html b/docs/javadocs/net/authorize/data/reporting/class-use/CAVVResponseType.html deleted file mode 100644 index 722a843..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/CAVVResponseType.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.CAVVResponseType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.CAVVResponseType

-
- - - - - - - - - - - - - -
-Packages that use CAVVResponseType
net.authorize.aim  
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of CAVVResponseType in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return CAVVResponseType
- CAVVResponseTypeResult.getCavvResultCode() - -
-          Return the CAVV result code.
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type CAVVResponseType
- voidResult.setCavvResultCode(CAVVResponseType cavvResultCode) - -
-          Set the CAVV result code.
-  -

- - - - - -
-Uses of CAVVResponseType in net.authorize.data.reporting
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.reporting that return CAVVResponseType
-static CAVVResponseTypeCAVVResponseType.findByValue(java.lang.String value) - -
-           
- CAVVResponseTypeTransactionDetails.getCAVVResponse() - -
-           
-static CAVVResponseTypeCAVVResponseType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static CAVVResponseType[]CAVVResponseType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type CAVVResponseType
- voidTransactionDetails.setCAVVResponse(CAVVResponseType cAVVResponse) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/CardCodeResponseType.html b/docs/javadocs/net/authorize/data/reporting/class-use/CardCodeResponseType.html deleted file mode 100644 index 244bd37..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/CardCodeResponseType.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.CardCodeResponseType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.CardCodeResponseType

-
- - - - - - - - - - - - - -
-Packages that use CardCodeResponseType
net.authorize.aim  
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of CardCodeResponseType in net.authorize.aim
-  -

- - - - - - - - - -
Methods in net.authorize.aim that return CardCodeResponseType
- CardCodeResponseTypeResult.getCardCodeResponse() - -
-          Return the card code response.
-  -

- - - - - - - - - -
Methods in net.authorize.aim with parameters of type CardCodeResponseType
- voidResult.setCardCodeResponse(CardCodeResponseType cardCodeResponse) - -
-          Set the card code response.
-  -

- - - - - -
-Uses of CardCodeResponseType in net.authorize.data.reporting
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.reporting that return CardCodeResponseType
-static CardCodeResponseTypeCardCodeResponseType.findByValue(java.lang.String value) - -
-           
- CardCodeResponseTypeTransactionDetails.getCardCodeResponse() - -
-           
-static CardCodeResponseTypeCardCodeResponseType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static CardCodeResponseType[]CardCodeResponseType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type CardCodeResponseType
- voidTransactionDetails.setCardCodeResponse(CardCodeResponseType cardCodeResponse) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/FDSFilter.html b/docs/javadocs/net/authorize/data/reporting/class-use/FDSFilter.html deleted file mode 100644 index 4337617..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/FDSFilter.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.FDSFilter (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.FDSFilter

-
- - - - - - - - - -
-Packages that use FDSFilter
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of FDSFilter in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return FDSFilter
-static FDSFilterFDSFilter.createFDSFilter() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return types with arguments of type FDSFilter
- java.util.ArrayList<FDSFilter>TransactionDetails.getFDSFilterList() - -
-           
-  -

- - - - - - - - - -
Method parameters in net.authorize.data.reporting with type arguments of type FDSFilter
- voidTransactionDetails.setFDSFilterList(java.util.ArrayList<FDSFilter> fDSFilterList) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/FDSFilterActionType.html b/docs/javadocs/net/authorize/data/reporting/class-use/FDSFilterActionType.html deleted file mode 100644 index c8c1f0e..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/FDSFilterActionType.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.FDSFilterActionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.FDSFilterActionType

-
- - - - - - - - - -
-Packages that use FDSFilterActionType
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of FDSFilterActionType in net.authorize.data.reporting
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.reporting that return FDSFilterActionType
-static FDSFilterActionTypeFDSFilterActionType.findByValue(java.lang.String value) - -
-           
- FDSFilterActionTypeFDSFilter.getAction() - -
-           
- FDSFilterActionTypeTransactionDetails.getFDSFilterAction() - -
-           
-static FDSFilterActionTypeFDSFilterActionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static FDSFilterActionType[]FDSFilterActionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type FDSFilterActionType
- voidFDSFilter.setAction(FDSFilterActionType action) - -
-           
- voidTransactionDetails.setFDSFilterAction(FDSFilterActionType fDSFilterAction) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/ReportingDetails.html b/docs/javadocs/net/authorize/data/reporting/class-use/ReportingDetails.html deleted file mode 100644 index 5cf7f00..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/ReportingDetails.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.ReportingDetails (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.ReportingDetails

-
- - - - - - - - - - - - - -
-Packages that use ReportingDetails
net.authorize.data.reporting  
net.authorize.reporting  
-  -

- - - - - -
-Uses of ReportingDetails in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return ReportingDetails
-static ReportingDetailsReportingDetails.createReportingDetails() - -
-           
-  -

- - - - - -
-Uses of ReportingDetails in net.authorize.reporting
-  -

- - - - - - - - - -
Fields in net.authorize.reporting declared as ReportingDetails
-protected  ReportingDetailsResult.reportingDetails - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.reporting that return ReportingDetails
- ReportingDetailsResult.getReportingDetails() - -
-           
- ReportingDetailsTransaction.getReportingDetails() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.reporting with parameters of type ReportingDetails
- voidTransaction.setReportingDetails(ReportingDetails reportingDetails) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/ReportingTransactionType.html b/docs/javadocs/net/authorize/data/reporting/class-use/ReportingTransactionType.html deleted file mode 100644 index cb7dcaa..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/ReportingTransactionType.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.ReportingTransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.ReportingTransactionType

-
- - - - - - - - - -
-Packages that use ReportingTransactionType
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of ReportingTransactionType in net.authorize.data.reporting
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.reporting that return ReportingTransactionType
-static ReportingTransactionTypeReportingTransactionType.fromValue(java.lang.String v) - -
-           
- ReportingTransactionTypeTransactionDetails.getTransactionType() - -
-           
-static ReportingTransactionTypeReportingTransactionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ReportingTransactionType[]ReportingTransactionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type ReportingTransactionType
- voidTransactionDetails.setTransactionType(ReportingTransactionType transactionType) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/SettlementStateType.html b/docs/javadocs/net/authorize/data/reporting/class-use/SettlementStateType.html deleted file mode 100644 index 07366e0..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/SettlementStateType.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.SettlementStateType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.SettlementStateType

-
- - - - - - - - - -
-Packages that use SettlementStateType
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of SettlementStateType in net.authorize.data.reporting
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.reporting that return SettlementStateType
-static SettlementStateTypeSettlementStateType.fromValue(java.lang.String v) - -
-           
- SettlementStateTypeBatchDetails.getSettlementState() - -
-           
-static SettlementStateTypeSettlementStateType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static SettlementStateType[]SettlementStateType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type SettlementStateType
- voidBatchDetails.setSettlementState(SettlementStateType settlementState) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/TransactionDetails.html b/docs/javadocs/net/authorize/data/reporting/class-use/TransactionDetails.html deleted file mode 100644 index 91e80c4..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/TransactionDetails.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.TransactionDetails (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.TransactionDetails

-
- - - - - - - - - -
-Packages that use TransactionDetails
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of TransactionDetails in net.authorize.data.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return TransactionDetails
-static TransactionDetailsTransactionDetails.createTransactionDetails() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting that return types with arguments of type TransactionDetails
- java.util.ArrayList<TransactionDetails>ReportingDetails.getTransactionDetailList() - -
-           
-  -

- - - - - - - - - -
Method parameters in net.authorize.data.reporting with type arguments of type TransactionDetails
- voidReportingDetails.setTransactionDetailList(java.util.ArrayList<TransactionDetails> transactionDetailList) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/class-use/TransactionStatusType.html b/docs/javadocs/net/authorize/data/reporting/class-use/TransactionStatusType.html deleted file mode 100644 index 67d560f..0000000 --- a/docs/javadocs/net/authorize/data/reporting/class-use/TransactionStatusType.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.reporting.TransactionStatusType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.reporting.TransactionStatusType

-
- - - - - - - - - -
-Packages that use TransactionStatusType
net.authorize.data.reporting  
-  -

- - - - - -
-Uses of TransactionStatusType in net.authorize.data.reporting
-  -

- - - - - - - - - - - - - - - - - - - - - -
Methods in net.authorize.data.reporting that return TransactionStatusType
-static TransactionStatusTypeTransactionStatusType.fromValue(java.lang.String v) - -
-           
- TransactionStatusTypeTransactionDetails.getTransactionStatus() - -
-           
-static TransactionStatusTypeTransactionStatusType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionStatusType[]TransactionStatusType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.data.reporting with parameters of type TransactionStatusType
- voidTransactionDetails.setTransactionStatus(TransactionStatusType transactionStatus) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/package-frame.html b/docs/javadocs/net/authorize/data/reporting/package-frame.html deleted file mode 100644 index e192cd0..0000000 --- a/docs/javadocs/net/authorize/data/reporting/package-frame.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - -net.authorize.data.reporting (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data.reporting - - - - -
-Classes  - -
-BatchDetails -
-BatchStatistics -
-FDSFilter -
-ReportingDetails -
-TransactionDetails
- - - - - - -
-Enums  - -
-CardCodeResponseType -
-CAVVResponseType -
-FDSFilterActionType -
-ReportingTransactionType -
-SettlementStateType -
-TransactionStatusType
- - - - diff --git a/docs/javadocs/net/authorize/data/reporting/package-summary.html b/docs/javadocs/net/authorize/data/reporting/package-summary.html deleted file mode 100644 index 418e601..0000000 --- a/docs/javadocs/net/authorize/data/reporting/package-summary.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - -net.authorize.data.reporting (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data.reporting -

- - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
BatchDetailsBatch related reporting information.
BatchStatisticsBatch statistical data.
FDSFilterFraud Detection Suite filter enumeration.
ReportingDetailsReporting details.
TransactionDetailsReporting transaction details.
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Summary
CardCodeResponseTypeCard code type.
CAVVResponseTypeCardholder Authentication Verification type.
FDSFilterActionTypeThe action taken for a transaction that triggered one or more of the - Advanced Fraud Detection Suite filters.
ReportingTransactionTypeReportingTransactionType enumeration.
SettlementStateTypeSettlement state enumeration.
TransactionStatusTypeTransaction status enumeration.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/package-tree.html b/docs/javadocs/net/authorize/data/reporting/package-tree.html deleted file mode 100644 index 9e5feaa..0000000 --- a/docs/javadocs/net/authorize/data/reporting/package-tree.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - -net.authorize.data.reporting Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data.reporting -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.data.reporting.BatchDetails (implements java.io.Serializable) -
    • net.authorize.data.reporting.BatchStatistics (implements java.io.Serializable) -
    • net.authorize.data.reporting.FDSFilter (implements java.io.Serializable) -
    • net.authorize.data.reporting.ReportingDetails (implements java.io.Serializable) -
    • net.authorize.data.reporting.TransactionDetails (implements java.io.Serializable) -
    -
-

-Enum Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/reporting/package-use.html b/docs/javadocs/net/authorize/data/reporting/package-use.html deleted file mode 100644 index 4d6a1b4..0000000 --- a/docs/javadocs/net/authorize/data/reporting/package-use.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - -Uses of Package net.authorize.data.reporting (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data.reporting

-
- - - - - - - - - - - - - - - - - -
-Packages that use net.authorize.data.reporting
net.authorize.aim  
net.authorize.data.reporting  
net.authorize.reporting  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.reporting used by net.authorize.aim
CardCodeResponseType - -
-          Card code type.
CAVVResponseType - -
-          Cardholder Authentication Verification type.
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize.data.reporting used by net.authorize.data.reporting
BatchDetails - -
-          Batch related reporting information.
BatchStatistics - -
-          Batch statistical data.
CardCodeResponseType - -
-          Card code type.
CAVVResponseType - -
-          Cardholder Authentication Verification type.
FDSFilter - -
-          Fraud Detection Suite filter enumeration.
FDSFilterActionType - -
-          The action taken for a transaction that triggered one or more of the - Advanced Fraud Detection Suite filters.
ReportingDetails - -
-          Reporting details.
ReportingTransactionType - -
-          ReportingTransactionType enumeration.
SettlementStateType - -
-          Settlement state enumeration.
TransactionDetails - -
-          Reporting transaction details.
TransactionStatusType - -
-          Transaction status enumeration.
-  -

- - - - - - - - -
-Classes in net.authorize.data.reporting used by net.authorize.reporting
ReportingDetails - -
-          Reporting details.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/sim/HostedPaymentFormSettings.html b/docs/javadocs/net/authorize/data/sim/HostedPaymentFormSettings.html deleted file mode 100644 index 3a8dc7c..0000000 --- a/docs/javadocs/net/authorize/data/sim/HostedPaymentFormSettings.html +++ /dev/null @@ -1,548 +0,0 @@ - - - - - - -HostedPaymentFormSettings (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.sim -
-Class HostedPaymentFormSettings

-
-java.lang.Object
-  extended by net.authorize.data.sim.HostedPaymentFormSettings
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class HostedPaymentFormSettings
extends java.lang.Object
implements java.io.Serializable
- - -

-When using the hosted payment form, settings can be configured to match the look of - the merchantÕs website. The purpose of this class is just that - to - store the hosted payment form settings. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static HostedPaymentFormSettingscreateHostedPaymentFormSettings() - -
-           
- java.lang.StringgetBackgroundColor() - -
-           
- java.lang.StringgetBackgroundUrl() - -
-           
- java.lang.StringgetFooter() - -
-           
- java.lang.StringgetHeader() - -
-           
- java.lang.StringgetLinkColor() - -
-           
- java.lang.StringgetMerchantLogoUrl() - -
-           
- java.lang.StringgetTextColor() - -
-           
- voidsetBackgroundColor(java.lang.String backgroundColor) - -
-           
- voidsetBackgroundUrl(java.lang.String backgroundUrl) - -
-           
- voidsetFooter(java.lang.String footer) - -
-           
- voidsetHeader(java.lang.String header) - -
-           
- voidsetLinkColor(java.lang.String linkColor) - -
-           
- voidsetMerchantLogoUrl(java.lang.String merchantLogoUrl) - -
-           
- voidsetTextColor(java.lang.String textColor) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createHostedPaymentFormSettings

-
-public static HostedPaymentFormSettings createHostedPaymentFormSettings()
-
-
-
-
-
-
-
-
-
- -

-getHeader

-
-public java.lang.String getHeader()
-
-
-
-
-
- -
Returns:
the header
-
-
-
- -

-setHeader

-
-public void setHeader(java.lang.String header)
-
-
-
-
-
-
Parameters:
header - the header to set
-
-
-
- -

-getFooter

-
-public java.lang.String getFooter()
-
-
-
-
-
- -
Returns:
the footer
-
-
-
- -

-setFooter

-
-public void setFooter(java.lang.String footer)
-
-
-
-
-
-
Parameters:
footer - the footer to set
-
-
-
- -

-getBackgroundColor

-
-public java.lang.String getBackgroundColor()
-
-
-
-
-
- -
Returns:
the backgroundColor
-
-
-
- -

-setBackgroundColor

-
-public void setBackgroundColor(java.lang.String backgroundColor)
-
-
-
-
-
-
Parameters:
backgroundColor - the backgroundColor to set
-
-
-
- -

-getLinkColor

-
-public java.lang.String getLinkColor()
-
-
-
-
-
- -
Returns:
the linkColor
-
-
-
- -

-setLinkColor

-
-public void setLinkColor(java.lang.String linkColor)
-
-
-
-
-
-
Parameters:
linkColor - the linkColor to set
-
-
-
- -

-getTextColor

-
-public java.lang.String getTextColor()
-
-
-
-
-
- -
Returns:
the textColor
-
-
-
- -

-setTextColor

-
-public void setTextColor(java.lang.String textColor)
-
-
-
-
-
-
Parameters:
textColor - the textColor to set
-
-
-
- -

-getMerchantLogoUrl

-
-public java.lang.String getMerchantLogoUrl()
-
-
-
-
-
- -
Returns:
the merchantLogoUrl
-
-
-
- -

-setMerchantLogoUrl

-
-public void setMerchantLogoUrl(java.lang.String merchantLogoUrl)
-
-
-
-
-
-
Parameters:
merchantLogoUrl - the merchantLogoUrl to set
-
-
-
- -

-getBackgroundUrl

-
-public java.lang.String getBackgroundUrl()
-
-
-
-
-
- -
Returns:
the backgroundUrl
-
-
-
- -

-setBackgroundUrl

-
-public void setBackgroundUrl(java.lang.String backgroundUrl)
-
-
-
-
-
-
Parameters:
backgroundUrl - the backgroundUrl to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/sim/HostedReceiptPageSettings.html b/docs/javadocs/net/authorize/data/sim/HostedReceiptPageSettings.html deleted file mode 100644 index c2beb2b..0000000 --- a/docs/javadocs/net/authorize/data/sim/HostedReceiptPageSettings.html +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - -HostedReceiptPageSettings (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.data.sim -
-Class HostedReceiptPageSettings

-
-java.lang.Object
-  extended by net.authorize.data.sim.HostedReceiptPageSettings
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class HostedReceiptPageSettings
extends java.lang.Object
implements java.io.Serializable
- - -

-The hosted receipt page provides the customer with the status of their transaction and can include a - link back to the merchantÕs website. It can be customized to reflect the look and feel of the - merchantÕs website. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static HostedReceiptPageSettingscreateHostedReceiptPageSettings() - -
-          Creates an instance of a HostedReceiptPageSettings class.
- LinkMethodgetLinkMethod() - -
-           
- java.lang.StringgetLinkText() - -
-           
- java.lang.StringgetLinkUrl() - -
-           
- voidsetLinkMethod(LinkMethod linkMethod) - -
-           
- voidsetLinkText(java.lang.String linkText) - -
-           
- voidsetLinkUrl(java.lang.String linkUrl) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createHostedReceiptPageSettings

-
-public static HostedReceiptPageSettings createHostedReceiptPageSettings()
-
-
Creates an instance of a HostedReceiptPageSettings class. -

-

-
-
-
- -
Returns:
a HostedReceiptPageSettings object.
-
-
-
- -

-getLinkMethod

-
-public LinkMethod getLinkMethod()
-
-
-
-
-
- -
Returns:
the linkMethod
-
-
-
- -

-setLinkMethod

-
-public void setLinkMethod(LinkMethod linkMethod)
-
-
-
-
-
-
Parameters:
linkMethod - the linkMethod to set
-
-
-
- -

-getLinkText

-
-public java.lang.String getLinkText()
-
-
-
-
-
- -
Returns:
the linkText
-
-
-
- -

-setLinkText

-
-public void setLinkText(java.lang.String linkText)
-
-
-
-
-
-
Parameters:
linkText - the linkText to set
-
-
-
- -

-getLinkUrl

-
-public java.lang.String getLinkUrl()
-
-
-
-
-
- -
Returns:
the linkUrl
-
-
-
- -

-setLinkUrl

-
-public void setLinkUrl(java.lang.String linkUrl)
-
-
-
-
-
-
Parameters:
linkUrl - the linkUrl to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/sim/class-use/HostedPaymentFormSettings.html b/docs/javadocs/net/authorize/data/sim/class-use/HostedPaymentFormSettings.html deleted file mode 100644 index c91b617..0000000 --- a/docs/javadocs/net/authorize/data/sim/class-use/HostedPaymentFormSettings.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.sim.HostedPaymentFormSettings (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.sim.HostedPaymentFormSettings

-
- - - - - - - - - - - - - -
-Packages that use HostedPaymentFormSettings
net.authorize.data.sim  
net.authorize.sim  
-  -

- - - - - -
-Uses of HostedPaymentFormSettings in net.authorize.data.sim
-  -

- - - - - - - - - -
Methods in net.authorize.data.sim that return HostedPaymentFormSettings
-static HostedPaymentFormSettingsHostedPaymentFormSettings.createHostedPaymentFormSettings() - -
-           
-  -

- - - - - -
-Uses of HostedPaymentFormSettings in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return HostedPaymentFormSettings
- HostedPaymentFormSettingsTransaction.getHostedPaymentFormSettings() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type HostedPaymentFormSettings
- voidTransaction.setHostedPaymentFormSettings(HostedPaymentFormSettings hostedPaymentFormSettings) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/sim/class-use/HostedReceiptPageSettings.html b/docs/javadocs/net/authorize/data/sim/class-use/HostedReceiptPageSettings.html deleted file mode 100644 index 7510d32..0000000 --- a/docs/javadocs/net/authorize/data/sim/class-use/HostedReceiptPageSettings.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - -Uses of Class net.authorize.data.sim.HostedReceiptPageSettings (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.data.sim.HostedReceiptPageSettings

-
- - - - - - - - - - - - - -
-Packages that use HostedReceiptPageSettings
net.authorize.data.sim  
net.authorize.sim  
-  -

- - - - - -
-Uses of HostedReceiptPageSettings in net.authorize.data.sim
-  -

- - - - - - - - - -
Methods in net.authorize.data.sim that return HostedReceiptPageSettings
-static HostedReceiptPageSettingsHostedReceiptPageSettings.createHostedReceiptPageSettings() - -
-          Creates an instance of a HostedReceiptPageSettings class.
-  -

- - - - - -
-Uses of HostedReceiptPageSettings in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return HostedReceiptPageSettings
- HostedReceiptPageSettingsTransaction.getHostedReceiptPageSettings() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type HostedReceiptPageSettings
- voidTransaction.setHostedReceiptPageSettings(HostedReceiptPageSettings hostedReceiptPageSettings) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/sim/package-frame.html b/docs/javadocs/net/authorize/data/sim/package-frame.html deleted file mode 100644 index 70d9d09..0000000 --- a/docs/javadocs/net/authorize/data/sim/package-frame.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - -net.authorize.data.sim (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.data.sim - - - - -
-Classes  - -
-HostedPaymentFormSettings -
-HostedReceiptPageSettings
- - - - diff --git a/docs/javadocs/net/authorize/data/sim/package-summary.html b/docs/javadocs/net/authorize/data/sim/package-summary.html deleted file mode 100644 index e0a6d37..0000000 --- a/docs/javadocs/net/authorize/data/sim/package-summary.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - -net.authorize.data.sim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.data.sim -

- - - - - - - - - - - - - -
-Class Summary
HostedPaymentFormSettingsWhen using the hosted payment form, settings can be configured to match the look of - the merchantÕs website.
HostedReceiptPageSettingsThe hosted receipt page provides the customer with the status of their transaction and can include a - link back to the merchantÕs website.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/sim/package-tree.html b/docs/javadocs/net/authorize/data/sim/package-tree.html deleted file mode 100644 index bab9365..0000000 --- a/docs/javadocs/net/authorize/data/sim/package-tree.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -net.authorize.data.sim Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.data.sim -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/data/sim/package-use.html b/docs/javadocs/net/authorize/data/sim/package-use.html deleted file mode 100644 index 09de6c2..0000000 --- a/docs/javadocs/net/authorize/data/sim/package-use.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - -Uses of Package net.authorize.data.sim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.data.sim

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.data.sim
net.authorize.data.sim  
net.authorize.sim  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.sim used by net.authorize.data.sim
HostedPaymentFormSettings - -
-          When using the hosted payment form, settings can be configured to match the look of - the merchantÕs website.
HostedReceiptPageSettings - -
-          The hosted receipt page provides the customer with the status of their transaction and can include a - link back to the merchantÕs website.
-  -

- - - - - - - - - - - -
-Classes in net.authorize.data.sim used by net.authorize.sim
HostedPaymentFormSettings - -
-          When using the hosted payment form, settings can be configured to match the look of - the merchantÕs website.
HostedReceiptPageSettings - -
-          The hosted receipt page provides the customer with the status of their transaction and can include a - link back to the merchantÕs website.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/Result.html b/docs/javadocs/net/authorize/mobile/Result.html deleted file mode 100644 index 4ee7ff4..0000000 --- a/docs/javadocs/net/authorize/mobile/Result.html +++ /dev/null @@ -1,379 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.mobile -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-      extended by net.authorize.xml.Result
-          extended by net.authorize.mobile.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Result
extends Result
implements java.io.Serializable
- - -

-Templated wrapper container for passing back the result from the request gateway. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.xml.Result
ERROR, messages, OK, refId, requestTransactionType, responseCode, resultCode, sessionToken, xmlResponse, xmlResponseDoc
- - - - - - - -
Fields inherited from class net.authorize.Result
requestTransaction
-  - - - - - - - - - - - - - - - -
-Constructor Summary
-protected Result() - -
-           
-protected Result(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ResultcreateResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
- MerchantContactgetMerchantContact() - -
-           
- java.util.ArrayList<PermissionType>getUserPermissions() - -
-           
- - - - - - - -
Methods inherited from class net.authorize.xml.Result
clearRequest, clearXmlResponse, getElementText, getElementText, getMessages, getRefId, getRequestTransactionType, getResultCode, getSessionToken, getXmlResponse, getXmlResponseDoc, importRefId, importResponseMessages, importSessionToken, isApproved, isDeclined, isError, isOk, isResponseAuthenticationError, isResponseError, isResponseErrorRetryable, isResponseOk, isReview, printMessages
- - - - - - - -
Methods inherited from class net.authorize.Result
getRequestTransaction
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-Result

-
-protected Result()
-
-
-
- -

-Result

-
-protected Result(ITransaction requestTransaction,
-                 java.lang.String response)
-
-
- - - - - - - - -
-Method Detail
- -

-createResult

-
-public static Result createResult(ITransaction requestTransaction,
-                                  java.lang.String response)
-
-
-
-
-
-
-
-
-
- -

-getMerchantContact

-
-public MerchantContact getMerchantContact()
-
-
-
-
-
- -
Returns:
the merchantContact
-
-
-
- -

-getUserPermissions

-
-public java.util.ArrayList<PermissionType> getUserPermissions()
-
-
-
-
-
- -
Returns:
the userPermissions
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/Transaction.html b/docs/javadocs/net/authorize/mobile/Transaction.html deleted file mode 100644 index 20e739f..0000000 --- a/docs/javadocs/net/authorize/mobile/Transaction.html +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - -Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.mobile -
-Class Transaction

-
-java.lang.Object
-  extended by net.authorize.xml.XMLTransaction
-      extended by net.authorize.mobile.Transaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
-
public class Transaction
extends XMLTransaction
- - -

-Transaction object for Mobile. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.xml.XMLTransaction
bankAccount, billToAddress, creditCard, currentRequest, customer, emailReceipt, md5Value, merchant, order, refId, shippingAddress, shippingCharges, XML_NAMESPACE, XML_XSD, XML_XSI
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
- MobileDevicegetMobileDevice() - -
-           
- java.lang.StringgetRefId() - -
-           
- TransactionTypegetTransactionType() - -
-           
- voidsetMobileDevice(MobileDevice mobileDevice) - -
-           
- voidsetRefId(java.lang.String refId) - -
-           
- java.lang.StringtoAuthNetPOSTString() - -
-          Convert request to XML.
- - - - - - - -
Methods inherited from class net.authorize.xml.XMLTransaction
addAuthentication, addAuthentication, addRefId, getBankAccount, getCreditCard, getCurrentRequest, getCustomer, getEmailReceipt, getMD5Value, getMerchant, getOrder, getShippingAddress, getShippingCharges, setBankAccount, setCreditCard, setCustomer, setEmailReceipt, setOrder, setShippingAddress, setShippingCharges
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType)
-
-
Creates a transaction. -

-

-
Parameters:
merchant -
transactionType - -
Returns:
Transaction
-
-
-
- -

-getTransactionType

-
-public TransactionType getTransactionType()
-
-
- -
Returns:
the transactionType
-
-
-
- -

-getRefId

-
-public java.lang.String getRefId()
-
-
-
Overrides:
getRefId in class XMLTransaction
-
-
- -
Returns:
the refId
-
-
-
- -

-setRefId

-
-public void setRefId(java.lang.String refId)
-
-
-
Overrides:
setRefId in class XMLTransaction
-
-
-
Parameters:
refId - the refId to set
-
-
-
- -

-getMobileDevice

-
-public MobileDevice getMobileDevice()
-
-
- -
Returns:
the mobileDevice
-
-
-
- -

-setMobileDevice

-
-public void setMobileDevice(MobileDevice mobileDevice)
-
-
-
Parameters:
mobileDevice - the mobileDevice to set
-
-
-
- -

-toAuthNetPOSTString

-
-public java.lang.String toAuthNetPOSTString()
-
-
Convert request to XML. -

-

- -
Returns:
String to be POSTed to the AuthNet gateway.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/TransactionType.html b/docs/javadocs/net/authorize/mobile/TransactionType.html deleted file mode 100644 index 158fa82..0000000 --- a/docs/javadocs/net/authorize/mobile/TransactionType.html +++ /dev/null @@ -1,362 +0,0 @@ - - - - - - -TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.mobile -
-Enum TransactionType

-
-java.lang.Object
-  extended by java.lang.Enum<TransactionType>
-      extended by net.authorize.mobile.TransactionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransactionType>
-
-
-
-
public enum TransactionType
extends java.lang.Enum<TransactionType>
- - -

-Transaction types specific for mobile. -

- -

-


- -

- - - - - - - - - - - - - - - - -
-Enum Constant Summary
LOGOUT - -
-           
MOBILE_DEVICE_LOGIN - -
-           
MOBILE_DEVICE_REGISTRATION - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetValue() - -
-           
-static TransactionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-MOBILE_DEVICE_REGISTRATION

-
-public static final TransactionType MOBILE_DEVICE_REGISTRATION
-
-
-
-
-
- -

-MOBILE_DEVICE_LOGIN

-
-public static final TransactionType MOBILE_DEVICE_LOGIN
-
-
-
-
-
- -

-LOGOUT

-
-public static final TransactionType LOGOUT
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static TransactionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (TransactionType c : TransactionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static TransactionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/class-use/Result.html b/docs/javadocs/net/authorize/mobile/class-use/Result.html deleted file mode 100644 index 803883b..0000000 --- a/docs/javadocs/net/authorize/mobile/class-use/Result.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.mobile.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.mobile.Result

-
- - - - - - - - - -
-Packages that use Result
net.authorize.mobile  
-  -

- - - - - -
-Uses of Result in net.authorize.mobile
-  -

- - - - - - - - - -
Methods in net.authorize.mobile that return Result
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/class-use/Transaction.html b/docs/javadocs/net/authorize/mobile/class-use/Transaction.html deleted file mode 100644 index f0b103d..0000000 --- a/docs/javadocs/net/authorize/mobile/class-use/Transaction.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - -Uses of Class net.authorize.mobile.Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.mobile.Transaction

-
- - - - - - - - - - - - - -
-Packages that use Transaction
net.authorize  
net.authorize.mobile  
-  -

- - - - - -
-Uses of Transaction in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return Transaction
- TransactionMerchant.createMobileTransaction(TransactionType transactionType) - -
-          Creates a new Mobile Transaction.
-  -

- - - - - -
-Uses of Transaction in net.authorize.mobile
-  -

- - - - - - - - - -
Methods in net.authorize.mobile that return Transaction
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/class-use/TransactionType.html b/docs/javadocs/net/authorize/mobile/class-use/TransactionType.html deleted file mode 100644 index b3edc99..0000000 --- a/docs/javadocs/net/authorize/mobile/class-use/TransactionType.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - -Uses of Class net.authorize.mobile.TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.mobile.TransactionType

-
- - - - - - - - - - - - - -
-Packages that use TransactionType
net.authorize  
net.authorize.mobile  
-  -

- - - - - -
-Uses of TransactionType in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type TransactionType
- TransactionMerchant.createMobileTransaction(TransactionType transactionType) - -
-          Creates a new Mobile Transaction.
-  -

- - - - - -
-Uses of TransactionType in net.authorize.mobile
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.mobile that return TransactionType
- TransactionTypeTransaction.getTransactionType() - -
-           
-static TransactionTypeTransactionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]TransactionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.mobile with parameters of type TransactionType
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/package-frame.html b/docs/javadocs/net/authorize/mobile/package-frame.html deleted file mode 100644 index 5f48dda..0000000 --- a/docs/javadocs/net/authorize/mobile/package-frame.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - -net.authorize.mobile (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.mobile - - - - -
-Classes  - -
-Result -
-Transaction
- - - - - - -
-Enums  - -
-TransactionType
- - - - diff --git a/docs/javadocs/net/authorize/mobile/package-summary.html b/docs/javadocs/net/authorize/mobile/package-summary.html deleted file mode 100644 index e5cc51a..0000000 --- a/docs/javadocs/net/authorize/mobile/package-summary.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -net.authorize.mobile (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.mobile -

- - - - - - - - - - - - - -
-Class Summary
ResultTemplated wrapper container for passing back the result from the request gateway.
TransactionTransaction object for Mobile.
-  - -

- - - - - - - - - -
-Enum Summary
TransactionTypeTransaction types specific for mobile.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/package-tree.html b/docs/javadocs/net/authorize/mobile/package-tree.html deleted file mode 100644 index 19866e0..0000000 --- a/docs/javadocs/net/authorize/mobile/package-tree.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -net.authorize.mobile Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.mobile -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.Result (implements java.io.Serializable) -
        -
      • net.authorize.xml.Result (implements java.io.Serializable) -
          -
        • net.authorize.mobile.Result (implements java.io.Serializable) -
        -
      -
    • net.authorize.xml.XMLTransaction (implements net.authorize.ITransaction, java.io.Serializable) - -
    -
-

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/mobile/package-use.html b/docs/javadocs/net/authorize/mobile/package-use.html deleted file mode 100644 index 452c336..0000000 --- a/docs/javadocs/net/authorize/mobile/package-use.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - -Uses of Package net.authorize.mobile (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.mobile

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.mobile
net.authorize  
net.authorize.mobile  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.mobile used by net.authorize
Transaction - -
-          Transaction object for Mobile.
TransactionType - -
-          Transaction types specific for mobile.
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.mobile used by net.authorize.mobile
Result - -
-          Templated wrapper container for passing back the result from the request gateway.
Transaction - -
-          Transaction object for Mobile.
TransactionType - -
-          Transaction types specific for mobile.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/Result.html b/docs/javadocs/net/authorize/notification/Result.html deleted file mode 100644 index ef26a14..0000000 --- a/docs/javadocs/net/authorize/notification/Result.html +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.notification -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-      extended by net.authorize.xml.Result
-          extended by net.authorize.notification.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Result
extends Result
implements java.io.Serializable
- - -

-Wrapper container for passing back the result from the request gateway. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.xml.Result
ERROR, messages, OK, refId, requestTransactionType, responseCode, resultCode, sessionToken, xmlResponse, xmlResponseDoc
- - - - - - - -
Fields inherited from class net.authorize.Result
requestTransaction
-  - - - - - - - - - - - -
-Constructor Summary
-protected Result(ITransaction requestTransaction, - java.lang.String response) - -
-          Result constructor.
-  - - - - - - - - - - - -
-Method Summary
-static ResultcreateResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
- - - - - - - -
Methods inherited from class net.authorize.xml.Result
clearRequest, clearXmlResponse, getElementText, getElementText, getMessages, getRefId, getRequestTransactionType, getResultCode, getSessionToken, getXmlResponse, getXmlResponseDoc, importRefId, importResponseMessages, importSessionToken, isApproved, isDeclined, isError, isOk, isResponseAuthenticationError, isResponseError, isResponseErrorRetryable, isResponseOk, isReview, printMessages
- - - - - - - -
Methods inherited from class net.authorize.Result
getRequestTransaction
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-Result

-
-protected Result(ITransaction requestTransaction,
-                 java.lang.String response)
-
-
Result constructor. -

-

-
Parameters:
requestTransaction -
response -
-
- - - - - - - - -
-Method Detail
- -

-createResult

-
-public static Result createResult(ITransaction requestTransaction,
-                                  java.lang.String response)
-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/Transaction.html b/docs/javadocs/net/authorize/notification/Transaction.html deleted file mode 100644 index e9d6220..0000000 --- a/docs/javadocs/net/authorize/notification/Transaction.html +++ /dev/null @@ -1,483 +0,0 @@ - - - - - - -Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.notification -
-Class Transaction

-
-java.lang.Object
-  extended by net.authorize.xml.XMLTransaction
-      extended by net.authorize.notification.Transaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
-
public class Transaction
extends XMLTransaction
- - -

-Transaction object for ARB. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.xml.XMLTransaction
bankAccount, billToAddress, creditCard, currentRequest, customer, md5Value, merchant, order, refId, shippingAddress, shippingCharges, XML_NAMESPACE, XML_XSD, XML_XSI
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidaddCustomerEmail(BasicXmlDocument document) - -
-          Add the customerEmail to the request.
-protected  voidaddEmailSettings(BasicXmlDocument document) - -
-          Add emailSettings to the request.
-protected  voidaddTransId(BasicXmlDocument document) - -
-          Add the transId to the request.
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Create a transaction.
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType, - java.lang.String transId, - java.lang.String customerEmail, - EmailReceipt emailReceiptSettings) - -
-          Create a transaction.
-protected  java.lang.StringgetCustomerEmailAddress() - -
-           
- TransactionTypegetTransactionType() - -
-           
-protected  java.lang.StringgetTransId() - -
-           
- voidsetCustomerEmailAddress(java.lang.String customerEmailAddress) - -
-           
- voidsetTransId(java.lang.String transId) - -
-           
- java.lang.StringtoAuthNetPOSTString() - -
-          Convert request to XML.
- - - - - - - -
Methods inherited from class net.authorize.xml.XMLTransaction
addAuthentication, addAuthentication, addRefId, getBankAccount, getCreditCard, getCurrentRequest, getCustomer, getEmailReceipt, getMD5Value, getMerchant, getOrder, getRefId, getShippingAddress, getShippingCharges, setBankAccount, setCreditCard, setCustomer, setEmailReceipt, setOrder, setRefId, setShippingAddress, setShippingCharges
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType,
-                                            java.lang.String transId,
-                                            java.lang.String customerEmail,
-                                            EmailReceipt emailReceiptSettings)
-
-
Create a transaction. -

-

-
Parameters:
merchant -
transactionType -
transId -
customerEmail -
emailReceiptSettings - -
Returns:
Transaction
-
-
-
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType)
-
-
Create a transaction. -

-

-
Parameters:
merchant -
transactionType - -
Returns:
Transaction
-
-
-
- -

-getTransactionType

-
-public TransactionType getTransactionType()
-
-
- -
Returns:
the transactionType
-
-
-
- -

-addTransId

-
-protected void addTransId(BasicXmlDocument document)
-
-
Add the transId to the request. -

-

-
Parameters:
document -
-
-
-
- -

-addCustomerEmail

-
-protected void addCustomerEmail(BasicXmlDocument document)
-
-
Add the customerEmail to the request. -

-

-
Parameters:
document -
-
-
-
- -

-addEmailSettings

-
-protected void addEmailSettings(BasicXmlDocument document)
-
-
Add emailSettings to the request. -

-

-
Parameters:
document -
-
-
-
- -

-getCustomerEmailAddress

-
-protected java.lang.String getCustomerEmailAddress()
-
-
- -
Returns:
the customerEmailAddress
-
-
-
- -

-setCustomerEmailAddress

-
-public void setCustomerEmailAddress(java.lang.String customerEmailAddress)
-
-
-
Parameters:
customerEmailAddress - the emailAddress to set
-
-
-
- -

-getTransId

-
-protected java.lang.String getTransId()
-
-
- -
Returns:
the transId
-
-
-
- -

-setTransId

-
-public void setTransId(java.lang.String transId)
-
-
-
Parameters:
transId - the transId to set
-
-
-
- -

-toAuthNetPOSTString

-
-public java.lang.String toAuthNetPOSTString()
-
-
Convert request to XML. -

-

- -
Returns:
String to be POSTed to the AuthNet gateway.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/TransactionType.html b/docs/javadocs/net/authorize/notification/TransactionType.html deleted file mode 100644 index cfe1315..0000000 --- a/docs/javadocs/net/authorize/notification/TransactionType.html +++ /dev/null @@ -1,326 +0,0 @@ - - - - - - -TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.notification -
-Enum TransactionType

-
-java.lang.Object
-  extended by java.lang.Enum<TransactionType>
-      extended by net.authorize.notification.TransactionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransactionType>
-
-
-
-
public enum TransactionType
extends java.lang.Enum<TransactionType>
- - -

-


- -

- - - - - - - - - - -
-Enum Constant Summary
CUSTOMER_TRANSACTION_RECEIPT_EMAIL - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetValue() - -
-           
-static TransactionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-CUSTOMER_TRANSACTION_RECEIPT_EMAIL

-
-public static final TransactionType CUSTOMER_TRANSACTION_RECEIPT_EMAIL
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static TransactionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (TransactionType c : TransactionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static TransactionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/class-use/Result.html b/docs/javadocs/net/authorize/notification/class-use/Result.html deleted file mode 100644 index c4a93ed..0000000 --- a/docs/javadocs/net/authorize/notification/class-use/Result.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.notification.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.notification.Result

-
- - - - - - - - - -
-Packages that use Result
net.authorize.notification  
-  -

- - - - - -
-Uses of Result in net.authorize.notification
-  -

- - - - - - - - - -
Methods in net.authorize.notification that return Result
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/class-use/Transaction.html b/docs/javadocs/net/authorize/notification/class-use/Transaction.html deleted file mode 100644 index a3fd446..0000000 --- a/docs/javadocs/net/authorize/notification/class-use/Transaction.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - -Uses of Class net.authorize.notification.Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.notification.Transaction

-
- - - - - - - - - - - - - -
-Packages that use Transaction
net.authorize  
net.authorize.notification  
-  -

- - - - - -
-Uses of Transaction in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return Transaction
- TransactionMerchant.createNotificationTransaction(TransactionType transactionType) - -
-          Creates a new notification Transaction.
-  -

- - - - - -
-Uses of Transaction in net.authorize.notification
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.notification that return Transaction
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Create a transaction.
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.lang.String transId, - java.lang.String customerEmail, - EmailReceipt emailReceiptSettings) - -
-          Create a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/class-use/TransactionType.html b/docs/javadocs/net/authorize/notification/class-use/TransactionType.html deleted file mode 100644 index 504e404..0000000 --- a/docs/javadocs/net/authorize/notification/class-use/TransactionType.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - -Uses of Class net.authorize.notification.TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.notification.TransactionType

-
- - - - - - - - - - - - - -
-Packages that use TransactionType
net.authorize  
net.authorize.notification  
-  -

- - - - - -
-Uses of TransactionType in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type TransactionType
- TransactionMerchant.createNotificationTransaction(TransactionType transactionType) - -
-          Creates a new notification Transaction.
-  -

- - - - - -
-Uses of TransactionType in net.authorize.notification
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.notification that return TransactionType
- TransactionTypeTransaction.getTransactionType() - -
-           
-static TransactionTypeTransactionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]TransactionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.notification with parameters of type TransactionType
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Create a transaction.
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.lang.String transId, - java.lang.String customerEmail, - EmailReceipt emailReceiptSettings) - -
-          Create a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/package-frame.html b/docs/javadocs/net/authorize/notification/package-frame.html deleted file mode 100644 index e3c61d5..0000000 --- a/docs/javadocs/net/authorize/notification/package-frame.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - -net.authorize.notification (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.notification - - - - -
-Classes  - -
-Result -
-Transaction
- - - - - - -
-Enums  - -
-TransactionType
- - - - diff --git a/docs/javadocs/net/authorize/notification/package-summary.html b/docs/javadocs/net/authorize/notification/package-summary.html deleted file mode 100644 index 5d461dc..0000000 --- a/docs/javadocs/net/authorize/notification/package-summary.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -net.authorize.notification (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.notification -

- - - - - - - - - - - - - -
-Class Summary
ResultWrapper container for passing back the result from the request gateway.
TransactionTransaction object for ARB.
-  - -

- - - - - - - - - -
-Enum Summary
TransactionType 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/package-tree.html b/docs/javadocs/net/authorize/notification/package-tree.html deleted file mode 100644 index 4953ac0..0000000 --- a/docs/javadocs/net/authorize/notification/package-tree.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - -net.authorize.notification Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.notification -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.Result (implements java.io.Serializable) -
        -
      • net.authorize.xml.Result (implements java.io.Serializable) -
          -
        • net.authorize.notification.Result (implements java.io.Serializable) -
        -
      -
    • net.authorize.xml.XMLTransaction (implements net.authorize.ITransaction, java.io.Serializable) - -
    -
-

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/notification/package-use.html b/docs/javadocs/net/authorize/notification/package-use.html deleted file mode 100644 index d10d559..0000000 --- a/docs/javadocs/net/authorize/notification/package-use.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - -Uses of Package net.authorize.notification (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.notification

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.notification
net.authorize  
net.authorize.notification  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.notification used by net.authorize
Transaction - -
-          Transaction object for ARB.
TransactionType - -
-           
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.notification used by net.authorize.notification
Result - -
-          Wrapper container for passing back the result from the request gateway.
Transaction - -
-          Transaction object for ARB.
TransactionType - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/package-frame.html b/docs/javadocs/net/authorize/package-frame.html deleted file mode 100644 index e27d409..0000000 --- a/docs/javadocs/net/authorize/package-frame.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - -net.authorize (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize - - - - -
-Interfaces  - -
-ITransaction
- - - - - - -
-Classes  - -
-Merchant -
-NVPTransaction -
-Result
- - - - - - -
-Enums  - -
-AuthNetField -
-Environment -
-ResponseCode -
-ResponseField -
-ResponseReasonCode -
-TransactionType
- - - - diff --git a/docs/javadocs/net/authorize/package-summary.html b/docs/javadocs/net/authorize/package-summary.html deleted file mode 100644 index 5d27661..0000000 --- a/docs/javadocs/net/authorize/package-summary.html +++ /dev/null @@ -1,215 +0,0 @@ - - - - - - -net.authorize (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize -

- - - - - - - - - -
-Interface Summary
ITransactionInterface for Transactions.
-  - -

- - - - - - - - - - - - - - - - - -
-Class Summary
MerchantContainer to hold authentication credentials.
NVPTransaction 
Result 
-  - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Summary
AuthNetFieldEnumeration to handle all the x_ field names and xml element names
EnvironmentDetermines which environment to post transactions against.
ResponseCodeResponse code indicates the overall status of the transaction - with possible values of approved, declined, error, or held for review.
ResponseFieldResponseField mappings used in processing and matching the returned data from - the payment gateway.
ResponseReasonCodeResponse Reason Code is a numeric representation of a more specific reason for the transaction status.
TransactionTypeThe credit card transaction types supported by the payment gateway.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/package-tree.html b/docs/javadocs/net/authorize/package-tree.html deleted file mode 100644 index 7a10e25..0000000 --- a/docs/javadocs/net/authorize/package-tree.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - -net.authorize Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.Merchant (implements java.io.Serializable) -
    • net.authorize.NVPTransaction (implements net.authorize.ITransaction, java.io.Serializable) -
    • net.authorize.Result (implements java.io.Serializable) -
    -
-

-Interface Hierarchy -

- -

-Enum Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/package-use.html b/docs/javadocs/net/authorize/package-use.html deleted file mode 100644 index 677c252..0000000 --- a/docs/javadocs/net/authorize/package-use.html +++ /dev/null @@ -1,431 +0,0 @@ - - - - - - -Uses of Package net.authorize (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use net.authorize
net.authorize  
net.authorize.aim  
net.authorize.data.aim  
net.authorize.data.cim  
net.authorize.data.reporting  
net.authorize.sim  
net.authorize.util  
net.authorize.xml  
-  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize used by net.authorize
AuthNetField - -
-          Enumeration to handle all the x_ field names and xml element names
Environment - -
-          Determines which environment to post transactions against.
ITransaction - -
-          Interface for Transactions.
Merchant - -
-          Container to hold authentication credentials.
ResponseCode - -
-          Response code indicates the overall status of the transaction - with possible values of approved, declined, error, or held for review.
ResponseField - -
-          ResponseField mappings used in processing and matching the returned data from - the payment gateway.
ResponseReasonCode - -
-          Response Reason Code is a numeric representation of a more specific reason for the transaction status.
Result - -
-           
TransactionType - -
-          The credit card transaction types supported by the payment gateway.
-  -

- - - - - - - - - - - - - - - - - - - - -
-Classes in net.authorize used by net.authorize.aim
ITransaction - -
-          Interface for Transactions.
Merchant - -
-          Container to hold authentication credentials.
ResponseCode - -
-          Response code indicates the overall status of the transaction - with possible values of approved, declined, error, or held for review.
ResponseReasonCode - -
-          Response Reason Code is a numeric representation of a more specific reason for the transaction status.
TransactionType - -
-          The credit card transaction types supported by the payment gateway.
-  -

- - - - - - - - -
-Classes in net.authorize used by net.authorize.data.aim
ResponseCode - -
-          Response code indicates the overall status of the transaction - with possible values of approved, declined, error, or held for review.
-  -

- - - - - - - - -
-Classes in net.authorize used by net.authorize.data.cim
ResponseField - -
-          ResponseField mappings used in processing and matching the returned data from - the payment gateway.
-  -

- - - - - - - - - - - -
-Classes in net.authorize used by net.authorize.data.reporting
ResponseCode - -
-          Response code indicates the overall status of the transaction - with possible values of approved, declined, error, or held for review.
ResponseReasonCode - -
-          Response Reason Code is a numeric representation of a more specific reason for the transaction status.
-  -

- - - - - - - - - - - - - - - - - -
-Classes in net.authorize used by net.authorize.sim
Environment - -
-          Determines which environment to post transactions against.
Merchant - -
-          Container to hold authentication credentials.
NVPTransaction - -
-           
ResponseField - -
-          ResponseField mappings used in processing and matching the returned data from - the payment gateway.
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize used by net.authorize.util
Environment - -
-          Determines which environment to post transactions against.
ITransaction - -
-          Interface for Transactions.
ResponseField - -
-          ResponseField mappings used in processing and matching the returned data from - the payment gateway.
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize used by net.authorize.xml
ITransaction - -
-          Interface for Transactions.
Merchant - -
-          Container to hold authentication credentials.
Result - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/Result.html b/docs/javadocs/net/authorize/reporting/Result.html deleted file mode 100644 index f66ad57..0000000 --- a/docs/javadocs/net/authorize/reporting/Result.html +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.reporting -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-      extended by net.authorize.xml.Result
-          extended by net.authorize.reporting.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Result
extends Result
- - -

-Reporting specific templated wrapper container for passing back the result from the request gateway. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - -
-Field Summary
-protected  ReportingDetailsreportingDetails - -
-           
- - - - - - - -
Fields inherited from class net.authorize.xml.Result
ERROR, messages, OK, refId, requestTransactionType, responseCode, resultCode, sessionToken, xmlResponse, xmlResponseDoc
- - - - - - - -
Fields inherited from class net.authorize.Result
requestTransaction
-  - - - - - - - - - - - - - - - -
-Constructor Summary
-protected Result() - -
-           
-protected Result(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static ResultcreateResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
- ReportingDetailsgetReportingDetails() - -
-           
- - - - - - - -
Methods inherited from class net.authorize.xml.Result
clearRequest, clearXmlResponse, getElementText, getElementText, getMessages, getRefId, getRequestTransactionType, getResultCode, getSessionToken, getXmlResponse, getXmlResponseDoc, importRefId, importResponseMessages, importSessionToken, isApproved, isDeclined, isError, isOk, isResponseAuthenticationError, isResponseError, isResponseErrorRetryable, isResponseOk, isReview, printMessages
- - - - - - - -
Methods inherited from class net.authorize.Result
getRequestTransaction
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-reportingDetails

-
-protected ReportingDetails reportingDetails
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Result

-
-protected Result()
-
-
-
- -

-Result

-
-protected Result(ITransaction requestTransaction,
-                 java.lang.String response)
-
-
- - - - - - - - -
-Method Detail
- -

-createResult

-
-public static Result createResult(ITransaction requestTransaction,
-                                  java.lang.String response)
-
-
-
-
-
-
- -

-getReportingDetails

-
-public ReportingDetails getReportingDetails()
-
-
- -
Returns:
the reportingDetails
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/Transaction.html b/docs/javadocs/net/authorize/reporting/Transaction.html deleted file mode 100644 index 8870c85..0000000 --- a/docs/javadocs/net/authorize/reporting/Transaction.html +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - -Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.reporting -
-Class Transaction

-
-java.lang.Object
-  extended by net.authorize.xml.XMLTransaction
-      extended by net.authorize.reporting.Transaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
-
public class Transaction
extends XMLTransaction
- - -

-Transaction object for Reporting. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.xml.XMLTransaction
bankAccount, billToAddress, creditCard, currentRequest, customer, emailReceipt, md5Value, merchant, order, refId, shippingAddress, shippingCharges, XML_NAMESPACE, XML_XSD, XML_XSI
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
- ReportingDetailsgetReportingDetails() - -
-           
- TransactionTypegetTransactionType() - -
-           
- voidsetReportingDetails(ReportingDetails reportingDetails) - -
-           
- java.lang.StringtoAuthNetPOSTString() - -
-          Convert request to XML.
- - - - - - - -
Methods inherited from class net.authorize.xml.XMLTransaction
addAuthentication, addAuthentication, addRefId, getBankAccount, getCreditCard, getCurrentRequest, getCustomer, getEmailReceipt, getMD5Value, getMerchant, getOrder, getRefId, getShippingAddress, getShippingCharges, setBankAccount, setCreditCard, setCustomer, setEmailReceipt, setOrder, setRefId, setShippingAddress, setShippingCharges
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType)
-
-
Creates a transaction. -

-

-
Parameters:
merchant -
transactionType - -
Returns:
Transaction
-
-
-
- -

-getTransactionType

-
-public TransactionType getTransactionType()
-
-
- -
Returns:
the transactionType
-
-
-
- -

-setReportingDetails

-
-public void setReportingDetails(ReportingDetails reportingDetails)
-
-
-
Parameters:
reportingDetails - the reportingDetails to set
-
-
-
- -

-getReportingDetails

-
-public ReportingDetails getReportingDetails()
-
-
- -
Returns:
the reportingDetails
-
-
-
- -

-toAuthNetPOSTString

-
-public java.lang.String toAuthNetPOSTString()
-
-
Convert request to XML. -

-

- -
Returns:
String to be POSTed to the AuthNet gateway.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/TransactionType.html b/docs/javadocs/net/authorize/reporting/TransactionType.html deleted file mode 100644 index 6d0f132..0000000 --- a/docs/javadocs/net/authorize/reporting/TransactionType.html +++ /dev/null @@ -1,394 +0,0 @@ - - - - - - -TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.reporting -
-Enum TransactionType

-
-java.lang.Object
-  extended by java.lang.Enum<TransactionType>
-      extended by net.authorize.reporting.TransactionType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransactionType>
-
-
-
-
public enum TransactionType
extends java.lang.Enum<TransactionType>
- - -

-Enumeration of Reporting transaction types that are supported by Authorize.Net -

- -

-


- -

- - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
GET_BATCH_STATISTICS - -
-           
GET_SETTLED_BATCH_LIST - -
-           
GET_TRANSACTION_DETAILS - -
-           
GET_TRANSACTION_LIST - -
-           
GET_UNSETTLED_TRANSACTION_LIST - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringgetValue() - -
-           
-static TransactionTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-GET_SETTLED_BATCH_LIST

-
-public static final TransactionType GET_SETTLED_BATCH_LIST
-
-
-
-
-
- -

-GET_TRANSACTION_LIST

-
-public static final TransactionType GET_TRANSACTION_LIST
-
-
-
-
-
- -

-GET_TRANSACTION_DETAILS

-
-public static final TransactionType GET_TRANSACTION_DETAILS
-
-
-
-
-
- -

-GET_BATCH_STATISTICS

-
-public static final TransactionType GET_BATCH_STATISTICS
-
-
-
-
-
- -

-GET_UNSETTLED_TRANSACTION_LIST

-
-public static final TransactionType GET_UNSETTLED_TRANSACTION_LIST
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static TransactionType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (TransactionType c : TransactionType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static TransactionType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/class-use/Result.html b/docs/javadocs/net/authorize/reporting/class-use/Result.html deleted file mode 100644 index c9aa13a..0000000 --- a/docs/javadocs/net/authorize/reporting/class-use/Result.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.reporting.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.reporting.Result

-
- - - - - - - - - -
-Packages that use Result
net.authorize.reporting  
-  -

- - - - - -
-Uses of Result in net.authorize.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.reporting that return Result
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/class-use/Transaction.html b/docs/javadocs/net/authorize/reporting/class-use/Transaction.html deleted file mode 100644 index 6ede542..0000000 --- a/docs/javadocs/net/authorize/reporting/class-use/Transaction.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - -Uses of Class net.authorize.reporting.Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.reporting.Transaction

-
- - - - - - - - - - - - - -
-Packages that use Transaction
net.authorize  
net.authorize.reporting  
-  -

- - - - - -
-Uses of Transaction in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return Transaction
- TransactionMerchant.createReportingTransaction(TransactionType transactionType) - -
-          Creates a new Reporting Transaction.
-  -

- - - - - -
-Uses of Transaction in net.authorize.reporting
-  -

- - - - - - - - - -
Methods in net.authorize.reporting that return Transaction
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/class-use/TransactionType.html b/docs/javadocs/net/authorize/reporting/class-use/TransactionType.html deleted file mode 100644 index c2e8777..0000000 --- a/docs/javadocs/net/authorize/reporting/class-use/TransactionType.html +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - -Uses of Class net.authorize.reporting.TransactionType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.reporting.TransactionType

-
- - - - - - - - - - - - - -
-Packages that use TransactionType
net.authorize  
net.authorize.reporting  
-  -

- - - - - -
-Uses of TransactionType in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize with parameters of type TransactionType
- TransactionMerchant.createReportingTransaction(TransactionType transactionType) - -
-          Creates a new Reporting Transaction.
-  -

- - - - - -
-Uses of TransactionType in net.authorize.reporting
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.reporting that return TransactionType
- TransactionTypeTransaction.getTransactionType() - -
-           
-static TransactionTypeTransactionType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static TransactionType[]TransactionType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.reporting with parameters of type TransactionType
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType) - -
-          Creates a transaction.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/package-frame.html b/docs/javadocs/net/authorize/reporting/package-frame.html deleted file mode 100644 index 6339378..0000000 --- a/docs/javadocs/net/authorize/reporting/package-frame.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - -net.authorize.reporting (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.reporting - - - - -
-Classes  - -
-Result -
-Transaction
- - - - - - -
-Enums  - -
-TransactionType
- - - - diff --git a/docs/javadocs/net/authorize/reporting/package-summary.html b/docs/javadocs/net/authorize/reporting/package-summary.html deleted file mode 100644 index b7c0ad5..0000000 --- a/docs/javadocs/net/authorize/reporting/package-summary.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - -net.authorize.reporting (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.reporting -

- - - - - - - - - - - - - -
-Class Summary
ResultReporting specific templated wrapper container for passing back the result from the request gateway.
TransactionTransaction object for Reporting.
-  - -

- - - - - - - - - -
-Enum Summary
TransactionTypeEnumeration of Reporting transaction types that are supported by Authorize.Net
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/package-tree.html b/docs/javadocs/net/authorize/reporting/package-tree.html deleted file mode 100644 index e2274d6..0000000 --- a/docs/javadocs/net/authorize/reporting/package-tree.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - -net.authorize.reporting Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.reporting -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.Result (implements java.io.Serializable) -
        -
      • net.authorize.xml.Result (implements java.io.Serializable) -
          -
        • net.authorize.reporting.Result
        -
      -
    • net.authorize.xml.XMLTransaction (implements net.authorize.ITransaction, java.io.Serializable) - -
    -
-

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/reporting/package-use.html b/docs/javadocs/net/authorize/reporting/package-use.html deleted file mode 100644 index 7b0be1e..0000000 --- a/docs/javadocs/net/authorize/reporting/package-use.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - -Uses of Package net.authorize.reporting (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.reporting

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.reporting
net.authorize  
net.authorize.reporting  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.reporting used by net.authorize
Transaction - -
-          Transaction object for Reporting.
TransactionType - -
-          Enumeration of Reporting transaction types that are supported by Authorize.Net
-  -

- - - - - - - - - - - - - - -
-Classes in net.authorize.reporting used by net.authorize.reporting
Result - -
-          Reporting specific templated wrapper container for passing back the result from the request gateway.
Transaction - -
-          Transaction object for Reporting.
TransactionType - -
-          Enumeration of Reporting transaction types that are supported by Authorize.Net
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/Fingerprint.html b/docs/javadocs/net/authorize/sim/Fingerprint.html deleted file mode 100644 index 40405de..0000000 --- a/docs/javadocs/net/authorize/sim/Fingerprint.html +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - -Fingerprint (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.sim -
-Class Fingerprint

-
-java.lang.Object
-  extended by net.authorize.sim.Fingerprint
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Fingerprint
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static FingerprintcreateFingerprint(Merchant merchant, - long sequence, - java.math.BigDecimal amount) - -
-          Create a fingerprint with object based fields.
-static FingerprintcreateFingerprint(java.lang.String loginID, - java.lang.String transactionKey, - long sequence, - java.lang.String amount) - -
-          Creates a fingerprint with raw data fields.
- java.lang.StringgetFingerprintHash() - -
-          Get the fingerprint hash.
- longgetSequence() - -
-          Get the sequence that was used in creating the fingerprint.
- longgetTimeStamp() - -
-          Get the timestamp that was used in creating the fingerprint.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createFingerprint

-
-public static Fingerprint createFingerprint(java.lang.String loginID,
-                                            java.lang.String transactionKey,
-                                            long sequence,
-                                            java.lang.String amount)
-
-
Creates a fingerprint with raw data fields. -

-

-
-
-
-
Parameters:
loginID -
transactionKey -
sequence - : this number will be concatenated with a random value
amount - -
Returns:
A Fingerprint object.
-
-
-
- -

-createFingerprint

-
-public static Fingerprint createFingerprint(Merchant merchant,
-                                            long sequence,
-                                            java.math.BigDecimal amount)
-
-
Create a fingerprint with object based fields. -

-

-
-
-
-
Parameters:
merchant -
sequence - : this number will be concatenated with a random value
amount - -
Returns:
A Fingerprint object.
-
-
-
- -

-getSequence

-
-public long getSequence()
-
-
Get the sequence that was used in creating the fingerprint. -

-

-
-
-
- -
Returns:
the sequence
-
-
-
- -

-getTimeStamp

-
-public long getTimeStamp()
-
-
Get the timestamp that was used in creating the fingerprint. -

-

-
-
-
- -
Returns:
the timeStamp
-
-
-
- -

-getFingerprintHash

-
-public java.lang.String getFingerprintHash()
-
-
Get the fingerprint hash. -

-

-
-
-
- -
Returns:
the fingerprintHash
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/LinkMethod.html b/docs/javadocs/net/authorize/sim/LinkMethod.html deleted file mode 100644 index 84f0b3f..0000000 --- a/docs/javadocs/net/authorize/sim/LinkMethod.html +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - -LinkMethod (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.sim -
-Enum LinkMethod

-
-java.lang.Object
-  extended by java.lang.Enum<LinkMethod>
-      extended by net.authorize.sim.LinkMethod
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LinkMethod>
-
-
-
-
public enum LinkMethod
extends java.lang.Enum<LinkMethod>
- - -

-The type of link back to the merchant's website. - - LINK creates a regular hyperlink. - GET creates a button and returns transaction information in the receipt link URL. - POST creates a button and returns transaction information as an HTML Form POST. -

- -

-


- -

- - - - - - - - - - - - - - - - -
-Enum Constant Summary
GET - -
-           
LINK - -
-           
POST - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static LinkMethodvalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static LinkMethod[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-LINK

-
-public static final LinkMethod LINK
-
-
-
-
-
- -

-POST

-
-public static final LinkMethod POST
-
-
-
-
-
- -

-GET

-
-public static final LinkMethod GET
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static LinkMethod[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (LinkMethod c : LinkMethod.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static LinkMethod valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/Result.html b/docs/javadocs/net/authorize/sim/Result.html deleted file mode 100644 index 758611a..0000000 --- a/docs/javadocs/net/authorize/sim/Result.html +++ /dev/null @@ -1,455 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.sim -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-      extended by net.authorize.sim.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class Result
extends Result
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.Result
requestTransaction
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ResultcreateResult(java.util.Map<ResponseField,java.lang.String> responseMap) - -
-           
-static ResultcreateResult(java.lang.String apiLoginId, - java.lang.String merchantMD5Key, - java.util.Map<java.lang.String,java.lang.String[]> responseMap) - -
-          Create a result for SIM based on the response map.
- ResponseReasonCodegetReasonResponseCode() - -
-           
- ResponseCodegetResponseCode() - -
-           
- java.util.Map<java.lang.String,java.lang.String>getResponseMap() - -
-           
- java.lang.StringgetResponseText() - -
-           
- booleanisApproved() - -
-           
- booleanisAuthorizeNet() - -
-          Verify that the relay response post is actually coming from - AuthorizeNet.
- booleanisDeclined() - -
-           
- booleanisError() - -
-           
- booleanisReview() - -
-           
- - - - - - - -
Methods inherited from class net.authorize.Result
getRequestTransaction
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createResult

-
-public static Result createResult(java.util.Map<ResponseField,java.lang.String> responseMap)
-
-
-
-
-
-
- -

-createResult

-
-public static Result createResult(java.lang.String apiLoginId,
-                                  java.lang.String merchantMD5Key,
-                                  java.util.Map<java.lang.String,java.lang.String[]> responseMap)
-
-
Create a result for SIM based on the response map. -

-

-
Parameters:
apiLoginId - merchant api login Id
merchantMD5Key - MD5 key that is created in the Security Settings in the merchant interface.
responseMap - -
Returns:
the result
-
-
-
- -

-isAuthorizeNet

-
-public boolean isAuthorizeNet()
-
-
Verify that the relay response post is actually coming from - AuthorizeNet. -

-

- -
Returns:
boolean true if the txn came from Authorize.Net
-
-
-
- -

-isApproved

-
-public boolean isApproved()
-
-
-
-
-
-
- -

-isDeclined

-
-public boolean isDeclined()
-
-
-
-
-
-
- -

-isError

-
-public boolean isError()
-
-
-
-
-
-
- -

-isReview

-
-public boolean isReview()
-
-
-
-
-
-
- -

-getResponseCode

-
-public ResponseCode getResponseCode()
-
-
-
-
-
-
- -

-getReasonResponseCode

-
-public ResponseReasonCode getReasonResponseCode()
-
-
-
-
-
-
- -

-getResponseMap

-
-public java.util.Map<java.lang.String,java.lang.String> getResponseMap()
-
-
-
-
-
-
- -

-getResponseText

-
-public java.lang.String getResponseText()
-
-
- -
Returns:
the responseText
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/Transaction.html b/docs/javadocs/net/authorize/sim/Transaction.html deleted file mode 100644 index 4ea0f52..0000000 --- a/docs/javadocs/net/authorize/sim/Transaction.html +++ /dev/null @@ -1,1833 +0,0 @@ - - - - - - -Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.sim -
-Class Transaction

-
-java.lang.Object
-  extended by net.authorize.NVPTransaction
-      extended by net.authorize.sim.Transaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
-
public class Transaction
extends NVPTransaction
implements ITransaction
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static java.lang.StringBRACKET_PIPE_DELIMITER - -
-           
-static java.lang.StringENCAP_CHAR_DELIMITER - -
-           
-static intMAX_RECEIPT_LINK_TEXT_LENGTH - -
-           
-protected  java.util.Hashtable<java.lang.String,java.lang.String>merchantDefinedMap - -
-           
-static java.lang.StringPAYMENT_FORM - -
-           
-protected  java.util.Hashtable<java.lang.String,java.lang.String>requestMap - -
-           
-static java.lang.StringTRANSACTION_FIELD_DELIMITER - -
-           
- - - - - - - -
Fields inherited from class net.authorize.NVPTransaction
billToAddress, creditCard, customer, eCheck, emailReceipt, md5Value, merchant, order, shippingAddress, shippingCharges, transactionType
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - - -
-Constructor Summary
-protected Transaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Constructor for creation a transaction with typed objects.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddFieldToRename(java.lang.String fieldToRename, - java.lang.String replacementName) - -
-          Add a field to rename.
- voidaddFormInput(java.lang.String inputName, - java.lang.String htmlInputData) - -
-          Add an input name and replacement data to the list of fields that should - not be auto populated in the createForm method.
- java.lang.StringcreateForm(java.lang.String formName, - java.lang.String formId, - Button button) - -
-          Return an HTML form with all inputs.
-static java.lang.StringcreateRelayResponseRedirectUrl(java.lang.String relayResponseUrl, - java.util.Map<java.lang.String,java.lang.String[]> requestParameterMap) - -
-          Build a relay response url for the relay response redirect.
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Create a Transaction for a merchant.
-static TransactioncreateTransaction(Merchant merchant, - TransactionType transactionType, - long fingerPrintSequence, - java.math.BigDecimal amount) - -
-          Create a Transaction for a given merchant.
-static TransactioncreateTransaction(Transaction transaction, - java.util.Hashtable<ResponseField,java.lang.String> responseMap) - -
-          Create a transaction from a responseMap.
- java.lang.StringgetAuthorizationCode() - -
-          Get the authorization code of the transaction.
- CreditCardgetCreditCard() - -
-          Get the CreditCard associated with the transaction.
- java.lang.StringgetCurrencyCode() - -
-          Get the currency code for Card Present transactions.
- BasicXmlDocumentgetCurrentResponse() - -
-          Return a response XML doc if the transaction was a Card Present transaction.
- CustomergetCustomer() - -
-          Get the Customer information associated with the transaction.
- ECheckgetECheck() - -
-           
- EmailReceiptgetEmailReceipt() - -
-          Get the EmailReceipt associated with the transaction.
- EnvironmentgetEnvironment() - -
-           
- java.util.Map<java.lang.String,java.lang.String>getFieldsToRename() - -
-           
- FingerprintgetFingerprint() - -
-           
- java.util.Map<java.lang.String,java.lang.String>getFormInputs() - -
-          Get the field names that should not be auto populated - in the createForm method.
- HostedPaymentFormSettingsgetHostedPaymentFormSettings() - -
-           
- HostedReceiptPageSettingsgetHostedReceiptPageSettings() - -
-           
- java.lang.StringgetMD5Value() - -
-           
- java.lang.StringgetMerchantDefinedField(java.lang.String field) - -
-          Get a merchant defined field.
- java.util.Map<java.lang.String,java.lang.String>getMerchantDefinedMap() - -
-          Get the merchant defined data map.
- OrdergetOrder() - -
-          Get the Order associated with the transaction.
- java.lang.StringgetRelayResponseUrl() - -
-          SIM applications use relay response.
- java.util.Map<java.lang.String,java.lang.String>getRequestMap() - -
-           
- java.lang.StringgetResponseField(ResponseField responseField) - -
-          Returns the payment gateway response data for a specific ResponseField.
- java.util.Map<ResponseField,java.lang.String>getResponseMap() - -
-          Return the payment gateway response data map.
- ShippingAddressgetShippingAddress() - -
-          Get the ShippingAddress for the transaction request.
- ShippingChargesgetShippingCharges() - -
-          Get the ShippingCharges associated with the transaction.
- java.lang.StringgetTransactionId() - -
-          Return the payment gateway assigned transaction ID of the transaction.
- TransactionTypegetTransactionType() - -
-          Get the transaction type.
- booleanisShowPaymentForm() - -
-          Returns true if the payment data collection form should be displayed/used.
- voidsetAuthorizationCode(java.lang.String authCode) - -
-          The authorization code of an original transaction not captured on the payment gateway.
- voidsetCreditCard(CreditCard creditCard) - -
-          Set the CreditCard information for the transaction request.
- voidsetCurrencyCode(java.lang.String currencyCode) - -
-          Set the currency code for Card Present transactions.
- voidsetCustomer(Customer customer) - -
-          Set the Customer information for the transaction request.
- voidsetDuplicateWindow(int seconds) - -
-          The window of time after the submission of a transaction that a duplicate transaction can not be submitted.
- voidsetECheck(ECheck eCheck) - -
-           
- voidsetEmailReceipt(EmailReceipt emailReceipt) - -
-          Set the EmailReceipt information for the transaction request.
-static voidsetEncapCharDelimiter(java.lang.String encapCharDelimiter) - -
-          Convenience method for overriding the encap char delimiter.
- voidsetFieldsToRename(java.util.Map<java.lang.String,java.lang.String> fieldsToRename) - -
-           
- voidsetFormInputs(java.util.LinkedHashMap<java.lang.String,java.lang.String> formInputs) - -
-           
- voidsetHostedPaymentFormSettings(HostedPaymentFormSettings hostedPaymentFormSettings) - -
-           
- voidsetHostedReceiptPageSettings(HostedReceiptPageSettings hostedReceiptPageSettings) - -
-           
- voidsetMerchantDefinedField(java.lang.String field, - java.lang.String value) - -
-          Set a merchant defined field.
- voidsetOrder(Order order) - -
-          Set the Order (and OrderItems) for the transaction request.
- voidsetRecurringBilling(boolean recurringBillingStatus) - -
-          Indicating marker used by merchant account providers to identify transactions which originate from merchant - hosted recurring billing applications.
- voidsetRelayResponseUrl(java.lang.String relayResponseUrl) - -
-          SIM applications use relay response to redirect the user back to the merchant server.
- voidsetShippingAddress(ShippingAddress shippingAddress) - -
-          Set the ShippingAddress for the transaction request.
- voidsetShippingCharges(ShippingCharges shippingCharges) - -
-          Set the ShippingCharges for the transaction request.
- voidsetShowPaymentForm(boolean showForm) - -
-          If true, will populate a field that indicates that the merchant would like to - use the payment gateway hosted payment form to collect payment data.
- voidsetSplitTenderId(java.lang.String splitTenderId) - -
-          The payment gateway assigned slit tender ID of an original transaction.
-static voidsetTransactionFieldDelimiter(java.lang.String transactionFieldDelimiter) - -
-          Convenience method for overriding the transaction field delimited.
- voidsetTransactionId(java.lang.String transactionId) - -
-          The payment gateway assigned transaction ID of an original transaction.
- java.lang.StringtoAuthNetPOSTString() - -
-          Prepare the name/value pair mapping based on the Map(s) provided.
- - - - - - - -
Methods inherited from class net.authorize.NVPTransaction
getBankAccount, getMerchant, setBankAccount
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.ITransaction
getBankAccount, getMerchant, setBankAccount
-  -

- - - - - - - - -
-Field Detail
- -

-TRANSACTION_FIELD_DELIMITER

-
-public static java.lang.String TRANSACTION_FIELD_DELIMITER
-
-
-
-
-
- -

-ENCAP_CHAR_DELIMITER

-
-public static java.lang.String ENCAP_CHAR_DELIMITER
-
-
-
-
-
- -

-BRACKET_PIPE_DELIMITER

-
-public static final java.lang.String BRACKET_PIPE_DELIMITER
-
-
-
See Also:
Constant Field Values
-
-
- -

-MAX_RECEIPT_LINK_TEXT_LENGTH

-
-public static final int MAX_RECEIPT_LINK_TEXT_LENGTH
-
-
-
See Also:
Constant Field Values
-
-
- -

-PAYMENT_FORM

-
-public static final java.lang.String PAYMENT_FORM
-
-
-
See Also:
Constant Field Values
-
-
- -

-requestMap

-
-protected java.util.Hashtable<java.lang.String,java.lang.String> requestMap
-
-
-
-
-
- -

-merchantDefinedMap

-
-protected java.util.Hashtable<java.lang.String,java.lang.String> merchantDefinedMap
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Transaction

-
-protected Transaction(Merchant merchant,
-                      TransactionType transactionType,
-                      java.math.BigDecimal amount)
-
-
Constructor for creation a transaction with typed objects. -

-

-
Parameters:
merchant -
transactionType -
amount -
-
- - - - - - - - -
-Method Detail
- -

-createTransaction

-
-public static final Transaction createTransaction(Transaction transaction,
-                                                  java.util.Hashtable<ResponseField,java.lang.String> responseMap)
-
-
Create a transaction from a responseMap. -

-

-
-
-
-
Parameters:
transaction -
responseMap - -
Returns:
a Transaction
-
-
-
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType,
-                                            long fingerPrintSequence,
-                                            java.math.BigDecimal amount)
-
-
Create a Transaction for a given merchant. -

-

-
-
-
-
Parameters:
merchant -
transactionType -
fingerPrintSequence -
amount - -
Returns:
a Transaction
-
-
-
- -

-createTransaction

-
-public static Transaction createTransaction(Merchant merchant,
-                                            TransactionType transactionType,
-                                            java.math.BigDecimal amount)
-
-
Create a Transaction for a merchant. -

-

-
-
-
-
Parameters:
merchant -
transactionType -
amount -
-
-
-
- -

-setTransactionFieldDelimiter

-
-public static void setTransactionFieldDelimiter(java.lang.String transactionFieldDelimiter)
-
-
Convenience method for overriding the transaction field delimited. - - Character that will be used to separate fields in the transaction response. - The system will use the character passed in this field or the value stored - in the Merchant Interface if no value is passed. -

-

-
-
-
-
Parameters:
transactionFieldDelimiter -
-
-
-
- -

-setEncapCharDelimiter

-
-public static void setEncapCharDelimiter(java.lang.String encapCharDelimiter)
-
-
Convenience method for overriding the encap char delimiter. - - Character that will be used to encapsulate the fields in the transaction response. - The system will use the character passed in this field or the value stored in - the Merchant Interface if no value is passed. -

-

-
-
-
-
-
-
-
- -

-getRequestMap

-
-public java.util.Map<java.lang.String,java.lang.String> getRequestMap()
-
-
-
-
-
- -
Returns:
the transactionRequestHash
-
-
-
- -

-getResponseMap

-
-public java.util.Map<ResponseField,java.lang.String> getResponseMap()
-
-
Return the payment gateway response data map. -

-

-
-
-
- -
Returns:
a map of response data
-
-
-
- -

-setTransactionId

-
-public void setTransactionId(java.lang.String transactionId)
-
-
The payment gateway assigned transaction ID of an original transaction. -

-

-
-
-
-
Parameters:
transactionId -
-
-
-
- -

-setSplitTenderId

-
-public void setSplitTenderId(java.lang.String splitTenderId)
-
-
The payment gateway assigned slit tender ID of an original transaction. -

-

-
-
-
-
Parameters:
splitTenderId -
-
-
-
- -

-getTransactionId

-
-public java.lang.String getTransactionId()
-
-
Return the payment gateway assigned transaction ID of the transaction. -

-

-
-
-
- -
Returns:
The transaction id.
-
-
-
- -

-getTransactionType

-
-public TransactionType getTransactionType()
-
-
Get the transaction type. -

-

-
Specified by:
getTransactionType in interface ITransaction
Overrides:
getTransactionType in class NVPTransaction
-
-
- -
Returns:
the transactionType
-
-
-
- -

-setAuthorizationCode

-
-public void setAuthorizationCode(java.lang.String authCode)
-
-
The authorization code of an original transaction not captured on the payment gateway. -

-

-
-
-
-
Parameters:
authCode -
-
-
-
- -

-getAuthorizationCode

-
-public java.lang.String getAuthorizationCode()
-
-
Get the authorization code of the transaction. -

-

-
-
-
- -
Returns:
authorizationCode
-
-
-
- -

-setCreditCard

-
-public void setCreditCard(CreditCard creditCard)
-
-
Set the CreditCard information for the transaction request. -

-

-
Specified by:
setCreditCard in interface ITransaction
Overrides:
setCreditCard in class NVPTransaction
-
-
-
Parameters:
creditCard -
-
-
-
- -

-getCreditCard

-
-public CreditCard getCreditCard()
-
-
Get the CreditCard associated with the transaction. -

-

-
Specified by:
getCreditCard in interface ITransaction
Overrides:
getCreditCard in class NVPTransaction
-
-
- -
Returns:
credit card object
-
-
-
- -

-setECheck

-
-public void setECheck(ECheck eCheck)
-
-
-
Overrides:
setECheck in class NVPTransaction
-
-
-
Parameters:
eCheck - the eCheck to set
-
-
-
- -

-getECheck

-
-public ECheck getECheck()
-
-
-
Overrides:
getECheck in class NVPTransaction
-
-
- -
Returns:
the eCheck
-
-
-
- -

-setCustomer

-
-public void setCustomer(Customer customer)
-
-
Set the Customer information for the transaction request. -

-

-
Specified by:
setCustomer in interface ITransaction
Overrides:
setCustomer in class NVPTransaction
-
-
-
Parameters:
customer -
-
-
-
- -

-getCustomer

-
-public Customer getCustomer()
-
-
Get the Customer information associated with the transaction. -

-

-
Specified by:
getCustomer in interface ITransaction
Overrides:
getCustomer in class NVPTransaction
-
-
- -
Returns:
The Customer
-
-
-
- -

-setEmailReceipt

-
-public void setEmailReceipt(EmailReceipt emailReceipt)
-
-
Set the EmailReceipt information for the transaction request. -

-

-
Specified by:
setEmailReceipt in interface ITransaction
Overrides:
setEmailReceipt in class NVPTransaction
-
-
-
Parameters:
emailReceipt -
-
-
-
- -

-getEmailReceipt

-
-public EmailReceipt getEmailReceipt()
-
-
Get the EmailReceipt associated with the transaction. -

-

-
Specified by:
getEmailReceipt in interface ITransaction
Overrides:
getEmailReceipt in class NVPTransaction
-
-
- -
Returns:
The EmailReceipt.
-
-
-
- -

-setOrder

-
-public void setOrder(Order order)
-
-
Set the Order (and OrderItems) for the transaction request. -

-

-
Specified by:
setOrder in interface ITransaction
Overrides:
setOrder in class NVPTransaction
-
-
-
Parameters:
order -
-
-
-
- -

-getOrder

-
-public Order getOrder()
-
-
Get the Order associated with the transaction. -

-

-
Specified by:
getOrder in interface ITransaction
Overrides:
getOrder in class NVPTransaction
-
-
- -
Returns:
The Order.
-
-
-
- -

-setShippingAddress

-
-public void setShippingAddress(ShippingAddress shippingAddress)
-
-
Set the ShippingAddress for the transaction request. -

-

-
Specified by:
setShippingAddress in interface ITransaction
Overrides:
setShippingAddress in class NVPTransaction
-
-
-
Parameters:
shippingAddress -
-
-
-
- -

-getShippingAddress

-
-public ShippingAddress getShippingAddress()
-
-
Get the ShippingAddress for the transaction request. -

-

-
Specified by:
getShippingAddress in interface ITransaction
Overrides:
getShippingAddress in class NVPTransaction
-
-
- -
Returns:
The ShippingAddress
-
-
-
- -

-setShippingCharges

-
-public void setShippingCharges(ShippingCharges shippingCharges)
-
-
Set the ShippingCharges for the transaction request. -

-

-
Specified by:
setShippingCharges in interface ITransaction
Overrides:
setShippingCharges in class NVPTransaction
-
-
-
Parameters:
shippingCharges -
-
-
-
- -

-getShippingCharges

-
-public ShippingCharges getShippingCharges()
-
-
Get the ShippingCharges associated with the transaction. -

-

-
Specified by:
getShippingCharges in interface ITransaction
Overrides:
getShippingCharges in class NVPTransaction
-
-
- -
Returns:
The ShippingCharges
-
-
-
- -

-setDuplicateWindow

-
-public void setDuplicateWindow(int seconds)
-
-
The window of time after the submission of a transaction that a duplicate transaction can not be submitted. -

-

-
-
-
-
Parameters:
seconds -
-
-
-
- -

-setCurrencyCode

-
-public void setCurrencyCode(java.lang.String currencyCode)
-
-
Set the currency code for Card Present transactions. -

-

-
-
-
-
Parameters:
currencyCode -
-
-
-
- -

-getCurrencyCode

-
-public java.lang.String getCurrencyCode()
-
-
Get the currency code for Card Present transactions. -

-

-
-
-
- -
Returns:
the currencyCode used in the transaction.
-
-
-
- -

-setRecurringBilling

-
-public void setRecurringBilling(boolean recurringBillingStatus)
-
-
Indicating marker used by merchant account providers to identify transactions which originate from merchant - hosted recurring billing applications. This value is not affiliated with Automated Recurring Billing. -

-

-
-
-
-
Parameters:
recurringBillingStatus -
-
-
-
- -

-setMerchantDefinedField

-
-public void setMerchantDefinedField(java.lang.String field,
-                                    java.lang.String value)
-
-
Set a merchant defined field. -

-

-
-
-
-
Parameters:
field -
value -
-
-
-
- -

-getMerchantDefinedField

-
-public java.lang.String getMerchantDefinedField(java.lang.String field)
-
-
Get a merchant defined field. -

-

-
-
-
-
Parameters:
field - -
Returns:
Return the value found in the merchant defined hash by a field.
-
-
-
- -

-getMerchantDefinedMap

-
-public java.util.Map<java.lang.String,java.lang.String> getMerchantDefinedMap()
-
-
Get the merchant defined data map. -

-

-
-
-
- -
Returns:
a map of merchant defined data
-
-
-
- -

-getResponseField

-
-public java.lang.String getResponseField(ResponseField responseField)
-
-
Returns the payment gateway response data for a specific ResponseField. -

-

-
-
-
-
Parameters:
responseField - -
Returns:
the value found in the map identified by the response field
-
-
-
- -

-getCurrentResponse

-
-public BasicXmlDocument getCurrentResponse()
-
-
Return a response XML doc if the transaction was a Card Present transaction. -

-

-
-
-
- -
Returns:
the responseXml
-
-
-
- -

-getMD5Value

-
-public java.lang.String getMD5Value()
-
-
-
Specified by:
getMD5Value in interface ITransaction
Overrides:
getMD5Value in class NVPTransaction
-
-
- -
Returns:
the mD5Value
-
-
-
- -

-getFingerprint

-
-public Fingerprint getFingerprint()
-
-
-
-
-
- -
Returns:
the fingerprint
-
-
-
- -

-getEnvironment

-
-public Environment getEnvironment()
-
-
-
Overrides:
getEnvironment in class NVPTransaction
-
-
- -
Returns:
the environment
-
-
-
- -

-setShowPaymentForm

-
-public void setShowPaymentForm(boolean showForm)
-
-
If true, will populate a field that indicates that the merchant would like to - use the payment gateway hosted payment form to collect payment data. -

-

-
-
-
-
Parameters:
showForm -
-
-
-
- -

-isShowPaymentForm

-
-public boolean isShowPaymentForm()
-
-
Returns true if the payment data collection form should be displayed/used. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-getFormInputs

-
-public java.util.Map<java.lang.String,java.lang.String> getFormInputs()
-
-
Get the field names that should not be auto populated - in the createForm method. The developer can then offer - these as customized input fields in the form. -

-

-
-
-
- -
Returns:
the fieldsToRemoveFromForm
-
-
-
- -

-addFormInput

-
-public void addFormInput(java.lang.String inputName,
-                         java.lang.String htmlInputData)
-
-
Add an input name and replacement data to the list of fields that should - not be auto populated in the createForm method. If the optionsMap is - empty, then no input element will be created in the form for the - specified inputName. - - Example: - - If "notes" was passed in as the inputName, the htmlInputData provided - could look like - - "
- - -
" -

-

-
-
-
-
Parameters:
inputName -
htmlInputData -
-
-
-
- -

-setFormInputs

-
-public void setFormInputs(java.util.LinkedHashMap<java.lang.String,java.lang.String> formInputs)
-
-
-
-
-
-
Parameters:
formInputs - the form input names and input options that should not - be auto populated in the createForm method.
-
-
-
- -

-getHostedPaymentFormSettings

-
-public HostedPaymentFormSettings getHostedPaymentFormSettings()
-
-
-
-
-
- -
Returns:
the hostedPaymentFormSettings
-
-
-
- -

-setHostedPaymentFormSettings

-
-public void setHostedPaymentFormSettings(HostedPaymentFormSettings hostedPaymentFormSettings)
-
-
-
-
-
-
Parameters:
hostedPaymentFormSettings - the hostedPaymentFormSettings to set
-
-
-
- -

-getFieldsToRename

-
-public java.util.Map<java.lang.String,java.lang.String> getFieldsToRename()
-
-
-
-
-
- -
Returns:
the fieldsToRename
-
-
-
- -

-setFieldsToRename

-
-public void setFieldsToRename(java.util.Map<java.lang.String,java.lang.String> fieldsToRename)
-
-
-
-
-
-
Parameters:
fieldsToRename - the fieldsToRename to set
-
-
-
- -

-addFieldToRename

-
-public void addFieldToRename(java.lang.String fieldToRename,
-                             java.lang.String replacementName)
-
-
Add a field to rename. -

-

-
-
-
-
Parameters:
fieldToRename -
replacementName -
-
-
-
- -

-getHostedReceiptPageSettings

-
-public HostedReceiptPageSettings getHostedReceiptPageSettings()
-
-
-
-
-
- -
Returns:
the hostedReceiptPageSettings
-
-
-
- -

-setHostedReceiptPageSettings

-
-public void setHostedReceiptPageSettings(HostedReceiptPageSettings hostedReceiptPageSettings)
-
-
-
-
-
-
Parameters:
hostedReceiptPageSettings - the hostedReceiptPageSettings to set
-
-
-
- -

-setRelayResponseUrl

-
-public void setRelayResponseUrl(java.lang.String relayResponseUrl)
-
-
SIM applications use relay response to redirect the user back to the merchant server. -

-

-
-
-
-
Parameters:
relayResponseUrl -
-
-
-
- -

-getRelayResponseUrl

-
-public java.lang.String getRelayResponseUrl()
-
-
SIM applications use relay response. Set this to false (default) if you are using AIM. -

-

-
-
-
- -
Returns:
the relayResponseUrl
-
-
-
- -

-createForm

-
-public java.lang.String createForm(java.lang.String formName,
-                                   java.lang.String formId,
-                                   Button button)
-
-
Return an HTML form with all inputs. All the data collected in the Transaction - will be added as inputs. -

-

-
-
-
- -
Returns:
A string containing the html FORM
-
-
-
- -

-createRelayResponseRedirectUrl

-
-public static java.lang.String createRelayResponseRedirectUrl(java.lang.String relayResponseUrl,
-                                                              java.util.Map<java.lang.String,java.lang.String[]> requestParameterMap)
-
-
Build a relay response url for the relay response redirect. -

-

-
-
-
-
Parameters:
relayResponseUrl -
requestParameterMap - -
Returns:
a string that is the relay response redirect url
-
-
-
- -

-toAuthNetPOSTString

-
-public java.lang.String toAuthNetPOSTString()
-
-
Prepare the name/value pair mapping based on the Map(s) provided. -

-

-
Specified by:
toAuthNetPOSTString in interface ITransaction
-
-
- -
Returns:
String
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/Button.html b/docs/javadocs/net/authorize/sim/button/Button.html deleted file mode 100644 index 85603b9..0000000 --- a/docs/javadocs/net/authorize/sim/button/Button.html +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - -Button (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.sim.button -
-Class Button

-
-java.lang.Object
-  extended by net.authorize.sim.button.Button
-
-
-
Direct Known Subclasses:
ImageButton, TextButton
-
-
-
-
public abstract class Button
extends java.lang.Object
- - -

-


- -

- - - - - - - - - - - -
-Field Summary
-protected  ButtonTypebuttonType - -
-           
-  - - - - - - - - - - -
-Constructor Summary
Button() - -
-           
-  - - - - - - - - - - - -
-Method Summary
- ButtonTypegetButtonType() - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-buttonType

-
-protected ButtonType buttonType
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Button

-
-public Button()
-
-
- - - - - - - - -
-Method Detail
- -

-getButtonType

-
-public ButtonType getButtonType()
-
-
- -
Returns:
the buttonType
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/ButtonType.html b/docs/javadocs/net/authorize/sim/button/ButtonType.html deleted file mode 100644 index baf4d8e..0000000 --- a/docs/javadocs/net/authorize/sim/button/ButtonType.html +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - -ButtonType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.sim.button -
-Enum ButtonType

-
-java.lang.Object
-  extended by java.lang.Enum<ButtonType>
-      extended by net.authorize.sim.button.ButtonType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ButtonType>
-
-
-
-
public enum ButtonType
extends java.lang.Enum<ButtonType>
- - -

-


- -

- - - - - - - - - - - - - -
-Enum Constant Summary
IMAGE - -
-           
TEXT - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static ButtonTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ButtonType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-TEXT

-
-public static final ButtonType TEXT
-
-
-
-
-
- -

-IMAGE

-
-public static final ButtonType IMAGE
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static ButtonType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (ButtonType c : ButtonType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static ButtonType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/ImageButton.html b/docs/javadocs/net/authorize/sim/button/ImageButton.html deleted file mode 100644 index 4b4c1f5..0000000 --- a/docs/javadocs/net/authorize/sim/button/ImageButton.html +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - -ImageButton (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.sim.button -
-Class ImageButton

-
-java.lang.Object
-  extended by net.authorize.sim.button.Button
-      extended by net.authorize.sim.button.ImageButton
-
-
-
-
public class ImageButton
extends Button
- - -

-


- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.sim.button.Button
buttonType
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static ImageButtoncreateButton(java.lang.String src, - int width, - int height, - int border, - java.lang.String alt) - -
-           
- java.lang.StringgetAlt() - -
-           
- intgetBorder() - -
-           
- intgetHeight() - -
-           
- java.lang.StringgetSrc() - -
-           
- intgetWidth() - -
-           
- voidsetAlt(java.lang.String alt) - -
-           
- voidsetBorder(int border) - -
-           
- voidsetHeight(int height) - -
-           
- voidsetSrc(java.lang.String src) - -
-           
- voidsetWidth(int width) - -
-           
- - - - - - - -
Methods inherited from class net.authorize.sim.button.Button
getButtonType
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createButton

-
-public static ImageButton createButton(java.lang.String src,
-                                       int width,
-                                       int height,
-                                       int border,
-                                       java.lang.String alt)
-
-
-
-
-
-
- -

-getSrc

-
-public java.lang.String getSrc()
-
-
- -
Returns:
the src
-
-
-
- -

-setSrc

-
-public void setSrc(java.lang.String src)
-
-
-
Parameters:
src - the src to set
-
-
-
- -

-getHeight

-
-public int getHeight()
-
-
- -
Returns:
the height
-
-
-
- -

-setHeight

-
-public void setHeight(int height)
-
-
-
Parameters:
height - the height to set
-
-
-
- -

-getWidth

-
-public int getWidth()
-
-
- -
Returns:
the width
-
-
-
- -

-setWidth

-
-public void setWidth(int width)
-
-
-
Parameters:
width - the width to set
-
-
-
- -

-getBorder

-
-public int getBorder()
-
-
- -
Returns:
the border
-
-
-
- -

-setBorder

-
-public void setBorder(int border)
-
-
-
Parameters:
border - the border to set
-
-
-
- -

-getAlt

-
-public java.lang.String getAlt()
-
-
- -
Returns:
the alt
-
-
-
- -

-setAlt

-
-public void setAlt(java.lang.String alt)
-
-
-
Parameters:
alt - the alt to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/TextButton.html b/docs/javadocs/net/authorize/sim/button/TextButton.html deleted file mode 100644 index f48116b..0000000 --- a/docs/javadocs/net/authorize/sim/button/TextButton.html +++ /dev/null @@ -1,366 +0,0 @@ - - - - - - -TextButton (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.sim.button -
-Class TextButton

-
-java.lang.Object
-  extended by net.authorize.sim.button.Button
-      extended by net.authorize.sim.button.TextButton
-
-
-
-
public class TextButton
extends Button
- - -

-


- -

- - - - - - - -
-Field Summary
- - - - - - - -
Fields inherited from class net.authorize.sim.button.Button
buttonType
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static TextButtoncreateButton(java.lang.String name, - java.lang.String value) - -
-           
- java.lang.StringgetCssClass() - -
-           
- java.lang.StringgetName() - -
-           
- java.lang.StringgetValue() - -
-           
- voidsetCssClass(java.lang.String cssClass) - -
-           
- voidsetName(java.lang.String name) - -
-           
- voidsetValue(java.lang.String value) - -
-           
- - - - - - - -
Methods inherited from class net.authorize.sim.button.Button
getButtonType
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Method Detail
- -

-createButton

-
-public static TextButton createButton(java.lang.String name,
-                                      java.lang.String value)
-
-
-
-
-
-
- -

-getName

-
-public java.lang.String getName()
-
-
- -
Returns:
the name
-
-
-
- -

-setName

-
-public void setName(java.lang.String name)
-
-
-
Parameters:
name - the name to set
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
-
- -

-setValue

-
-public void setValue(java.lang.String value)
-
-
-
Parameters:
value - the value to set
-
-
-
- -

-getCssClass

-
-public java.lang.String getCssClass()
-
-
- -
Returns:
the cssClass
-
-
-
- -

-setCssClass

-
-public void setCssClass(java.lang.String cssClass)
-
-
-
Parameters:
cssClass - the cssClass to set
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/class-use/Button.html b/docs/javadocs/net/authorize/sim/button/class-use/Button.html deleted file mode 100644 index 5b7e1ec..0000000 --- a/docs/javadocs/net/authorize/sim/button/class-use/Button.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - -Uses of Class net.authorize.sim.button.Button (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.sim.button.Button

-
- - - - - - - - - - - - - -
-Packages that use Button
net.authorize.sim  
net.authorize.sim.button  
-  -

- - - - - -
-Uses of Button in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type Button
- java.lang.StringTransaction.createForm(java.lang.String formName, - java.lang.String formId, - Button button) - -
-          Return an HTML form with all inputs.
-  -

- - - - - -
-Uses of Button in net.authorize.sim.button
-  -

- - - - - - - - - - - - - -
Subclasses of Button in net.authorize.sim.button
- classImageButton - -
-           
- classTextButton - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/class-use/ButtonType.html b/docs/javadocs/net/authorize/sim/button/class-use/ButtonType.html deleted file mode 100644 index dfce506..0000000 --- a/docs/javadocs/net/authorize/sim/button/class-use/ButtonType.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - -Uses of Class net.authorize.sim.button.ButtonType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.sim.button.ButtonType

-
- - - - - - - - - -
-Packages that use ButtonType
net.authorize.sim.button  
-  -

- - - - - -
-Uses of ButtonType in net.authorize.sim.button
-  -

- - - - - - - - - -
Fields in net.authorize.sim.button declared as ButtonType
-protected  ButtonTypeButton.buttonType - -
-           
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.sim.button that return ButtonType
- ButtonTypeButton.getButtonType() - -
-           
-static ButtonTypeButtonType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static ButtonType[]ButtonType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/class-use/ImageButton.html b/docs/javadocs/net/authorize/sim/button/class-use/ImageButton.html deleted file mode 100644 index d3bcf3c..0000000 --- a/docs/javadocs/net/authorize/sim/button/class-use/ImageButton.html +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - -Uses of Class net.authorize.sim.button.ImageButton (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.sim.button.ImageButton

-
- - - - - - - - - -
-Packages that use ImageButton
net.authorize.sim.button  
-  -

- - - - - -
-Uses of ImageButton in net.authorize.sim.button
-  -

- - - - - - - - - -
Methods in net.authorize.sim.button that return ImageButton
-static ImageButtonImageButton.createButton(java.lang.String src, - int width, - int height, - int border, - java.lang.String alt) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/class-use/TextButton.html b/docs/javadocs/net/authorize/sim/button/class-use/TextButton.html deleted file mode 100644 index 9407af3..0000000 --- a/docs/javadocs/net/authorize/sim/button/class-use/TextButton.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.sim.button.TextButton (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.sim.button.TextButton

-
- - - - - - - - - -
-Packages that use TextButton
net.authorize.sim.button  
-  -

- - - - - -
-Uses of TextButton in net.authorize.sim.button
-  -

- - - - - - - - - -
Methods in net.authorize.sim.button that return TextButton
-static TextButtonTextButton.createButton(java.lang.String name, - java.lang.String value) - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/package-frame.html b/docs/javadocs/net/authorize/sim/button/package-frame.html deleted file mode 100644 index d8b593e..0000000 --- a/docs/javadocs/net/authorize/sim/button/package-frame.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - -net.authorize.sim.button (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.sim.button - - - - -
-Classes  - -
-Button -
-ImageButton -
-TextButton
- - - - - - -
-Enums  - -
-ButtonType
- - - - diff --git a/docs/javadocs/net/authorize/sim/button/package-summary.html b/docs/javadocs/net/authorize/sim/button/package-summary.html deleted file mode 100644 index 4309874..0000000 --- a/docs/javadocs/net/authorize/sim/button/package-summary.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - -net.authorize.sim.button (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.sim.button -

- - - - - - - - - - - - - - - - - -
-Class Summary
Button 
ImageButton 
TextButton 
-  - -

- - - - - - - - - -
-Enum Summary
ButtonType 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/package-tree.html b/docs/javadocs/net/authorize/sim/button/package-tree.html deleted file mode 100644 index 214e7d1..0000000 --- a/docs/javadocs/net/authorize/sim/button/package-tree.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -net.authorize.sim.button Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.sim.button -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/button/package-use.html b/docs/javadocs/net/authorize/sim/button/package-use.html deleted file mode 100644 index a92b815..0000000 --- a/docs/javadocs/net/authorize/sim/button/package-use.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - -Uses of Package net.authorize.sim.button (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.sim.button

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.sim.button
net.authorize.sim  
net.authorize.sim.button  
-  -

- - - - - - - - -
-Classes in net.authorize.sim.button used by net.authorize.sim
Button - -
-           
-  -

- - - - - - - - - - - - - - - - - -
-Classes in net.authorize.sim.button used by net.authorize.sim.button
Button - -
-           
ButtonType - -
-           
ImageButton - -
-           
TextButton - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/class-use/Fingerprint.html b/docs/javadocs/net/authorize/sim/class-use/Fingerprint.html deleted file mode 100644 index b30e80f..0000000 --- a/docs/javadocs/net/authorize/sim/class-use/Fingerprint.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - -Uses of Class net.authorize.sim.Fingerprint (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.sim.Fingerprint

-
- - - - - - - - - -
-Packages that use Fingerprint
net.authorize.sim  
-  -

- - - - - -
-Uses of Fingerprint in net.authorize.sim
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.sim that return Fingerprint
-static FingerprintFingerprint.createFingerprint(Merchant merchant, - long sequence, - java.math.BigDecimal amount) - -
-          Create a fingerprint with object based fields.
-static FingerprintFingerprint.createFingerprint(java.lang.String loginID, - java.lang.String transactionKey, - long sequence, - java.lang.String amount) - -
-          Creates a fingerprint with raw data fields.
- FingerprintTransaction.getFingerprint() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/class-use/LinkMethod.html b/docs/javadocs/net/authorize/sim/class-use/LinkMethod.html deleted file mode 100644 index 794470e..0000000 --- a/docs/javadocs/net/authorize/sim/class-use/LinkMethod.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - -Uses of Class net.authorize.sim.LinkMethod (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.sim.LinkMethod

-
- - - - - - - - - - - - - -
-Packages that use LinkMethod
net.authorize.data.sim  
net.authorize.sim  
-  -

- - - - - -
-Uses of LinkMethod in net.authorize.data.sim
-  -

- - - - - - - - - -
Methods in net.authorize.data.sim that return LinkMethod
- LinkMethodHostedReceiptPageSettings.getLinkMethod() - -
-           
-  -

- - - - - - - - - -
Methods in net.authorize.data.sim with parameters of type LinkMethod
- voidHostedReceiptPageSettings.setLinkMethod(LinkMethod linkMethod) - -
-           
-  -

- - - - - -
-Uses of LinkMethod in net.authorize.sim
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.sim that return LinkMethod
-static LinkMethodLinkMethod.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static LinkMethod[]LinkMethod.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/class-use/Result.html b/docs/javadocs/net/authorize/sim/class-use/Result.html deleted file mode 100644 index 6897168..0000000 --- a/docs/javadocs/net/authorize/sim/class-use/Result.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - -Uses of Class net.authorize.sim.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.sim.Result

-
- - - - - - - - - -
-Packages that use Result
net.authorize.sim  
-  -

- - - - - -
-Uses of Result in net.authorize.sim
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.sim that return Result
-static ResultResult.createResult(java.util.Map<ResponseField,java.lang.String> responseMap) - -
-           
-static ResultResult.createResult(java.lang.String apiLoginId, - java.lang.String merchantMD5Key, - java.util.Map<java.lang.String,java.lang.String[]> responseMap) - -
-          Create a result for SIM based on the response map.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/class-use/Transaction.html b/docs/javadocs/net/authorize/sim/class-use/Transaction.html deleted file mode 100644 index ac19c96..0000000 --- a/docs/javadocs/net/authorize/sim/class-use/Transaction.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - -Uses of Class net.authorize.sim.Transaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.sim.Transaction

-
- - - - - - - - - - - - - -
-Packages that use Transaction
net.authorize  
net.authorize.sim  
-  -

- - - - - -
-Uses of Transaction in net.authorize
-  -

- - - - - - - - - -
Methods in net.authorize that return Transaction
- TransactionMerchant.createSIMTransaction(TransactionType transactionType, - long fingerPrintSequence, - java.math.BigDecimal amount) - -
-          Creates a new SIM Transaction.
-  -

- - - - - -
-Uses of Transaction in net.authorize.sim
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.sim that return Transaction
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - java.math.BigDecimal amount) - -
-          Create a Transaction for a merchant.
-static TransactionTransaction.createTransaction(Merchant merchant, - TransactionType transactionType, - long fingerPrintSequence, - java.math.BigDecimal amount) - -
-          Create a Transaction for a given merchant.
-static TransactionTransaction.createTransaction(Transaction transaction, - java.util.Hashtable<ResponseField,java.lang.String> responseMap) - -
-          Create a transaction from a responseMap.
-  -

- - - - - - - - - -
Methods in net.authorize.sim with parameters of type Transaction
-static TransactionTransaction.createTransaction(Transaction transaction, - java.util.Hashtable<ResponseField,java.lang.String> responseMap) - -
-          Create a transaction from a responseMap.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/package-frame.html b/docs/javadocs/net/authorize/sim/package-frame.html deleted file mode 100644 index 5aab7a3..0000000 --- a/docs/javadocs/net/authorize/sim/package-frame.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - -net.authorize.sim (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.sim - - - - -
-Classes  - -
-Fingerprint -
-Result -
-Transaction
- - - - - - -
-Enums  - -
-LinkMethod
- - - - diff --git a/docs/javadocs/net/authorize/sim/package-summary.html b/docs/javadocs/net/authorize/sim/package-summary.html deleted file mode 100644 index 1197671..0000000 --- a/docs/javadocs/net/authorize/sim/package-summary.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - -net.authorize.sim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.sim -

- - - - - - - - - - - - - - - - - -
-Class Summary
Fingerprint 
Result 
Transaction 
-  - -

- - - - - - - - - -
-Enum Summary
LinkMethodThe type of link back to the merchant's website.
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/package-tree.html b/docs/javadocs/net/authorize/sim/package-tree.html deleted file mode 100644 index 86ffbbe..0000000 --- a/docs/javadocs/net/authorize/sim/package-tree.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - -net.authorize.sim Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.sim -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/sim/package-use.html b/docs/javadocs/net/authorize/sim/package-use.html deleted file mode 100644 index fe48b0b..0000000 --- a/docs/javadocs/net/authorize/sim/package-use.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - -Uses of Package net.authorize.sim (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.sim

-
- - - - - - - - - - - - - - - - - -
-Packages that use net.authorize.sim
net.authorize  
net.authorize.data.sim  
net.authorize.sim  
-  -

- - - - - - - - -
-Classes in net.authorize.sim used by net.authorize
Transaction - -
-           
-  -

- - - - - - - - -
-Classes in net.authorize.sim used by net.authorize.data.sim
LinkMethod - -
-          The type of link back to the merchant's website.
-  -

- - - - - - - - - - - - - - - - - -
-Classes in net.authorize.sim used by net.authorize.sim
Fingerprint - -
-           
LinkMethod - -
-          The type of link back to the merchant's website.
Result - -
-           
Transaction - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/BasicXmlDocument.html b/docs/javadocs/net/authorize/util/BasicXmlDocument.html deleted file mode 100644 index 9c8b19d..0000000 --- a/docs/javadocs/net/authorize/util/BasicXmlDocument.html +++ /dev/null @@ -1,750 +0,0 @@ - - - - - - -BasicXmlDocument (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.util -
-Class BasicXmlDocument

-
-java.lang.Object
-  extended by net.authorize.util.BasicXmlDocument
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
-
public class BasicXmlDocument
extends java.lang.Object
implements java.io.Serializable
- - -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - -
-Constructor Summary
BasicXmlDocument() - -
-           
BasicXmlDocument(java.lang.String sourceFile) - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidaddError(java.lang.String message) - -
-           
- org.w3c.dom.ElementcreateElement(java.lang.String name) - -
-           
- java.lang.Stringdump() - -
-           
- java.lang.Stringdump(boolean collapse) - -
-           
- booleandumpToDisk(java.lang.String fileName) - -
-           
- booleandumpToDisk(java.lang.String fileName, - boolean collapse) - -
-           
- org.w3c.dom.DocumentgetDocument() - -
-           
- org.w3c.dom.ElementgetDocumentElement() - -
-           
-static java.lang.StringgetElementText(org.w3c.dom.Element parent_el, - java.lang.String element_name) - -
-          Helper for getting element text from a parent.
-static java.lang.StringgetElementText(org.w3c.dom.Element parent_el, - java.lang.String element_name, - boolean checkDeepMatchList) - -
-          Helper for getting element text from a parent.
- java.util.ArrayList<java.lang.String>getErrors() - -
-           
- longgetParseTime() - -
-           
- booleanisAccessible() - -
-           
- booleanparse() - -
-           
- booleanparse(java.io.File in_file) - -
-           
- booleanparse(java.io.InputStream in) - -
-           
- booleanparse(java.lang.String xmlFile) - -
-           
- booleanparseBytes(byte[] xmlBytes) - -
-           
- booleanparseString(java.lang.String xmlValue) - -
-           
- booleanremoveChildren(org.w3c.dom.Node ref) - -
-           
- voidsaveDocument(java.lang.String fileName) - -
-           
- voidsetResolvePath(java.lang.String p) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-BasicXmlDocument

-
-public BasicXmlDocument()
-
-
-
- -

-BasicXmlDocument

-
-public BasicXmlDocument(java.lang.String sourceFile)
-
-
- - - - - - - - -
-Method Detail
- -

-setResolvePath

-
-public void setResolvePath(java.lang.String p)
-
-
-
-
-
-
-
-
-
- -

-getParseTime

-
-public long getParseTime()
-
-
-
-
-
-
-
-
-
- -

-isAccessible

-
-public boolean isAccessible()
-
-
-
-
-
-
-
-
-
- -

-getDocument

-
-public org.w3c.dom.Document getDocument()
-
-
-
-
-
-
-
-
-
- -

-getDocumentElement

-
-public org.w3c.dom.Element getDocumentElement()
-
-
-
-
-
-
-
-
-
- -

-createElement

-
-public org.w3c.dom.Element createElement(java.lang.String name)
-
-
-
-
-
-
-
-
-
- -

-getErrors

-
-public java.util.ArrayList<java.lang.String> getErrors()
-
-
-
-
-
-
-
-
-
- -

-addError

-
-public void addError(java.lang.String message)
-
-
-
-
-
-
-
-
-
- -

-removeChildren

-
-public boolean removeChildren(org.w3c.dom.Node ref)
-
-
-
-
-
-
-
-
-
- -

-parse

-
-public boolean parse()
-
-
-
-
-
-
-
-
-
- -

-parse

-
-public boolean parse(java.lang.String xmlFile)
-
-
-
-
-
-
-
-
-
- -

-saveDocument

-
-public void saveDocument(java.lang.String fileName)
-
-
-
-
-
-
-
-
-
- -

-parse

-
-public boolean parse(java.io.File in_file)
-
-
-
-
-
-
-
-
-
- -

-parse

-
-public boolean parse(java.io.InputStream in)
-
-
-
-
-
-
-
-
-
- -

-parseString

-
-public boolean parseString(java.lang.String xmlValue)
-
-
-
-
-
-
-
-
-
- -

-parseBytes

-
-public boolean parseBytes(byte[] xmlBytes)
-
-
-
-
-
-
-
-
-
- -

-dump

-
-public java.lang.String dump()
-
-
-
-
-
-
-
-
-
- -

-dump

-
-public java.lang.String dump(boolean collapse)
-
-
-
-
-
-
-
-
-
- -

-dumpToDisk

-
-public boolean dumpToDisk(java.lang.String fileName)
-
-
-
-
-
-
-
-
-
- -

-dumpToDisk

-
-public boolean dumpToDisk(java.lang.String fileName,
-                          boolean collapse)
-
-
-
-
-
-
-
-
-
- -

-getElementText

-
-public static java.lang.String getElementText(org.w3c.dom.Element parent_el,
-                                              java.lang.String element_name)
-
-
Helper for getting element text from a parent. -

-

-
-
-
-
Parameters:
parent_el -
element_name - -
Returns:
element text
-
-
-
- -

-getElementText

-
-public static java.lang.String getElementText(org.w3c.dom.Element parent_el,
-                                              java.lang.String element_name,
-                                              boolean checkDeepMatchList)
-
-
Helper for getting element text from a parent. -

-

-
-
-
-
Parameters:
parent_el -
element_name -
checkDeepMatchList - - goes 1 level deeper to check for a match if there's multiple matches -
Returns:
element text
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/DateUtil.html b/docs/javadocs/net/authorize/util/DateUtil.html deleted file mode 100644 index 65ada63..0000000 --- a/docs/javadocs/net/authorize/util/DateUtil.html +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - -DateUtil (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.util -
-Class DateUtil

-
-java.lang.Object
-  extended by net.authorize.util.DateUtil
-
-
-
-
public class DateUtil
extends java.lang.Object
- - -

-


- -

- - - - - - - - - - - -
-Constructor Summary
DateUtil() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static java.util.DategetDateFromFormattedDate(java.lang.String dateStr, - java.lang.String format) - -
-           
-static java.lang.StringgetFormattedDate(java.util.Date date, - java.lang.String format) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-DateUtil

-
-public DateUtil()
-
-
- - - - - - - - -
-Method Detail
- -

-getDateFromFormattedDate

-
-public static java.util.Date getDateFromFormattedDate(java.lang.String dateStr,
-                                                      java.lang.String format)
-
-
-
-
-
-
- -

-getFormattedDate

-
-public static java.lang.String getFormattedDate(java.util.Date date,
-                                                java.lang.String format)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/HttpClient.html b/docs/javadocs/net/authorize/util/HttpClient.html deleted file mode 100644 index 105393a..0000000 --- a/docs/javadocs/net/authorize/util/HttpClient.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - -HttpClient (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.util -
-Class HttpClient

-
-java.lang.Object
-  extended by net.authorize.util.HttpClient
-
-
-
-
public class HttpClient
extends java.lang.Object
- - -

-Transportation object used to facilitate the communication with the respective gateway. -

- -

-


- -

- - - - - - - - - - - - - - - - - - - -
-Field Summary
-static java.lang.StringENCODING - -
-           
-static intHTTP_CONNECTION_TIMEOUT - -
-           
-static intHTTP_SOCKET_CONNECTION_TIMEOUT - -
-           
-  - - - - - - - - - - -
-Constructor Summary
HttpClient() - -
-           
-  - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static java.lang.StringconvertStreamToLoggableString(ITransaction transaction, - java.io.InputStream responseInputStream) - -
-          Converts a response inputstream into a string.
-static java.util.Map<ResponseField,java.lang.String>execute(Environment environment, - ITransaction transaction) - -
-          Executes a Transaction against a given Environment.
-static java.lang.StringexecuteXML(Environment environment, - ITransaction transaction) - -
-          Executes a Transaction against a given Environment.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-ENCODING

-
-public static final java.lang.String ENCODING
-
-
-
See Also:
Constant Field Values
-
-
- -

-HTTP_CONNECTION_TIMEOUT

-
-public static int HTTP_CONNECTION_TIMEOUT
-
-
-
-
-
- -

-HTTP_SOCKET_CONNECTION_TIMEOUT

-
-public static int HTTP_SOCKET_CONNECTION_TIMEOUT
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-HttpClient

-
-public HttpClient()
-
-
- - - - - - - - -
-Method Detail
- -

-execute

-
-public static java.util.Map<ResponseField,java.lang.String> execute(Environment environment,
-                                                                    ITransaction transaction)
-
-
Executes a Transaction against a given Environment. -

-

-
Parameters:
environment -
transaction - -
Returns:
Return a HashMap that contains semi-processed data after a request was posted.
-
-
-
- -

-convertStreamToLoggableString

-
-public static java.lang.String convertStreamToLoggableString(ITransaction transaction,
-                                                             java.io.InputStream responseInputStream)
-
-
Converts a response inputstream into a string. -

-

-
Parameters:
transaction - Transaction object
responseInputStream - response input stream -
Returns:
string containing the response with sensitive data removed
-
-
-
- -

-executeXML

-
-public static java.lang.String executeXML(Environment environment,
-                                          ITransaction transaction)
-
-
Executes a Transaction against a given Environment. -

-

-
Parameters:
environment -
transaction - -
Returns:
Return a HashMap that contains semi-processed data after a request was posted.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/Luhn.html b/docs/javadocs/net/authorize/util/Luhn.html deleted file mode 100644 index 7d1e692..0000000 --- a/docs/javadocs/net/authorize/util/Luhn.html +++ /dev/null @@ -1,325 +0,0 @@ - - - - - - -Luhn (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.util -
-Class Luhn

-
-java.lang.Object
-  extended by net.authorize.util.Luhn
-
-
-
-
public class Luhn
extends java.lang.Object
- - -

-


- -

- - - - - - - - - - - - -
-Constructor Summary
-protected Luhn() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static CardTypegetCardType(java.lang.String cardNumber) - -
-          Return the CardType by inspecting the first digits of the card number.
-static booleanisCardValid(java.lang.String cardNumber) - -
-          Return true if the card number provided passes the Luhn (mod 10) algorithm.
-static java.lang.StringsafeFormat(char maskChar, - java.lang.String creditCardNumber) - -
-          Format a credit card number for display.
-static java.lang.StringstripNonDigits(java.lang.String cardNumber) - -
-          Strips non-digits from the cardNumber provided.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-Luhn

-
-protected Luhn()
-
-
- - - - - - - - -
-Method Detail
- -

-stripNonDigits

-
-public static java.lang.String stripNonDigits(java.lang.String cardNumber)
-
-
Strips non-digits from the cardNumber provided. -

-

-
Parameters:
cardNumber - -
Returns:
Return the cardNumber string stripped of everything but numeric digits.
-
-
-
- -

-getCardType

-
-public static CardType getCardType(java.lang.String cardNumber)
-
-
Return the CardType by inspecting the first digits of the card number. -

-

-
Parameters:
cardNumber - -
Returns:
Return the CardType
-
-
-
- -

-isCardValid

-
-public static boolean isCardValid(java.lang.String cardNumber)
-
-
Return true if the card number provided passes the Luhn (mod 10) algorithm. -

-

-
Parameters:
cardNumber - -
Returns:
true if the card is valid
-
-
-
- -

-safeFormat

-
-public static java.lang.String safeFormat(char maskChar,
-                                          java.lang.String creditCardNumber)
-
-
Format a credit card number for display. -

-

-
Parameters:
maskChar - character to mask credit card number with
creditCardNumber - -
Returns:
formatted and masked out account number
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/ResponseParser.html b/docs/javadocs/net/authorize/util/ResponseParser.html deleted file mode 100644 index c6a2851..0000000 --- a/docs/javadocs/net/authorize/util/ResponseParser.html +++ /dev/null @@ -1,283 +0,0 @@ - - - - - - -ResponseParser (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.util -
-Class ResponseParser

-
-java.lang.Object
-  extended by net.authorize.util.ResponseParser
-
-
-
-
public class ResponseParser
extends java.lang.Object
- - -

-Parses a response string from Authorize.net into a Map of values. -

- -

-


- -

- - - - - - - - - - - -
-Constructor Summary
ResponseParser() - -
-           
-  - - - - - - - - - - - - - - - -
-Method Summary
-static java.util.Map<ResponseField,java.lang.String>parseResponseString(java.lang.String responseString) - -
-          Take a string and parses it into a Map keyed on ResponseFields.
-static java.util.Map<ResponseField,java.lang.String>parseResponseString(java.lang.String responseString, - java.lang.String delimiter) - -
-          Take a string and parses it into a Map keyed on ResponseFields.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-ResponseParser

-
-public ResponseParser()
-
-
- - - - - - - - -
-Method Detail
- -

-parseResponseString

-
-public static java.util.Map<ResponseField,java.lang.String> parseResponseString(java.lang.String responseString)
-
-
Take a string and parses it into a Map keyed on ResponseFields. -

-

-
Parameters:
responseString - -
Returns:
Map of response values.
-
-
-
- -

-parseResponseString

-
-public static java.util.Map<ResponseField,java.lang.String> parseResponseString(java.lang.String responseString,
-                                                                                java.lang.String delimiter)
-
-
Take a string and parses it into a Map keyed on ResponseFields. -

-

-
Parameters:
responseString -
delimiter - -
Returns:
Map of response values.
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/StringUtils.html b/docs/javadocs/net/authorize/util/StringUtils.html deleted file mode 100644 index 19ef484..0000000 --- a/docs/javadocs/net/authorize/util/StringUtils.html +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - -StringUtils (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.util -
-Class StringUtils

-
-java.lang.Object
-  extended by net.authorize.util.StringUtils
-
-
-
-
public class StringUtils
extends java.lang.Object
- - -

-


- -

- - - - - - - - - - - -
-Constructor Summary
StringUtils() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static voidaddCharEntity(int i, - java.lang.StringBuilder sb) - -
-          Convert integer to char entity
-static booleanisEmpty(java.lang.String str) - -
-          Return true if the string is null or "".
-static booleanisNotEmpty(java.lang.String str) - -
-          Return true if the string is not null and not == "".
-static booleanisTrue(java.lang.String str) - -
-          Returns true if the string is 1 or "true"
-static java.lang.StringsanitizeString(java.lang.String str) - -
-          Sanitize strings for output
-static java.lang.StringsubString(java.lang.String str, - int maxLength) - -
-          Returns a sub string of the string "str" that has a length that's less - than the maxLength, but not larger than it's current length.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-StringUtils

-
-public StringUtils()
-
-
- - - - - - - - -
-Method Detail
- -

-sanitizeString

-
-public static java.lang.String sanitizeString(java.lang.String str)
-
-
Sanitize strings for output -

-

-
Parameters:
str - string to sanitize. -
Returns:
sanitized string
-
-
-
- -

-addCharEntity

-
-public static void addCharEntity(int i,
-                                 java.lang.StringBuilder sb)
-
-
Convert integer to char entity -

-

-
Parameters:
i -
sb -
-
-
-
- -

-isEmpty

-
-public static boolean isEmpty(java.lang.String str)
-
-
Return true if the string is null or "". -

-

-
Parameters:
str - -
Returns:
true if the string is "empty"
-
-
-
- -

-isNotEmpty

-
-public static boolean isNotEmpty(java.lang.String str)
-
-
Return true if the string is not null and not == "". -

-

-
Parameters:
str - -
Returns:
true if the string is NOT "empty"
-
-
-
- -

-isTrue

-
-public static boolean isTrue(java.lang.String str)
-
-
Returns true if the string is 1 or "true" -

-

-
Parameters:
str - -
Returns:
true if the string is 1 or "true"
-
-
-
- -

-subString

-
-public static java.lang.String subString(java.lang.String str,
-                                         int maxLength)
-
-
Returns a sub string of the string "str" that has a length that's less - than the maxLength, but not larger than it's current length. -

-

-
Parameters:
str -
maxLength - -
Returns:
a substring of str
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/XmlTreeUtil.html b/docs/javadocs/net/authorize/util/XmlTreeUtil.html deleted file mode 100644 index dfa17d4..0000000 --- a/docs/javadocs/net/authorize/util/XmlTreeUtil.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - -XmlTreeUtil (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.util -
-Class XmlTreeUtil

-
-java.lang.Object
-  extended by net.authorize.util.XmlTreeUtil
-
-
-
-
public class XmlTreeUtil
extends java.lang.Object
- - -

-


- -

- - - - - - - - - - - -
-Constructor Summary
XmlTreeUtil() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- java.lang.StringprintTree(org.w3c.dom.Document XMLDocument) - -
-           
- voidprintTree(org.w3c.dom.Document XMLDocument, - java.io.OutputStream os) - -
-           
- byte[]printTreeBytes(org.w3c.dom.Document XMLDocument) - -
-           
- voidsetCollapsed() - -
-           
- voidsetPrintDocumentNode(boolean b) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Constructor Detail
- -

-XmlTreeUtil

-
-public XmlTreeUtil()
-
-
- - - - - - - - -
-Method Detail
- -

-setPrintDocumentNode

-
-public void setPrintDocumentNode(boolean b)
-
-
-
-
-
-
- -

-setCollapsed

-
-public void setCollapsed()
-
-
-
-
-
-
- -

-printTree

-
-public java.lang.String printTree(org.w3c.dom.Document XMLDocument)
-
-
-
-
-
-
- -

-printTreeBytes

-
-public byte[] printTreeBytes(org.w3c.dom.Document XMLDocument)
-
-
-
-
-
-
- -

-printTree

-
-public void printTree(org.w3c.dom.Document XMLDocument,
-                      java.io.OutputStream os)
-
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/class-use/BasicXmlDocument.html b/docs/javadocs/net/authorize/util/class-use/BasicXmlDocument.html deleted file mode 100644 index 48104b7..0000000 --- a/docs/javadocs/net/authorize/util/class-use/BasicXmlDocument.html +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - -Uses of Class net.authorize.util.BasicXmlDocument (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.util.BasicXmlDocument

-
- - - - - - - - - - - - - - - - - -
-Packages that use BasicXmlDocument
net.authorize.notification  
net.authorize.sim  
net.authorize.xml  
-  -

- - - - - -
-Uses of BasicXmlDocument in net.authorize.notification
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.notification with parameters of type BasicXmlDocument
-protected  voidTransaction.addCustomerEmail(BasicXmlDocument document) - -
-          Add the customerEmail to the request.
-protected  voidTransaction.addEmailSettings(BasicXmlDocument document) - -
-          Add emailSettings to the request.
-protected  voidTransaction.addTransId(BasicXmlDocument document) - -
-          Add the transId to the request.
-  -

- - - - - -
-Uses of BasicXmlDocument in net.authorize.sim
-  -

- - - - - - - - - -
Methods in net.authorize.sim that return BasicXmlDocument
- BasicXmlDocumentTransaction.getCurrentResponse() - -
-          Return a response XML doc if the transaction was a Card Present transaction.
-  -

- - - - - -
-Uses of BasicXmlDocument in net.authorize.xml
-  -

- - - - - - - - - - - - - -
Fields in net.authorize.xml declared as BasicXmlDocument
-protected  BasicXmlDocumentXMLTransaction.currentRequest - -
-           
-protected  BasicXmlDocumentResult.xmlResponseDoc - -
-           
-  -

- - - - - - - - - - - - - -
Methods in net.authorize.xml that return BasicXmlDocument
- BasicXmlDocumentXMLTransaction.getCurrentRequest() - -
-          Returns the current request.
-protected  BasicXmlDocumentResult.getXmlResponseDoc() - -
-          Return the XML response doc.
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.xml with parameters of type BasicXmlDocument
-protected  voidXMLTransaction.addAuthentication(BasicXmlDocument document) - -
-          Add authentication to the request.
-protected  voidXMLTransaction.addAuthentication(BasicXmlDocument document, - boolean addMobileDeviceId) - -
-          Add authentication to the request.
-protected  voidXMLTransaction.addRefId(BasicXmlDocument document) - -
-          Add the refId to the request.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/class-use/DateUtil.html b/docs/javadocs/net/authorize/util/class-use/DateUtil.html deleted file mode 100644 index 298b09f..0000000 --- a/docs/javadocs/net/authorize/util/class-use/DateUtil.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -Uses of Class net.authorize.util.DateUtil (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.util.DateUtil

-
-No usage of net.authorize.util.DateUtil -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/class-use/HttpClient.html b/docs/javadocs/net/authorize/util/class-use/HttpClient.html deleted file mode 100644 index 2ceff0a..0000000 --- a/docs/javadocs/net/authorize/util/class-use/HttpClient.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -Uses of Class net.authorize.util.HttpClient (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.util.HttpClient

-
-No usage of net.authorize.util.HttpClient -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/class-use/Luhn.html b/docs/javadocs/net/authorize/util/class-use/Luhn.html deleted file mode 100644 index 5e01283..0000000 --- a/docs/javadocs/net/authorize/util/class-use/Luhn.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -Uses of Class net.authorize.util.Luhn (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.util.Luhn

-
-No usage of net.authorize.util.Luhn -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/class-use/ResponseParser.html b/docs/javadocs/net/authorize/util/class-use/ResponseParser.html deleted file mode 100644 index cb8a7ff..0000000 --- a/docs/javadocs/net/authorize/util/class-use/ResponseParser.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -Uses of Class net.authorize.util.ResponseParser (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.util.ResponseParser

-
-No usage of net.authorize.util.ResponseParser -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/class-use/StringUtils.html b/docs/javadocs/net/authorize/util/class-use/StringUtils.html deleted file mode 100644 index 61e3c61..0000000 --- a/docs/javadocs/net/authorize/util/class-use/StringUtils.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -Uses of Class net.authorize.util.StringUtils (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.util.StringUtils

-
-No usage of net.authorize.util.StringUtils -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/class-use/XmlTreeUtil.html b/docs/javadocs/net/authorize/util/class-use/XmlTreeUtil.html deleted file mode 100644 index 211dc31..0000000 --- a/docs/javadocs/net/authorize/util/class-use/XmlTreeUtil.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - -Uses of Class net.authorize.util.XmlTreeUtil (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.util.XmlTreeUtil

-
-No usage of net.authorize.util.XmlTreeUtil -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/package-frame.html b/docs/javadocs/net/authorize/util/package-frame.html deleted file mode 100644 index f2732a8..0000000 --- a/docs/javadocs/net/authorize/util/package-frame.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - -net.authorize.util (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.util - - - - -
-Classes  - -
-BasicXmlDocument -
-DateUtil -
-HttpClient -
-Luhn -
-ResponseParser -
-StringUtils -
-XmlTreeUtil
- - - - diff --git a/docs/javadocs/net/authorize/util/package-summary.html b/docs/javadocs/net/authorize/util/package-summary.html deleted file mode 100644 index 500b17d..0000000 --- a/docs/javadocs/net/authorize/util/package-summary.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -net.authorize.util (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.util -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Class Summary
BasicXmlDocument 
DateUtil 
HttpClientTransportation object used to facilitate the communication with the respective gateway.
Luhn 
ResponseParserParses a response string from Authorize.net into a Map of values.
StringUtils 
XmlTreeUtil 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/package-tree.html b/docs/javadocs/net/authorize/util/package-tree.html deleted file mode 100644 index 21c5e88..0000000 --- a/docs/javadocs/net/authorize/util/package-tree.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -net.authorize.util Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.util -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/util/package-use.html b/docs/javadocs/net/authorize/util/package-use.html deleted file mode 100644 index a8ef2ea..0000000 --- a/docs/javadocs/net/authorize/util/package-use.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - -Uses of Package net.authorize.util (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.util

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.util
net.authorize.notification  
net.authorize.xml  
-  -

- - - - - - - - -
-Classes in net.authorize.util used by net.authorize.notification
BasicXmlDocument - -
-           
-  -

- - - - - - - - -
-Classes in net.authorize.util used by net.authorize.xml
BasicXmlDocument - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/MessageType.html b/docs/javadocs/net/authorize/xml/MessageType.html deleted file mode 100644 index dbbb007..0000000 --- a/docs/javadocs/net/authorize/xml/MessageType.html +++ /dev/null @@ -1,1155 +0,0 @@ - - - - - - -MessageType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.xml -
-Enum MessageType

-
-java.lang.Object
-  extended by java.lang.Enum<MessageType>
-      extended by net.authorize.xml.MessageType
-
-
-
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MessageType>
-
-
-
-
public enum MessageType
extends java.lang.Enum<MessageType>
- - -

-


- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Enum Constant Summary
E00000 - -
-           
E00001 - -
-           
E00002 - -
-           
E00003 - -
-           
E00004 - -
-           
E00005 - -
-           
E00006 - -
-           
E00007 - -
-           
E00008 - -
-           
E00009 - -
-           
E00010 - -
-           
E00011 - -
-           
E00012 - -
-           
E00013 - -
-           
E00014 - -
-           
E00015 - -
-           
E00016 - -
-           
E00017 - -
-           
E00018 - -
-           
E00019 - -
-           
E00020 - -
-           
E00021 - -
-           
E00022 - -
-           
E00024 - -
-           
E00025 - -
-           
E00026 - -
-           
E00027 - -
-           
E00028 - -
-           
E00029 - -
-           
E00030 - -
-           
E00031 - -
-           
E00032 - -
-           
E00033 - -
-           
E00034 - -
-           
E00035 - -
-           
E00036 - -
-           
E00037 - -
-           
E00038 - -
-           
E00045 - -
-           
E00054 - -
-           
E00055 - -
-           
E00056 - -
-           
E00057 - -
-           
E00058 - -
-           
E00059 - -
-           
I00001 - -
-           
I00003 - -
-           
I00005 - -
-           
I00006 - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static MessageTypefindByValue(java.lang.String value) - -
-          Lookup a response reason code by the reason response code itself.
- java.lang.StringgetText() - -
-           
- java.lang.StringgetValue() - -
-           
- voidsetText(java.lang.String text) - -
-           
-static MessageTypevalueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static MessageType[]values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
- - - - - - - -
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- - - - - - - -
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-  -

- - - - - - - - -
-Enum Constant Detail
- -

-E00000

-
-public static final MessageType E00000
-
-
-
-
-
- -

-I00001

-
-public static final MessageType I00001
-
-
-
-
-
- -

-I00003

-
-public static final MessageType I00003
-
-
-
-
-
- -

-I00005

-
-public static final MessageType I00005
-
-
-
-
-
- -

-I00006

-
-public static final MessageType I00006
-
-
-
-
-
- -

-E00001

-
-public static final MessageType E00001
-
-
-
-
-
- -

-E00002

-
-public static final MessageType E00002
-
-
-
-
-
- -

-E00003

-
-public static final MessageType E00003
-
-
-
-
-
- -

-E00004

-
-public static final MessageType E00004
-
-
-
-
-
- -

-E00005

-
-public static final MessageType E00005
-
-
-
-
-
- -

-E00006

-
-public static final MessageType E00006
-
-
-
-
-
- -

-E00007

-
-public static final MessageType E00007
-
-
-
-
-
- -

-E00008

-
-public static final MessageType E00008
-
-
-
-
-
- -

-E00009

-
-public static final MessageType E00009
-
-
-
-
-
- -

-E00010

-
-public static final MessageType E00010
-
-
-
-
-
- -

-E00011

-
-public static final MessageType E00011
-
-
-
-
-
- -

-E00012

-
-public static final MessageType E00012
-
-
-
-
-
- -

-E00013

-
-public static final MessageType E00013
-
-
-
-
-
- -

-E00014

-
-public static final MessageType E00014
-
-
-
-
-
- -

-E00015

-
-public static final MessageType E00015
-
-
-
-
-
- -

-E00016

-
-public static final MessageType E00016
-
-
-
-
-
- -

-E00017

-
-public static final MessageType E00017
-
-
-
-
-
- -

-E00018

-
-public static final MessageType E00018
-
-
-
-
-
- -

-E00019

-
-public static final MessageType E00019
-
-
-
-
-
- -

-E00020

-
-public static final MessageType E00020
-
-
-
-
-
- -

-E00021

-
-public static final MessageType E00021
-
-
-
-
-
- -

-E00022

-
-public static final MessageType E00022
-
-
-
-
-
- -

-E00024

-
-public static final MessageType E00024
-
-
-
-
-
- -

-E00025

-
-public static final MessageType E00025
-
-
-
-
-
- -

-E00026

-
-public static final MessageType E00026
-
-
-
-
-
- -

-E00027

-
-public static final MessageType E00027
-
-
-
-
-
- -

-E00028

-
-public static final MessageType E00028
-
-
-
-
-
- -

-E00029

-
-public static final MessageType E00029
-
-
-
-
-
- -

-E00030

-
-public static final MessageType E00030
-
-
-
-
-
- -

-E00031

-
-public static final MessageType E00031
-
-
-
-
-
- -

-E00032

-
-public static final MessageType E00032
-
-
-
-
-
- -

-E00033

-
-public static final MessageType E00033
-
-
-
-
-
- -

-E00034

-
-public static final MessageType E00034
-
-
-
-
-
- -

-E00035

-
-public static final MessageType E00035
-
-
-
-
-
- -

-E00036

-
-public static final MessageType E00036
-
-
-
-
-
- -

-E00037

-
-public static final MessageType E00037
-
-
-
-
-
- -

-E00038

-
-public static final MessageType E00038
-
-
-
-
-
- -

-E00045

-
-public static final MessageType E00045
-
-
-
-
-
- -

-E00054

-
-public static final MessageType E00054
-
-
-
-
-
- -

-E00055

-
-public static final MessageType E00055
-
-
-
-
-
- -

-E00056

-
-public static final MessageType E00056
-
-
-
-
-
- -

-E00057

-
-public static final MessageType E00057
-
-
-
-
-
- -

-E00058

-
-public static final MessageType E00058
-
-
-
-
-
- -

-E00059

-
-public static final MessageType E00059
-
-
-
-
- - - - - - - - -
-Method Detail
- -

-values

-
-public static MessageType[] values()
-
-
Returns an array containing the constants of this enum type, in -the order they are declared. This method may be used to iterate -over the constants as follows: -
-for (MessageType c : MessageType.values())
-    System.out.println(c);
-
-

-

- -
Returns:
an array containing the constants of this enum type, in -the order they are declared
-
-
-
- -

-valueOf

-
-public static MessageType valueOf(java.lang.String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an -enum constant in this type. (Extraneous whitespace characters are -not permitted.) -

-

-
Parameters:
name - the name of the enum constant to be returned. -
Returns:
the enum constant with the specified name -
Throws: -
java.lang.IllegalArgumentException - if this enum type has no constant -with the specified name -
java.lang.NullPointerException - if the argument is null
-
-
-
- -

-findByValue

-
-public static MessageType findByValue(java.lang.String value)
-
-
Lookup a response reason code by the reason response code itself. -

-

-
Parameters:
value - -
Returns:
Returns a MessageType from it's value if found.
-
-
-
- -

-getText

-
-public java.lang.String getText()
-
-
- -
Returns:
the text
-
-
-
- -

-setText

-
-public void setText(java.lang.String text)
-
-
-
Parameters:
text - the text to set
-
-
-
- -

-getValue

-
-public java.lang.String getValue()
-
-
- -
Returns:
the value
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/Result.html b/docs/javadocs/net/authorize/xml/Result.html deleted file mode 100644 index 3de9833..0000000 --- a/docs/javadocs/net/authorize/xml/Result.html +++ /dev/null @@ -1,1116 +0,0 @@ - - - - - - -Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.xml -
-Class Result

-
-java.lang.Object
-  extended by net.authorize.Result
-      extended by net.authorize.xml.Result
-
-
-
All Implemented Interfaces:
java.io.Serializable
-
-
-
Direct Known Subclasses:
Result, Result, Result, Result, Result, Result
-
-
-
-
public class Result
extends Result
implements java.io.Serializable
- - -

-Wrapper container for passing back the result from the XML gateway request. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-static java.lang.StringERROR - -
-           
-protected  java.util.ArrayList<MessageType>messages - -
-           
-static java.lang.StringOK - -
-           
-protected  java.lang.StringrefId - -
-           
-protected  java.lang.Enum<?>requestTransactionType - -
-           
-protected  ResponseCoderesponseCode - -
-           
-protected  java.lang.StringresultCode - -
-           
-protected  java.lang.StringsessionToken - -
-           
-protected  java.lang.StringxmlResponse - -
-           
-protected  BasicXmlDocumentxmlResponseDoc - -
-           
- - - - - - - -
Fields inherited from class net.authorize.Result
requestTransaction
-  - - - - - - - - - - - - - - - -
-Constructor Summary
-protected Result() - -
-           
-protected Result(ITransaction requestTransaction, - java.lang.String response) - -
-          Result constructor.
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
- voidclearRequest() - -
-          Clears the request data for security reasons.
- voidclearXmlResponse() - -
-          Clears the XML response and doc to work around memory issues on mobile - devices.
-static ResultcreateResult(ITransaction requestTransaction, - java.lang.String response) - -
-          Create a Result from the request and response data.
-protected static java.lang.StringgetElementText(org.w3c.dom.Element parent_el, - java.lang.String element_name) - -
-          Local wrapper for getting element text from a parent.
-protected static java.lang.StringgetElementText(org.w3c.dom.Element parent_el, - java.lang.String element_name, - boolean checkDeepMatchList) - -
-          Local wrapper for getting element text from a parent.
- java.util.ArrayList<MessageType>getMessages() - -
-           
- java.lang.StringgetRefId() - -
-          Returns the refId.
- java.lang.Enum<?>getRequestTransactionType() - -
-          Returns the "generic" Enum transaction type.
- java.lang.StringgetResultCode() - -
-          Returns the result code.
- java.lang.StringgetSessionToken() - -
-          Return the sesssionToken that was passed back.
- java.lang.StringgetXmlResponse() - -
-          Returns the raw XML response.
-protected  BasicXmlDocumentgetXmlResponseDoc() - -
-          Return the XML response doc.
-protected  voidimportRefId() - -
-          Import the refId.
-protected  voidimportResponseMessages() - -
-          Import the response messages into the result.
-protected  voidimportSessionToken() - -
-          Import the sessionToken.
- booleanisApproved() - -
-          Return true if the request was Approved.
- booleanisDeclined() - -
-          Returns true if the request was Declined.
- booleanisError() - -
-          Returns true if the request had an error.
- booleanisOk() - -
-          Returns true if the response is Ok.
- booleanisResponseAuthenticationError() - -
-          Returns true if the response is from an authentication error.
- booleanisResponseError() - -
-          Returns true if the response is Error.
- booleanisResponseErrorRetryable() - -
-          Returns true if the response is from an error that should cause a retry.
- booleanisResponseOk() - -
-          Returns true if the response is Ok.
- booleanisReview() - -
-          Returns true if the request is under review.
- voidprintMessages() - -
-          Print messages to stdout for debugging.
- - - - - - - -
Methods inherited from class net.authorize.Result
getRequestTransaction
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - -
-Field Detail
- -

-OK

-
-public static final java.lang.String OK
-
-
-
See Also:
Constant Field Values
-
-
- -

-ERROR

-
-public static final java.lang.String ERROR
-
-
-
See Also:
Constant Field Values
-
-
- -

-xmlResponseDoc

-
-protected transient BasicXmlDocument xmlResponseDoc
-
-
-
-
-
- -

-xmlResponse

-
-protected java.lang.String xmlResponse
-
-
-
-
-
- -

-resultCode

-
-protected java.lang.String resultCode
-
-
-
-
-
- -

-refId

-
-protected java.lang.String refId
-
-
-
-
-
- -

-sessionToken

-
-protected java.lang.String sessionToken
-
-
-
-
-
- -

-responseCode

-
-protected ResponseCode responseCode
-
-
-
-
-
- -

-messages

-
-protected java.util.ArrayList<MessageType> messages
-
-
-
-
-
- -

-requestTransactionType

-
-protected java.lang.Enum<?> requestTransactionType
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-Result

-
-protected Result()
-
-
-
- -

-Result

-
-protected Result(ITransaction requestTransaction,
-                 java.lang.String response)
-
-
Result constructor. -

-

-
Parameters:
requestTransaction -
response -
-
- - - - - - - - -
-Method Detail
- -

-createResult

-
-public static Result createResult(ITransaction requestTransaction,
-                                  java.lang.String response)
-
-
Create a Result from the request and response data. -

-

-
-
-
-
Parameters:
requestTransaction -
response - -
Returns:
Result
-
-
-
- -

-getResultCode

-
-public java.lang.String getResultCode()
-
-
Returns the result code. -

-

-
-
-
- -
Returns:
String containing the result code.
-
-
-
- -

-getMessages

-
-public java.util.ArrayList<MessageType> getMessages()
-
-
-
-
-
- -
Returns:
the messages
-
-
-
- -

-getSessionToken

-
-public java.lang.String getSessionToken()
-
-
Return the sesssionToken that was passed back. This token supersedes the one that was previously - used in the request. While the two tokens could be the same, it's not guaranteed for the longevity of the - running application. -

-

-
-
-
- -
Returns:
String
-
-
-
- -

-getElementText

-
-protected static java.lang.String getElementText(org.w3c.dom.Element parent_el,
-                                                 java.lang.String element_name)
-
-
Local wrapper for getting element text from a parent. -

-

-
-
-
-
Parameters:
parent_el -
element_name - -
Returns:
String element text
-
-
-
- -

-getElementText

-
-protected static java.lang.String getElementText(org.w3c.dom.Element parent_el,
-                                                 java.lang.String element_name,
-                                                 boolean checkDeepMatchList)
-
-
Local wrapper for getting element text from a parent. -

-

-
-
-
-
Parameters:
parent_el -
element_name -
checkDeepMatchList - - goes 1 level deeper to check for a match if there's multiple matches -
Returns:
String element text
-
-
-
- -

-importResponseMessages

-
-protected void importResponseMessages()
-
-
Import the response messages into the result. -

-

-
-
-
-
-
-
-
- -

-importRefId

-
-protected void importRefId()
-
-
Import the refId. -

-

-
-
-
-
-
-
-
- -

-importSessionToken

-
-protected void importSessionToken()
-
-
Import the sessionToken. -

-

-
-
-
-
-
-
-
- -

-isApproved

-
-public boolean isApproved()
-
-
Return true if the request was Approved. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-isDeclined

-
-public boolean isDeclined()
-
-
Returns true if the request was Declined. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-isError

-
-public boolean isError()
-
-
Returns true if the request had an error. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-isReview

-
-public boolean isReview()
-
-
Returns true if the request is under review. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-isOk

-
-public final boolean isOk()
-
-
Returns true if the response is Ok. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-isResponseOk

-
-public final boolean isResponseOk()
-
-
Returns true if the response is Ok. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-isResponseError

-
-public final boolean isResponseError()
-
-
Returns true if the response is Error. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-isResponseAuthenticationError

-
-public final boolean isResponseAuthenticationError()
-
-
Returns true if the response is from an authentication error. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-isResponseErrorRetryable

-
-public final boolean isResponseErrorRetryable()
-
-
Returns true if the response is from an error that should cause a retry. -

-

-
-
-
- -
Returns:
boolean
-
-
-
- -

-getRefId

-
-public java.lang.String getRefId()
-
-
Returns the refId. -

-

-
-
-
- -
Returns:
the refId
-
-
-
- -

-getXmlResponse

-
-public java.lang.String getXmlResponse()
-
-
Returns the raw XML response. In some cases (mobile) the raw response - will not be available to account for a tighter memory footprint. -

-

-
-
-
- -
Returns:
the xmlResponse
-
-
-
- -

-clearXmlResponse

-
-public void clearXmlResponse()
-
-
Clears the XML response and doc to work around memory issues on mobile - devices. -

-

-
-
-
-
-
-
-
- -

-clearRequest

-
-public void clearRequest()
-
-
Clears the request data for security reasons. -

-

-
-
-
-
-
-
-
- -

-getXmlResponseDoc

-
-protected BasicXmlDocument getXmlResponseDoc()
-
-
Return the XML response doc. -

-

-
-
-
- -
Returns:
BasicXmlDocument
-
-
-
- -

-printMessages

-
-public void printMessages()
-
-
Print messages to stdout for debugging. -

-

-
-
-
-
-
-
-
- -

-getRequestTransactionType

-
-public java.lang.Enum<?> getRequestTransactionType()
-
-
Returns the "generic" Enum transaction type. -

-

-
-
-
- -
Returns:
the requestTransactionType
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/XMLTransaction.html b/docs/javadocs/net/authorize/xml/XMLTransaction.html deleted file mode 100644 index a08f4cd..0000000 --- a/docs/javadocs/net/authorize/xml/XMLTransaction.html +++ /dev/null @@ -1,1059 +0,0 @@ - - - - - - -XMLTransaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- -

- -net.authorize.xml -
-Class XMLTransaction

-
-java.lang.Object
-  extended by net.authorize.xml.XMLTransaction
-
-
-
All Implemented Interfaces:
java.io.Serializable, ITransaction
-
-
-
Direct Known Subclasses:
Transaction, Transaction, Transaction, Transaction, Transaction, Transaction
-
-
-
-
public abstract class XMLTransaction
extends java.lang.Object
implements java.io.Serializable, ITransaction
- - -

-Contains all the necessary core components used in building an XML based - transaction. -

- -

-

-
See Also:
Serialized Form
-
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Field Summary
-protected  BankAccountbankAccount - -
-           
-protected  AddressbillToAddress - -
-           
-protected  CreditCardcreditCard - -
-           
-protected  BasicXmlDocumentcurrentRequest - -
-           
-protected  Customercustomer - -
-           
-protected  EmailReceiptemailReceipt - -
-           
-protected  java.lang.Stringmd5Value - -
-           
-protected  Merchantmerchant - -
-           
-protected  Orderorder - -
-           
-protected  java.lang.StringrefId - -
-           
-protected  ShippingAddressshippingAddress - -
-           
-protected  ShippingChargesshippingCharges - -
-           
-static java.lang.StringXML_NAMESPACE - -
-           
-static java.lang.StringXML_XSD - -
-           
-static java.lang.StringXML_XSI - -
-           
- - - - - - - -
Fields inherited from interface net.authorize.ITransaction
CURRENCY_DECIMAL_PLACES, EMPTY_STRING, FALSE, QUANTITY_DECIMAL_PLACES, TRUE, VERSION, ZERO_AMOUNT, ZERO_STRING
-  - - - - - - - - - - -
-Constructor Summary
XMLTransaction() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-protected  voidaddAuthentication(BasicXmlDocument document) - -
-          Add authentication to the request.
-protected  voidaddAuthentication(BasicXmlDocument document, - boolean addMobileDeviceId) - -
-          Add authentication to the request.
-protected  voidaddRefId(BasicXmlDocument document) - -
-          Add the refId to the request.
- BankAccountgetBankAccount() - -
-           
- CreditCardgetCreditCard() - -
-           
- BasicXmlDocumentgetCurrentRequest() - -
-          Returns the current request.
- CustomergetCustomer() - -
-           
- EmailReceiptgetEmailReceipt() - -
-           
- java.lang.StringgetMD5Value() - -
-           
- MerchantgetMerchant() - -
-          Return the Merchant container.
- OrdergetOrder() - -
-           
- java.lang.StringgetRefId() - -
-           
- ShippingAddressgetShippingAddress() - -
-           
- ShippingChargesgetShippingCharges() - -
-           
- voidsetBankAccount(BankAccount bankAccount) - -
-           
- voidsetCreditCard(CreditCard creditCard) - -
-           
- voidsetCustomer(Customer customer) - -
-           
- voidsetEmailReceipt(EmailReceipt emailReceipt) - -
-           
- voidsetOrder(Order order) - -
-           
- voidsetRefId(java.lang.String refId) - -
-           
- voidsetShippingAddress(ShippingAddress shippingAddress) - -
-           
- voidsetShippingCharges(ShippingCharges shippingCharges) - -
-           
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- - - - - - - -
Methods inherited from interface net.authorize.ITransaction
getTransactionType, toAuthNetPOSTString
-  -

- - - - - - - - -
-Field Detail
- -

-XML_NAMESPACE

-
-public static java.lang.String XML_NAMESPACE
-
-
-
-
-
- -

-XML_XSI

-
-public static java.lang.String XML_XSI
-
-
-
-
-
- -

-XML_XSD

-
-public static java.lang.String XML_XSD
-
-
-
-
-
- -

-merchant

-
-protected Merchant merchant
-
-
-
-
-
- -

-md5Value

-
-protected java.lang.String md5Value
-
-
-
-
-
- -

-refId

-
-protected java.lang.String refId
-
-
-
-
-
- -

-bankAccount

-
-protected BankAccount bankAccount
-
-
-
-
-
- -

-creditCard

-
-protected CreditCard creditCard
-
-
-
-
-
- -

-customer

-
-protected Customer customer
-
-
-
-
-
- -

-emailReceipt

-
-protected EmailReceipt emailReceipt
-
-
-
-
-
- -

-order

-
-protected Order order
-
-
-
-
-
- -

-billToAddress

-
-protected Address billToAddress
-
-
-
-
-
- -

-shippingAddress

-
-protected ShippingAddress shippingAddress
-
-
-
-
-
- -

-shippingCharges

-
-protected ShippingCharges shippingCharges
-
-
-
-
-
- -

-currentRequest

-
-protected transient BasicXmlDocument currentRequest
-
-
-
-
- - - - - - - - -
-Constructor Detail
- -

-XMLTransaction

-
-public XMLTransaction()
-
-
- - - - - - - - -
-Method Detail
- -

-addAuthentication

-
-protected void addAuthentication(BasicXmlDocument document)
-
-
Add authentication to the request. -

-

-
-
-
-
Parameters:
document -
-
-
-
- -

-addAuthentication

-
-protected void addAuthentication(BasicXmlDocument document,
-                                 boolean addMobileDeviceId)
-
-
Add authentication to the request. -

-

-
-
-
-
Parameters:
document -
addMobileDeviceId -
-
-
-
- -

-addRefId

-
-protected void addRefId(BasicXmlDocument document)
-
-
Add the refId to the request. -

-

-
-
-
-
Parameters:
document -
-
-
-
- -

-getBankAccount

-
-public BankAccount getBankAccount()
-
-
-
Specified by:
getBankAccount in interface ITransaction
-
-
- -
Returns:
the bankAccount
-
-
-
- -

-getCreditCard

-
-public CreditCard getCreditCard()
-
-
-
Specified by:
getCreditCard in interface ITransaction
-
-
- -
Returns:
the creditCard
-
-
-
- -

-getCustomer

-
-public Customer getCustomer()
-
-
-
Specified by:
getCustomer in interface ITransaction
-
-
- -
Returns:
the customer
-
-
-
- -

-getEmailReceipt

-
-public EmailReceipt getEmailReceipt()
-
-
-
Specified by:
getEmailReceipt in interface ITransaction
-
-
- -
Returns:
the emailReceipt
-
-
-
- -

-getMD5Value

-
-public java.lang.String getMD5Value()
-
-
-
Specified by:
getMD5Value in interface ITransaction
-
-
- -
Returns:
the md5Value
-
-
-
- -

-getOrder

-
-public Order getOrder()
-
-
-
Specified by:
getOrder in interface ITransaction
-
-
- -
Returns:
the order
-
-
-
- -

-getShippingAddress

-
-public ShippingAddress getShippingAddress()
-
-
-
Specified by:
getShippingAddress in interface ITransaction
-
-
- -
Returns:
the shippingAddress
-
-
-
- -

-getShippingCharges

-
-public ShippingCharges getShippingCharges()
-
-
-
Specified by:
getShippingCharges in interface ITransaction
-
-
- -
Returns:
the shippingCharges
-
-
-
- -

-setBankAccount

-
-public void setBankAccount(BankAccount bankAccount)
-
-
-
Specified by:
setBankAccount in interface ITransaction
-
-
-
Parameters:
bankAccount - the bank account information to set
-
-
-
- -

-setCreditCard

-
-public void setCreditCard(CreditCard creditCard)
-
-
-
Specified by:
setCreditCard in interface ITransaction
-
-
-
Parameters:
creditCard - the creditCard to set
-
-
-
- -

-setCustomer

-
-public void setCustomer(Customer customer)
-
-
-
Specified by:
setCustomer in interface ITransaction
-
-
-
Parameters:
customer - the customer to set
-
-
-
- -

-setEmailReceipt

-
-public void setEmailReceipt(EmailReceipt emailReceipt)
-
-
-
Specified by:
setEmailReceipt in interface ITransaction
-
-
-
Parameters:
emailReceipt - the emailReceipt to set
-
-
-
- -

-setOrder

-
-public void setOrder(Order order)
-
-
-
Specified by:
setOrder in interface ITransaction
-
-
-
Parameters:
order - the order to set
-
-
-
- -

-setShippingAddress

-
-public void setShippingAddress(ShippingAddress shippingAddress)
-
-
-
Specified by:
setShippingAddress in interface ITransaction
-
-
-
Parameters:
shippingAddress - the shippingAddress to set
-
-
-
- -

-setShippingCharges

-
-public void setShippingCharges(ShippingCharges shippingCharges)
-
-
-
Specified by:
setShippingCharges in interface ITransaction
-
-
-
Parameters:
shippingCharges - the shippingCharges to set
-
-
-
- -

-getRefId

-
-public java.lang.String getRefId()
-
-
-
-
-
- -
Returns:
the refId
-
-
-
- -

-setRefId

-
-public void setRefId(java.lang.String refId)
-
-
-
-
-
-
Parameters:
refId - the refId to set
-
-
-
- -

-getCurrentRequest

-
-public BasicXmlDocument getCurrentRequest()
-
-
Returns the current request. -

-

-
-
-
- -
Returns:
BasicXmlDocument containing the request
-
-
-
- -

-getMerchant

-
-public Merchant getMerchant()
-
-
Return the Merchant container. -

-

-
Specified by:
getMerchant in interface ITransaction
-
-
- -
Returns:
Merchant
-
-
- -
- - - - - - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/class-use/MessageType.html b/docs/javadocs/net/authorize/xml/class-use/MessageType.html deleted file mode 100644 index a55207f..0000000 --- a/docs/javadocs/net/authorize/xml/class-use/MessageType.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - -Uses of Class net.authorize.xml.MessageType (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.xml.MessageType

-
- - - - - - - - - -
-Packages that use MessageType
net.authorize.xml  
-  -

- - - - - -
-Uses of MessageType in net.authorize.xml
-  -

- - - - - - - - - -
Fields in net.authorize.xml with type parameters of type MessageType
-protected  java.util.ArrayList<MessageType>Result.messages - -
-           
-  -

- - - - - - - - - - - - - - - - - -
Methods in net.authorize.xml that return MessageType
-static MessageTypeMessageType.findByValue(java.lang.String value) - -
-          Lookup a response reason code by the reason response code itself.
-static MessageTypeMessageType.valueOf(java.lang.String name) - -
-          Returns the enum constant of this type with the specified name.
-static MessageType[]MessageType.values() - -
-          Returns an array containing the constants of this enum type, in -the order they are declared.
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return types with arguments of type MessageType
- java.util.ArrayList<MessageType>Result.getMessages() - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/class-use/Result.html b/docs/javadocs/net/authorize/xml/class-use/Result.html deleted file mode 100644 index 0c89620..0000000 --- a/docs/javadocs/net/authorize/xml/class-use/Result.html +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - -Uses of Class net.authorize.xml.Result (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.xml.Result

-
- - - - - - - - - - - - - -
-Packages that use Result
net.authorize.aim  
net.authorize.xml  
-  -

- - - - - -
-Uses of Result in net.authorize.aim
-  -

- - - - - - - - - -
Subclasses of Result in net.authorize.aim
- classResult - -
-          Extends the core net.authorize.xml.Result for specific AIM result data.
-  -

- - - - - -
-Uses of Result in net.authorize.xml
-  -

- - - - - - - - - -
Methods in net.authorize.xml that return Result
-static ResultResult.createResult(ITransaction requestTransaction, - java.lang.String response) - -
-          Create a Result from the request and response data.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/class-use/XMLTransaction.html b/docs/javadocs/net/authorize/xml/class-use/XMLTransaction.html deleted file mode 100644 index cb2af53..0000000 --- a/docs/javadocs/net/authorize/xml/class-use/XMLTransaction.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - -Uses of Class net.authorize.xml.XMLTransaction (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Class
net.authorize.xml.XMLTransaction

-
- - - - - - - - - -
-Packages that use XMLTransaction
net.authorize.aim  
-  -

- - - - - -
-Uses of XMLTransaction in net.authorize.aim
-  -

- - - - - - - - - -
Subclasses of XMLTransaction in net.authorize.aim
- classTransaction - -
-          Container to hold all payment related information that gets passed back and - forth to the payment gateway.
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/package-frame.html b/docs/javadocs/net/authorize/xml/package-frame.html deleted file mode 100644 index 3912c89..0000000 --- a/docs/javadocs/net/authorize/xml/package-frame.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - -net.authorize.xml (Authorize.Net Java SDK) - - - - - - - - - - - -net.authorize.xml - - - - -
-Classes  - -
-Result -
-XMLTransaction
- - - - - - -
-Enums  - -
-MessageType
- - - - diff --git a/docs/javadocs/net/authorize/xml/package-summary.html b/docs/javadocs/net/authorize/xml/package-summary.html deleted file mode 100644 index 77de3ba..0000000 --- a/docs/javadocs/net/authorize/xml/package-summary.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - -net.authorize.xml (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-

-Package net.authorize.xml -

- - - - - - - - - - - - - -
-Class Summary
ResultWrapper container for passing back the result from the XML gateway request.
XMLTransactionContains all the necessary core components used in building an XML based - transaction.
-  - -

- - - - - - - - - -
-Enum Summary
MessageType 
-  - -

-

-
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/package-tree.html b/docs/javadocs/net/authorize/xml/package-tree.html deleted file mode 100644 index 1d66363..0000000 --- a/docs/javadocs/net/authorize/xml/package-tree.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - -net.authorize.xml Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For Package net.authorize.xml -

-
-
-
Package Hierarchies:
All Packages
-
-

-Class Hierarchy -

-
    -
  • java.lang.Object
      -
    • net.authorize.Result (implements java.io.Serializable) -
        -
      • net.authorize.xml.Result (implements java.io.Serializable) -
      -
    • net.authorize.xml.XMLTransaction (implements net.authorize.ITransaction, java.io.Serializable) -
    -
-

-Enum Hierarchy -

-
    -
  • java.lang.Object
      -
    • java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - -
    -
-
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/net/authorize/xml/package-use.html b/docs/javadocs/net/authorize/xml/package-use.html deleted file mode 100644 index 6a43c40..0000000 --- a/docs/javadocs/net/authorize/xml/package-use.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - -Uses of Package net.authorize.xml (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Uses of Package
net.authorize.xml

-
- - - - - - - - - - - - - -
-Packages that use net.authorize.xml
net.authorize.aim  
net.authorize.xml  
-  -

- - - - - - - - - - - -
-Classes in net.authorize.xml used by net.authorize.aim
Result - -
-          Wrapper container for passing back the result from the XML gateway request.
XMLTransaction - -
-          Contains all the necessary core components used in building an XML based - transaction.
-  -

- - - - - - - - -
-Classes in net.authorize.xml used by net.authorize.xml
MessageType - -
-           
-  -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/overview-frame.html b/docs/javadocs/overview-frame.html deleted file mode 100644 index 97f0c85..0000000 --- a/docs/javadocs/overview-frame.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - -Overview List (Authorize.Net Java SDK) - - - - - - - - - - - - - - - -
-
- - - - - -
All Classes -

- -Packages -
-net.authorize -
-net.authorize.aim -
-net.authorize.aim.cardpresent -
-net.authorize.arb -
-net.authorize.auth -
-net.authorize.cim -
-net.authorize.data -
-net.authorize.data.aim -
-net.authorize.data.arb -
-net.authorize.data.cim -
-net.authorize.data.creditcard -
-net.authorize.data.echeck -
-net.authorize.data.mobile -
-net.authorize.data.reporting -
-net.authorize.data.sim -
-net.authorize.mobile -
-net.authorize.notification -
-net.authorize.reporting -
-net.authorize.sim -
-net.authorize.sim.button -
-net.authorize.util -
-net.authorize.xml -
-

- -

-  - - diff --git a/docs/javadocs/overview-summary.html b/docs/javadocs/overview-summary.html deleted file mode 100644 index a428b76..0000000 --- a/docs/javadocs/overview-summary.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - -Overview (Authorize.Net Java SDK) - - - - - - - - - - - - -


- - - - - - - - - - - - - - - -
- -
- - - -
-
-

- -

Authorize.Net Java SDK

- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages
net.authorize 
net.authorize.aim 
net.authorize.aim.cardpresent 
net.authorize.arb 
net.authorize.auth 
net.authorize.cim 
net.authorize.data 
net.authorize.data.aim 
net.authorize.data.arb 
net.authorize.data.cim 
net.authorize.data.creditcard 
net.authorize.data.echeck 
net.authorize.data.mobile 
net.authorize.data.reporting 
net.authorize.data.sim 
net.authorize.mobile 
net.authorize.notification 
net.authorize.reporting 
net.authorize.sim 
net.authorize.sim.button 
net.authorize.util 
net.authorize.xml 
- -


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/overview-tree.html b/docs/javadocs/overview-tree.html deleted file mode 100644 index 3c9eca3..0000000 --- a/docs/javadocs/overview-tree.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - -Class Hierarchy (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Hierarchy For All Packages

-
-
-
Package Hierarchies:
net.authorize, net.authorize.aim, net.authorize.aim.cardpresent, net.authorize.arb, net.authorize.auth, net.authorize.cim, net.authorize.data, net.authorize.data.aim, net.authorize.data.arb, net.authorize.data.cim, net.authorize.data.creditcard, net.authorize.data.echeck, net.authorize.data.mobile, net.authorize.data.reporting, net.authorize.data.sim, net.authorize.mobile, net.authorize.notification, net.authorize.reporting, net.authorize.sim, net.authorize.sim.button, net.authorize.util, net.authorize.xml
-
-

-Class Hierarchy -

- -

-Interface Hierarchy -

- -

-Enum Hierarchy -

- -
- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/package-list b/docs/javadocs/package-list deleted file mode 100644 index 78c8a41..0000000 --- a/docs/javadocs/package-list +++ /dev/null @@ -1,22 +0,0 @@ -net.authorize -net.authorize.aim -net.authorize.aim.cardpresent -net.authorize.arb -net.authorize.auth -net.authorize.cim -net.authorize.data -net.authorize.data.aim -net.authorize.data.arb -net.authorize.data.cim -net.authorize.data.creditcard -net.authorize.data.echeck -net.authorize.data.mobile -net.authorize.data.reporting -net.authorize.data.sim -net.authorize.mobile -net.authorize.notification -net.authorize.reporting -net.authorize.sim -net.authorize.sim.button -net.authorize.util -net.authorize.xml diff --git a/docs/javadocs/resources/inherit.gif b/docs/javadocs/resources/inherit.gif deleted file mode 100644 index c814867..0000000 Binary files a/docs/javadocs/resources/inherit.gif and /dev/null differ diff --git a/docs/javadocs/serialized-form.html b/docs/javadocs/serialized-form.html deleted file mode 100644 index 911e7e7..0000000 --- a/docs/javadocs/serialized-form.html +++ /dev/null @@ -1,4282 +0,0 @@ - - - - - - -Serialized Form (Authorize.Net Java SDK) - - - - - - - - - - - - -
- - - - - - - - - - - - - - - -
- -
- - - -
-
-

-Serialized Form

-
-
- - - - - -
-Package net.authorize
- -

- - - - - -
-Class net.authorize.Merchant extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-environment

-
-Environment environment
-
-
-
-
-
-

-allowPartialAuth

-
-boolean allowPartialAuth
-
-
-
-
-
-

-duplicateTxnWindowSeconds

-
-int duplicateTxnWindowSeconds
-
-
-
-
-
-

-emailCustomer

-
-boolean emailCustomer
-
-
-
-
-
-

-merchantEmail

-
-java.lang.String merchantEmail
-
-
-
-
-
-

-recurringBilling

-
-boolean recurringBilling
-
-
-
-
-
-

-marketType

-
-MarketType marketType
-
-
-
-
-
-

-deviceType

-
-DeviceType deviceType
-
-
-
-
-
-

-userRef

-
-java.lang.String userRef
-
-
-
-
-
-

-md5Value

-
-java.lang.String md5Value
-
-
-
-
-
-

-merchantAuthenticator

-
-IMerchantAuthentication merchantAuthenticator
-
-
-
-
- -

- - - - - -
-Class net.authorize.NVPTransaction extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-eCheck

-
-ECheck eCheck
-
-
-
-
-
-

-creditCard

-
-CreditCard creditCard
-
-
-
-
-
-

-customer

-
-Customer customer
-
-
-
-
-
-

-emailReceipt

-
-EmailReceipt emailReceipt
-
-
-
-
-
-

-environment

-
-Environment environment
-
-
-
-
-
-

-md5Value

-
-java.lang.String md5Value
-
-
-
-
-
-

-merchant

-
-Merchant merchant
-
-
-
-
-
-

-order

-
-Order order
-
-
-
-
-
-

-billToAddress

-
-Address billToAddress
-
-
-
-
-
-

-shippingAddress

-
-ShippingAddress shippingAddress
-
-
-
-
-
-

-shippingCharges

-
-ShippingCharges shippingCharges
-
-
-
-
-
-

-transactionType

-
-TransactionType transactionType
-
-
-
-
- -

- - - - - -
-Class net.authorize.Result extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-requestTransaction

-
-ITransaction requestTransaction
-
-
-
-
-
- - - - - -
-Package net.authorize.aim
- -

- - - - - -
-Class net.authorize.aim.Result extends Result implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-authCode

-
-java.lang.String authCode
-
-
-
-
-
-

-avsResultCode

-
-AVSCode avsResultCode
-
-
-
-
-
-

-cardCodeResponse

-
-CardCodeResponseType cardCodeResponse
-
-
-
-
-
-

-cavvResultCode

-
-CAVVResponseType cavvResultCode
-
-
-
-
-
-

-transId

-
-java.lang.String transId
-
-
-
-
-
-

-refTransId

-
-java.lang.String refTransId
-
-
-
-
-
-

-transHash

-
-java.lang.String transHash
-
-
-
-
-
-

-testRequest

-
-boolean testRequest
-
-
-
-
-
-

-accountNumber

-
-java.lang.String accountNumber
-
-
-
-
-
-

-accountType

-
-CardType accountType
-
-
-
-
-
-

-responseText

-
-java.lang.String responseText
-
-
-
-
-
-

-splitTenderId

-
-java.lang.String splitTenderId
-
-
-
-
-
-

-prepaidCard

-
-PrepaidCard prepaidCard
-
-
-
-
-
-

-splitTenderPayments

-
-java.util.ArrayList<E> splitTenderPayments
-
-
-
-
-
-

-merchantDefinedMap

-
-java.util.Hashtable<K,V> merchantDefinedMap
-
-
-
-
-
-

-transactionResponseMessages

-
-java.util.ArrayList<E> transactionResponseMessages
-
-
-
-
-
-

-transactionResponseErrors

-
-java.util.ArrayList<E> transactionResponseErrors
-
-
-
-
- -

- - - - - -
-Class net.authorize.aim.Transaction extends XMLTransaction implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-totalAmount

-
-java.math.BigDecimal totalAmount
-
-
-
-
-
-

-transactionType

-
-TransactionType transactionType
-
-
-
-
-
-

-merchantDefinedMap

-
-java.util.Hashtable<K,V> merchantDefinedMap
-
-
-
-
-
-

-refTransId

-
-java.lang.String refTransId
-
-
-
-
-
-

-splitTenderId

-
-java.lang.String splitTenderId
-
-
-
-
-
-

-authCode

-
-java.lang.String authCode
-
-
-
-
-
- - - - - -
-Package net.authorize.arb
- -

- - - - - -
-Class net.authorize.arb.Result extends Result implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-subscriptionStatus

-
-SubscriptionStatusType subscriptionStatus
-
-
-
-
-
-

-resultSubscriptionId

-
-java.lang.String resultSubscriptionId
-
-
-
-
- -

- - - - - -
-Class net.authorize.arb.Transaction extends XMLTransaction implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-transactionType

-
-TransactionType transactionType
-
-
-
-
-
-

-subscription

-
-Subscription subscription
-
-
-
-
-
- - - - - -
-Package net.authorize.auth
- -

- - - - - -
-Class net.authorize.auth.AbstractMerchantAuthentication extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-name

-
-java.lang.String name
-
-
-
-
-
-

-secret

-
-java.lang.String secret
-
-
-
-
-
-

-merchantAuthenticationType

-
-MerchantAuthenticationType merchantAuthenticationType
-
-
-
-
- -

- - - - - -
-Class net.authorize.auth.AbstractMobileMerchantAuthentication extends AbstractMerchantAuthentication implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-mobileDeviceId

-
-java.lang.String mobileDeviceId
-
-
-
-
- -

- - - - - -
-Class net.authorize.auth.PasswordAuthentication extends AbstractMobileMerchantAuthentication implements Serializable
- -

-serialVersionUID: 2L - -

- -

- - - - - -
-Class net.authorize.auth.SessionTokenAuthentication extends AbstractMobileMerchantAuthentication implements Serializable
- -

-serialVersionUID: 2L - -

- -

- - - - - -
-Class net.authorize.auth.TransactionKeyAuthentication extends AbstractMerchantAuthentication implements Serializable
- -

-serialVersionUID: 2L - -

-


- - - - - -
-Package net.authorize.cim
- -

- - - - - -
-Class net.authorize.cim.Result extends Result implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-customerProfileIdList

-
-java.util.ArrayList<E> customerProfileIdList
-
-
-
-
-
-

-customerProfile

-
-CustomerProfile customerProfile
-
-
-
-
-
-

-customerPaymentProfileIdList

-
-java.util.ArrayList<E> customerPaymentProfileIdList
-
-
-
-
-
-

-paymentProfileList

-
-java.util.ArrayList<E> paymentProfileList
-
-
-
-
-
-

-customerShippingAddressIdList

-
-java.util.ArrayList<E> customerShippingAddressIdList
-
-
-
-
-
-

-directResponseList

-
-java.util.ArrayList<E> directResponseList
-
-
-
-
- -

- - - - - -
-Class net.authorize.cim.Transaction extends XMLTransaction implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-transactionType

-
-TransactionType transactionType
-
-
-
-
-
-

-paymentTransactionType

-
-TransactionType paymentTransactionType
-
-
-
-
-
-

-cardCode

-
-java.lang.String cardCode
-
-
-
-
-
-

-customerPaymentProfileId

-
-java.lang.String customerPaymentProfileId
-
-
-
-
-
-

-customerShippingAddressId

-
-java.lang.String customerShippingAddressId
-
-
-
-
-
-

-splitTenderId

-
-java.lang.String splitTenderId
-
-
-
-
-
-

-splitTenderStatus

-
-SplitTenderStatus splitTenderStatus
-
-
-
-
-
-

-approvalCode

-
-java.lang.String approvalCode
-
-
-
-
-
-

-transactionId

-
-java.lang.String transactionId
-
-
-
-
-
-

-creditCardNumberMasked

-
-java.lang.String creditCardNumberMasked
-
-
-
-
-
-

-bankRoutingNumberMasked

-
-java.lang.String bankRoutingNumberMasked
-
-
-
-
-
-

-bankAccountNumberMasked

-
-java.lang.String bankAccountNumberMasked
-
-
-
-
-
-

-customerProfile

-
-CustomerProfile customerProfile
-
-
-
-
-
-

-paymentProfileList

-
-java.util.ArrayList<E> paymentProfileList
-
-
-
-
-
-

-extraOptions

-
-java.util.Hashtable<K,V> extraOptions
-
-
-
-
-
-

-validationMode

-
-ValidationModeType validationMode
-
-
-
-
-
- - - - - -
-Package net.authorize.data
- -

- - - - - -
-Class net.authorize.data.Address extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-firstName

-
-java.lang.String firstName
-
-
-
-
-
-

-lastName

-
-java.lang.String lastName
-
-
-
-
-
-

-company

-
-java.lang.String company
-
-
-
-
-
-

-address

-
-java.lang.String address
-
-
-
-
-
-

-city

-
-java.lang.String city
-
-
-
-
-
-

-state

-
-java.lang.String state
-
-
-
-
-
-

-zipPostalCode

-
-java.lang.String zipPostalCode
-
-
-
-
-
-

-country

-
-java.lang.String country
-
-
-
-
-
-

-phoneNumber

-
-java.lang.String phoneNumber
-
-
-
-
-
-

-faxNumber

-
-java.lang.String faxNumber
-
-
-
-
-
-

-addressId

-
-java.lang.String addressId
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.Customer extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-id

-
-java.lang.String id
-
-
-
-
-
-

-billTo

-
-Address billTo
-
-
-
-
-
-

-shipTo

-
-Address shipTo
-
-
-
-
-
-

-license

-
-DriversLicense license
-
-
-
-
-
-

-email

-
-java.lang.String email
-
-
-
-
-
-

-customerId

-
-java.lang.String customerId
-
-
-
-
-
-

-customerIP

-
-java.lang.String customerIP
-
-
-
-
-
-

-customerType

-
-CustomerType customerType
-
-
-
-
-
-

-taxId

-
-java.lang.String taxId
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.DriversLicense extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-number

-
-java.lang.String number
-
-
-
-
-
-

-state

-
-java.lang.String state
-
-
-
-
-
-

-birth_date

-
-java.util.Date birth_date
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.EmailReceipt extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-headerEmailReceipt

-
-java.lang.String headerEmailReceipt
-
-
-
-
-
-

-footerEmailReceipt

-
-java.lang.String footerEmailReceipt
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.Order extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-invoiceNumber

-
-java.lang.String invoiceNumber
-
-
-
-
-
-

-purchaseOrderNumber

-
-java.lang.String purchaseOrderNumber
-
-
-
-
-
-

-description

-
-java.lang.String description
-
-
-
-
-
-

-totalAmount

-
-java.math.BigDecimal totalAmount
-
-
-
-
-
-

-shippingCharges

-
-ShippingCharges shippingCharges
-
-
-
-
-
-

-orderItems

-
-java.util.List<E> orderItems
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.OrderItem extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-itemId

-
-java.lang.String itemId
-
-
-
-
-
-

-itemName

-
-java.lang.String itemName
-
-
-
-
-
-

-itemDescription

-
-java.lang.String itemDescription
-
-
-
-
-
-

-itemQuantity

-
-java.math.BigDecimal itemQuantity
-
-
-
-
-
-

-itemPrice

-
-java.math.BigDecimal itemPrice
-
-
-
-
-
-

-itemTaxable

-
-boolean itemTaxable
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.Payment extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-credit_card

-
-CreditCard credit_card
-
-
-
-
-
-

-bank_account

-
-BankAccount bank_account
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.ShippingAddress extends Address implements Serializable
- -

-serialVersionUID: 2L - -

- -

- - - - - -
-Class net.authorize.data.ShippingCharges extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-taxItemName

-
-java.lang.String taxItemName
-
-
-
-
-
-

-taxDescription

-
-java.lang.String taxDescription
-
-
-
-
-
-

-taxAmount

-
-java.math.BigDecimal taxAmount
-
-
-
-
-
-

-freightItemName

-
-java.lang.String freightItemName
-
-
-
-
-
-

-freightDescription

-
-java.lang.String freightDescription
-
-
-
-
-
-

-freightAmount

-
-java.math.BigDecimal freightAmount
-
-
-
-
-
-

-dutyItemName

-
-java.lang.String dutyItemName
-
-
-
-
-
-

-dutyItemDescription

-
-java.lang.String dutyItemDescription
-
-
-
-
-
-

-dutyAmount

-
-java.math.BigDecimal dutyAmount
-
-
-
-
-
-

-taxExempt

-
-boolean taxExempt
-
-
-
-
-
-

-purchaseOrderNumber

-
-java.lang.String purchaseOrderNumber
-
-
-
-
-
- - - - - -
-Package net.authorize.data.aim
- -

- - - - - -
-Class net.authorize.data.aim.SplitTenderPayment extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-transId

-
-java.lang.String transId
-
-
-
-
-
-

-responseCode

-
-ResponseCode responseCode
-
-
-
-
-
-

-responseToCustomer

-
-java.lang.String responseToCustomer
-
-
-
-
-
-

-authCode

-
-java.lang.String authCode
-
-
-
-
-
-

-accountNumber

-
-java.lang.String accountNumber
-
-
-
-
-
-

-accountType

-
-CardType accountType
-
-
-
-
-
-

-requestedAmount

-
-java.math.BigDecimal requestedAmount
-
-
-
-
-
-

-approvedAmount

-
-java.math.BigDecimal approvedAmount
-
-
-
-
-
-

-balanceOnCard

-
-java.math.BigDecimal balanceOnCard
-
-
-
-
-
- - - - - -
-Package net.authorize.data.arb
- -

- - - - - -
-Class net.authorize.data.arb.PaymentSchedule extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-interval_length

-
-int interval_length
-
-
-
-
-
-

-subscription_unit

-
-SubscriptionUnitType subscription_unit
-
-
-
-
-
-

-start_date

-
-java.util.Date start_date
-
-
-
-
-
-

-total_occurrences

-
-int total_occurrences
-
-
-
-
-
-

-trial_occurrences

-
-int trial_occurrences
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.arb.Subscription extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-subscription_id

-
-java.lang.String subscription_id
-
-
-
-
-
-

-name

-
-java.lang.String name
-
-
-
-
-
-

-schedule

-
-PaymentSchedule schedule
-
-
-
-
-
-

-amount

-
-java.math.BigDecimal amount
-
-
-
-
-
-

-trial_amount

-
-java.math.BigDecimal trial_amount
-
-
-
-
-
-

-payment

-
-Payment payment
-
-
-
-
-
-

-customer

-
-Customer customer
-
-
-
-
-
-

-order

-
-Order order
-
-
-
-
-
- - - - - -
-Package net.authorize.data.cim
- -

- - - - - -
-Class net.authorize.data.cim.CustomerProfile extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-merchantCustomerId

-
-java.lang.String merchantCustomerId
-
-
-
-
-
-

-description

-
-java.lang.String description
-
-
-
-
-
-

-email

-
-java.lang.String email
-
-
-
-
-
-

-customerProfileId

-
-java.lang.String customerProfileId
-
-
-
-
-
-

-shipToAddressList

-
-java.util.ArrayList<E> shipToAddressList
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.cim.DirectResponse extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-directResponseString

-
-java.lang.String directResponseString
-
-
-
-
-
-

-directResponseMap

-
-java.util.Map<K,V> directResponseMap
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.cim.PaymentProfile extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-customerType

-
-CustomerType customerType
-
-
-
-
-
-

-billTo

-
-Address billTo
-
-
-
-
-
-

-paymentList

-
-java.util.ArrayList<E> paymentList
-
-
-
-
-
-

-customerPaymentProfileId

-
-java.lang.String customerPaymentProfileId
-
-
-
-
-
- - - - - -
-Package net.authorize.data.creditcard
- -

- - - - - -
-Class net.authorize.data.creditcard.CreditCard extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-creditCardNumber

-
-java.lang.String creditCardNumber
-
-
-
-
-
-

-maskedCardNumber

-
-java.lang.String maskedCardNumber
-
-
-
-
-
-

-expirationMonth

-
-java.lang.String expirationMonth
-
-
-
-
-
-

-expirationYear

-
-java.lang.String expirationYear
-
-
-
-
-
-

-expirationDate

-
-java.util.Date expirationDate
-
-
-
-
-
-

-cardType

-
-CardType cardType
-
-
-
-
-
-

-cardCode

-
-java.lang.String cardCode
-
-
-
-
-
-

-cardholderAuthenticationIndicator

-
-java.lang.String cardholderAuthenticationIndicator
-
-
-
-
-
-

-cardholderAuthenticationValue

-
-java.lang.String cardholderAuthenticationValue
-
-
-
-
-
-

-avsCode

-
-AVSCode avsCode
-
-
-
-
-
-

-track1

-
-java.lang.String track1
-
-
-
-
-
-

-track2

-
-java.lang.String track2
-
-
-
-
-
-

-cardPresent

-
-boolean cardPresent
-
-
-
-
-
- - - - - -
-Package net.authorize.data.echeck
- -

- - - - - -
-Class net.authorize.data.echeck.BankAccount extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-routingNumber

-
-java.lang.String routingNumber
-
-
-
-
-
-

-bankAccountNumber

-
-java.lang.String bankAccountNumber
-
-
-
-
-
-

-bankAccountType

-
-BankAccountType bankAccountType
-
-
-
-
-
-

-bankName

-
-java.lang.String bankName
-
-
-
-
-
-

-bankAccountName

-
-java.lang.String bankAccountName
-
-
-
-
-
-

-eCheckType

-
-ECheckType eCheckType
-
-
-
-
-
-

-bankCheckNumber

-
-java.lang.String bankCheckNumber
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.echeck.ECheck extends BankAccount implements Serializable
- -

-serialVersionUID: 2L - -

-


- - - - - -
-Package net.authorize.data.mobile
- -

- - - - - -
-Class net.authorize.data.mobile.MerchantContact extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-companyName

-
-java.lang.String companyName
-
-
-
-
-
-

-address

-
-java.lang.String address
-
-
-
-
-
-

-city

-
-java.lang.String city
-
-
-
-
-
-

-state

-
-java.lang.String state
-
-
-
-
-
-

-zip

-
-java.lang.String zip
-
-
-
-
-
-

-phone

-
-java.lang.String phone
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.mobile.MobileDevice extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-mobileDeviceId

-
-java.lang.String mobileDeviceId
-
-
-
-
-
-

-description

-
-java.lang.String description
-
-
-
-
-
-

-phoneNumber

-
-java.lang.String phoneNumber
-
-
-
-
-
- - - - - -
-Package net.authorize.data.reporting
- -

- - - - - -
-Class net.authorize.data.reporting.BatchDetails extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-batchId

-
-java.lang.String batchId
-
-
-
-
-
-

-settlementTimeUTC

-
-java.util.Date settlementTimeUTC
-
-
-
-
-
-

-settlementTimeLocal

-
-java.util.Date settlementTimeLocal
-
-
-
-
-
-

-settlementState

-
-SettlementStateType settlementState
-
-
-
-
-
-

-paymentMethod

-
-java.lang.String paymentMethod
-
-
-
-
-
-

-batchStatisticsList

-
-java.util.ArrayList<E> batchStatisticsList
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.reporting.BatchStatistics extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-accountType

-
-CardType accountType
-
-
-
-
-
-

-chargeAmount

-
-java.math.BigDecimal chargeAmount
-
-
-
-
-
-

-chargeCount

-
-long chargeCount
-
-
-
-
-
-

-refundAmount

-
-java.math.BigDecimal refundAmount
-
-
-
-
-
-

-refundCount

-
-long refundCount
-
-
-
-
-
-

-voidCount

-
-long voidCount
-
-
-
-
-
-

-declineCount

-
-long declineCount
-
-
-
-
-
-

-errorCount

-
-long errorCount
-
-
-
-
-
-

-returnedItemAmount

-
-java.math.BigDecimal returnedItemAmount
-
-
-
-
-
-

-returnedItemCount

-
-long returnedItemCount
-
-
-
-
-
-

-chargebackAmount

-
-java.math.BigDecimal chargebackAmount
-
-
-
-
-
-

-chargebackCount

-
-long chargebackCount
-
-
-
-
-
-

-correctionNoticeCount

-
-long correctionNoticeCount
-
-
-
-
-
-

-chargeChargebackAmount

-
-java.math.BigDecimal chargeChargebackAmount
-
-
-
-
-
-

-chargeChargebackCount

-
-long chargeChargebackCount
-
-
-
-
-
-

-refundChargebackAmount

-
-java.math.BigDecimal refundChargebackAmount
-
-
-
-
-
-

-refundChargebackCount

-
-long refundChargebackCount
-
-
-
-
-
-

-chargeReturnedItemsAmount

-
-java.math.BigDecimal chargeReturnedItemsAmount
-
-
-
-
-
-

-chargeReturnedItemsCount

-
-long chargeReturnedItemsCount
-
-
-
-
-
-

-refundReturnedItemsAmount

-
-java.math.BigDecimal refundReturnedItemsAmount
-
-
-
-
-
-

-refundReturnedItemsCount

-
-long refundReturnedItemsCount
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.reporting.FDSFilter extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-name

-
-java.lang.String name
-
-
-
-
-
-

-action

-
-FDSFilterActionType action
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.reporting.ReportingDetails extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-batchIncludeStatistics

-
-boolean batchIncludeStatistics
-
-
-
-
-
-

-batchFirstSettlementDate

-
-java.util.Date batchFirstSettlementDate
-
-
-
-
-
-

-batchLastSettlementDate

-
-java.util.Date batchLastSettlementDate
-
-
-
-
-
-

-batchId

-
-java.lang.String batchId
-
-
-
-
-
-

-transactionId

-
-java.lang.String transactionId
-
-
-
-
-
-

-batchDetailsList

-
-java.util.ArrayList<E> batchDetailsList
-
-
-
-
-
-

-transactionDetailList

-
-java.util.ArrayList<E> transactionDetailList
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.reporting.TransactionDetails extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-transId

-
-java.lang.String transId
-
-
-
-
-
-

-refTransId

-
-java.lang.String refTransId
-
-
-
-
-
-

-splitTenderId

-
-java.lang.String splitTenderId
-
-
-
-
-
-

-submitTimeUTC

-
-java.util.Date submitTimeUTC
-
-
-
-
-
-

-submitTimeLocal

-
-java.util.Date submitTimeLocal
-
-
-
-
-
-

-transactionType

-
-ReportingTransactionType transactionType
-
-
-
-
-
-

-transactionStatus

-
-TransactionStatusType transactionStatus
-
-
-
-
-
-

-responseCode

-
-ResponseCode responseCode
-
-
-
-
-
-

-responseReasonCode

-
-ResponseReasonCode responseReasonCode
-
-
-
-
-
-

-authCode

-
-java.lang.String authCode
-
-
-
-
-
-

-avsResponse

-
-AVSCode avsResponse
-
-
-
-
-
-

-cardCodeResponse

-
-CardCodeResponseType cardCodeResponse
-
-
-
-
-
-

-CAVVResponse

-
-CAVVResponseType CAVVResponse
-
-
-
-
-
-

-FDSFilterAction

-
-FDSFilterActionType FDSFilterAction
-
-
-
-
-
-

-FDSFilterList

-
-java.util.ArrayList<E> FDSFilterList
-
-
-
-
-
-

-batch

-
-BatchDetails batch
-
-
-
-
-
-

-order

-
-Order order
-
-
-
-
-
-

-prepaidBalanceRemaining

-
-java.math.BigDecimal prepaidBalanceRemaining
-
-
-
-
-
-

-itemTaxExempt

-
-boolean itemTaxExempt
-
-
-
-
-
-

-requestedAmount

-
-java.math.BigDecimal requestedAmount
-
-
-
-
-
-

-authAmount

-
-java.math.BigDecimal authAmount
-
-
-
-
-
-

-settleAmount

-
-java.math.BigDecimal settleAmount
-
-
-
-
-
-

-payment

-
-Payment payment
-
-
-
-
-
-

-customer

-
-Customer customer
-
-
-
-
-
-

-recurringBilling

-
-boolean recurringBilling
-
-
-
-
-
-

-customerIP

-
-java.lang.String customerIP
-
-
-
-
-
-

-invoiceNumber

-
-java.lang.String invoiceNumber
-
-
-
-
-
-

-firstName

-
-java.lang.String firstName
-
-
-
-
-
-

-lastName

-
-java.lang.String lastName
-
-
-
-
-
-

-accountType

-
-CardType accountType
-
-
-
-
-
-

-accountNumber

-
-java.lang.String accountNumber
-
-
-
-
-
-

-fullTransactionDetails

-
-boolean fullTransactionDetails
-
-
-
-
-
- - - - - -
-Package net.authorize.data.sim
- -

- - - - - -
-Class net.authorize.data.sim.HostedPaymentFormSettings extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-header

-
-java.lang.String header
-
-
-
-
-
-

-footer

-
-java.lang.String footer
-
-
-
-
-
-

-backgroundColor

-
-java.lang.String backgroundColor
-
-
-
-
-
-

-linkColor

-
-java.lang.String linkColor
-
-
-
-
-
-

-textColor

-
-java.lang.String textColor
-
-
-
-
-
-

-merchantLogoUrl

-
-java.lang.String merchantLogoUrl
-
-
-
-
-
-

-backgroundUrl

-
-java.lang.String backgroundUrl
-
-
-
-
- -

- - - - - -
-Class net.authorize.data.sim.HostedReceiptPageSettings extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-linkMethod

-
-LinkMethod linkMethod
-
-
-
-
-
-

-linkText

-
-java.lang.String linkText
-
-
-
-
-
-

-linkUrl

-
-java.lang.String linkUrl
-
-
-
-
-
- - - - - -
-Package net.authorize.mobile
- -

- - - - - -
-Class net.authorize.mobile.Result extends Result implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-merchantContact

-
-MerchantContact merchantContact
-
-
-
-
-
-

-userPermissions

-
-java.util.ArrayList<E> userPermissions
-
-
-
-
- -

- - - - - -
-Class net.authorize.mobile.Transaction extends XMLTransaction implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-transactionType

-
-TransactionType transactionType
-
-
-
-
-
-

-mobileDevice

-
-MobileDevice mobileDevice
-
-
-
-
-
- - - - - -
-Package net.authorize.notification
- -

- - - - - -
-Class net.authorize.notification.Result extends Result implements Serializable
- -

-serialVersionUID: 2L - -

- -

- - - - - -
-Class net.authorize.notification.Transaction extends XMLTransaction implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-transactionType

-
-TransactionType transactionType
-
-
-
-
-
-

-emailReceipt

-
-EmailReceipt emailReceipt
-
-
-
-
-
-

-customerEmailAddress

-
-java.lang.String customerEmailAddress
-
-
-
-
-
-

-transId

-
-java.lang.String transId
-
-
-
-
-
- - - - - -
-Package net.authorize.reporting
- -

- - - - - -
-Class net.authorize.reporting.Result extends Result implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-reportingDetails

-
-ReportingDetails reportingDetails
-
-
-
-
- -

- - - - - -
-Class net.authorize.reporting.Transaction extends XMLTransaction implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-transactionType

-
-TransactionType transactionType
-
-
-
-
-
-

-reportingDetails

-
-ReportingDetails reportingDetails
-
-
-
-
-
- - - - - -
-Package net.authorize.sim
- -

- - - - - -
-Class net.authorize.sim.Fingerprint extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-sequence

-
-long sequence
-
-
-
-
-
-

-timeStamp

-
-long timeStamp
-
-
-
-
-
-

-fingerprintHash

-
-java.lang.String fingerprintHash
-
-
-
-
- -

- - - - - -
-Class net.authorize.sim.Result extends Result implements Serializable
- -

-serialVersionUID: 1L - -

- - - - - -
-Serialized Fields
- -

-responseMap

-
-java.util.Map<K,V> responseMap
-
-
-
-
-
-

-responseCode

-
-ResponseCode responseCode
-
-
-
-
-
-

-reasonResponseCode

-
-ResponseReasonCode reasonResponseCode
-
-
-
-
-
-

-responseText

-
-java.lang.String responseText
-
-
-
-
-
-

-apiLoginId

-
-java.lang.String apiLoginId
-
-
-
-
-
-

-merchantMD5Key

-
-java.lang.String merchantMD5Key
-
-
-
-
- -

- - - - - -
-Class net.authorize.sim.Transaction extends NVPTransaction implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-requestMap

-
-java.util.Hashtable<K,V> requestMap
-
-
-
-
-
-

-responseMap

-
-java.util.Hashtable<K,V> responseMap
-
-
-
-
-
-

-currentResponse

-
-BasicXmlDocument currentResponse
-
-
-
-
-
-

-merchantDefinedMap

-
-java.util.Hashtable<K,V> merchantDefinedMap
-
-
-
-
-
-

-formInputMap

-
-java.util.LinkedHashMap<K,V> formInputMap
-
-
-
-
-
-

-fieldsToRename

-
-java.util.Map<K,V> fieldsToRename
-
-
-
-
-
-

-fingerprint

-
-Fingerprint fingerprint
-
-
-
-
-
-

-hostedPaymentFormSettings

-
-HostedPaymentFormSettings hostedPaymentFormSettings
-
-
-
-
-
-

-hostedReceiptPageSettings

-
-HostedReceiptPageSettings hostedReceiptPageSettings
-
-
-
-
-
-

-environment

-
-Environment environment
-
-
-
-
-
- - - - - -
-Package net.authorize.util
- -

- - - - - -
-Class net.authorize.util.BasicXmlDocument extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-document

-
-org.w3c.dom.Document document
-
-
-
-
-
-

-sourceFile

-
-java.lang.String sourceFile
-
-
-
-
-
-

-accessible

-
-boolean accessible
-
-
-
-
-
-

-dbf

-
-javax.xml.parsers.DocumentBuilderFactory dbf
-
-
-
-
-
-

-db

-
-javax.xml.parsers.DocumentBuilder db
-
-
-
-
-
-

-xmlParseTime

-
-long xmlParseTime
-
-
-
-
-
-

-resolve_path

-
-java.lang.String resolve_path
-
-
-
-
-
-

-errors

-
-java.util.ArrayList<E> errors
-
-
-
-
-
- - - - - -
-Package net.authorize.xml
- -

- - - - - -
-Class net.authorize.xml.Result extends Result implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-xmlResponse

-
-java.lang.String xmlResponse
-
-
-
-
-
-

-resultCode

-
-java.lang.String resultCode
-
-
-
-
-
-

-refId

-
-java.lang.String refId
-
-
-
-
-
-

-sessionToken

-
-java.lang.String sessionToken
-
-
-
-
-
-

-responseCode

-
-ResponseCode responseCode
-
-
-
-
-
-

-messages

-
-java.util.ArrayList<E> messages
-
-
-
-
-
-

-requestTransactionType

-
-java.lang.Enum<E extends java.lang.Enum<E>> requestTransactionType
-
-
-
-
- -

- - - - - -
-Class net.authorize.xml.XMLTransaction extends java.lang.Object implements Serializable
- -

-serialVersionUID: 2L - -

- - - - - -
-Serialized Fields
- -

-merchant

-
-Merchant merchant
-
-
-
-
-
-

-md5Value

-
-java.lang.String md5Value
-
-
-
-
-
-

-refId

-
-java.lang.String refId
-
-
-
-
-
-

-bankAccount

-
-BankAccount bankAccount
-
-
-
-
-
-

-creditCard

-
-CreditCard creditCard
-
-
-
-
-
-

-customer

-
-Customer customer
-
-
-
-
-
-

-emailReceipt

-
-EmailReceipt emailReceipt
-
-
-
-
-
-

-order

-
-Order order
-
-
-
-
-
-

-billToAddress

-
-Address billToAddress
-
-
-
-
-
-

-shippingAddress

-
-ShippingAddress shippingAddress
-
-
-
-
-
-

-shippingCharges

-
-ShippingCharges shippingCharges
-
-
-
-
- -

-


- - - - - - - - - - - - - - - -
- -
- - - -
- - - diff --git a/docs/javadocs/stylesheet.css b/docs/javadocs/stylesheet.css deleted file mode 100644 index 6ea9e51..0000000 --- a/docs/javadocs/stylesheet.css +++ /dev/null @@ -1,29 +0,0 @@ -/* Javadoc style sheet */ - -/* Define colors, fonts and other style attributes here to override the defaults */ - -/* Page background color */ -body { background-color: #FFFFFF; color:#000000 } - -/* Headings */ -h1 { font-size: 145% } - -/* Table colors */ -.TableHeadingColor { background: #CCCCFF; color:#000000 } /* Dark mauve */ -.TableSubHeadingColor { background: #EEEEFF; color:#000000 } /* Light mauve */ -.TableRowColor { background: #FFFFFF; color:#000000 } /* White */ - -/* Font used in left-hand frame lists */ -.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 } -.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 } -.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 } - -/* Navigation bar fonts and colors */ -.NavBarCell1 { background-color:#EEEEFF; color:#000000} /* Light mauve */ -.NavBarCell1Rev { background-color:#00008B; color:#FFFFFF} /* Dark Blue */ -.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;color:#000000;} -.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;color:#FFFFFF;} - -.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000} -.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000} - diff --git a/emv-anet-sdk.aar b/emv-anet-sdk.aar new file mode 100755 index 0000000..b91d3e2 Binary files /dev/null and b/emv-anet-sdk.aar differ diff --git a/lib/commons-logging-1.1.1.jar b/lib/commons-logging-1.1.1.jar deleted file mode 100644 index 8758a96..0000000 Binary files a/lib/commons-logging-1.1.1.jar and /dev/null differ diff --git a/lib/httpclient-4.0.1.jar b/lib/httpclient-4.0.1.jar deleted file mode 100644 index e9c961f..0000000 Binary files a/lib/httpclient-4.0.1.jar and /dev/null differ diff --git a/lib/httpcore-4.0.1.jar b/lib/httpcore-4.0.1.jar deleted file mode 100644 index 4638daa..0000000 Binary files a/lib/httpcore-4.0.1.jar and /dev/null differ diff --git a/lib/junit-4.8.2.jar b/lib/junit-4.8.2.jar deleted file mode 100644 index 5b4bb84..0000000 Binary files a/lib/junit-4.8.2.jar and /dev/null differ diff --git a/lib/log4j-1.2.16.jar b/lib/log4j-1.2.16.jar deleted file mode 100644 index 3f9d847..0000000 Binary files a/lib/log4j-1.2.16.jar and /dev/null differ diff --git a/license.md b/license.md deleted file mode 100644 index 54f1dd3..0000000 --- a/license.md +++ /dev/null @@ -1,42 +0,0 @@ -SDK LICENSE AGREEMENT -This Software Development Kit (“SDKâ€) License Agreement (“Agreementâ€) is between you (both the individual downloading the SDK and any legal entity on behalf of which such individual is acting) (“You†or “Yourâ€) and Authorize.Net LLC (“Authorize.Net’). - -IT IS IMPORTANT THAT YOU READ CAREFULLY AND UNDERSTAND THIS AGREEMENT. BY CLICKING THE “I ACCEPT†BUTTON OR AN EQUIVALENT INDICATOR OR BY DOWNLOADING, INSTALLING OR USING THE SDK OR THE DOCUMENTATION, YOU AGREE TO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE TO BE BOUND BY THIS AGREEMENT, YOU WILL NOT BE PERMITTED TO (AND YOU WILL HAVE NO RIGHT TO) DOWNLOAD, INSTALL OR USE THE SDK OR THE DOCUMENTATION. -1. DEFINITIONS -1.1 “Application(s)†means software programs that You develop to operate with the Gateway using components of the Software. -1.2 “Documentation†means the materials made available to You in connection with the Software by or on behalf of Authorize.Net pursuant to this Agreement. -1.3 “Gateway†means any electronic payment platform maintained and operated by Authorize.Net and any of its affiliates. -1.4 “Software†means all of the software included in the software development kit made available to You by or on behalf of Authorize.Net pursuant to this Agreement, including but not limited to sample source code, code snippets, software tools, code libraries, sample applications, Documentation and any upgrades, modified versions, updates, and/or additions thereto, if any, made available to You by or on behalf of Authorize.Net pursuant to this Agreement. -2. GRANT OF LICENSE; RESTRICTIONS -2.1 Limited License. Subject to and conditioned upon Your compliance with the terms of this Agreement, Authorize.Net hereby grants to You a limited, revocable, non-exclusive, non-transferable, royalty-free license during the term of this Agreement to: (a) in any country worldwide, use, reproduce, modify, and create derivative works of the components of the Software solely for the purpose of developing, testing and manufacturing Applications; (b) distribute, sell or otherwise provide Your Applications that include components of the Software to Your end users in all countries worldwide; and (c) use the Documentation in connection with the foregoing activities. The license to distribute Applications that include components of the Software as set forth in subsection (b) above includes the right to grant sublicenses to Your end users to use such components of the Software as incorporated into such Applications, subject to the limitations and restrictions set forth in this Agreement. -2.2 Restrictions. You shall not (and shall have no right to): (a) make or distribute copies of the Software or the Documentation, in whole or in part, except as expressly permitted pursuant to Section 2.1; (b) alter or remove any copyright, trademark, trade name or other proprietary notices, legends, symbols or labels appearing on or in the Software or Documentation; (c) sublicense (or purport to sublicense) the Software or the Documentation, in whole or in part, to any third party except as expressly permitted pursuant to Section 2.1; (d) engage in any activity with the Software, including the development or distribution of an Application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the Gateway or platform, servers, or systems of Authorize.Net, any of its affiliates, or any third party; (e) make any statements that Your Application is “certified†or otherwise endorsed, or that its performance is guaranteed, by Authorize.Net or any of its affiliates; or (f) otherwise use or exploit the Software or the Documentation for any purpose other than to develop and distribute Applications as expressly permitted by this Agreement. -2.3 Ownership. You shall retain ownership of Your Applications developed in accordance with this Agreement, subject to Authorize.Net’s ownership of the Software and Documentation (including Authorize.Net’s ownership of any portion of the Software or Documentation incorporated in Your Applications). You acknowledge and agree that all right, title and interest in and to the Software and Documentation shall, at all times, be and remain the exclusive property of Authorize.Net and that You do not have or acquire any rights, express or implied, in the Software or Documentation except those rights expressly granted under this Agreement. -2.4 No Support. Authorize.Net has no obligation to provide support, maintenance, upgrades, modifications or new releases of the Software. -2.5 Open Source Software. You hereby acknowledge that the Software may contain software that is distributed under “open source†license terms (“Open Source Softwareâ€). You shall review the Documentation in order to determine which portions of the Software are Open Source Software and are licensed under such Open Source Software license terms. To the extent any such license requires that Authorize.Net provide You any rights with respect to such Open Source Software that are inconsistent with the limited rights granted to You in this Agreement, then such rights in the applicable Open Source Software license shall take precedence over the rights and restrictions granted in this Agreement, but solely with respect to such Open Source Software. You acknowledge that the Open Source Software license is solely between You and the applicable licensor of the Open Source Software and that Your use, reproduction and distribution of Open Source Software shall be in compliance with applicable Open Source Software license. You understand and agree that Authorize.Net is not liable for any loss or damage that You may experience as a result of Your use of Open Source Software and that You will look solely to the licensor of the Open Source Software in the event of any such loss or damage. -2.6 License to Authorize.Net. In the event You choose to submit any suggestions, feedback or other information or materials related to the Software or Documentation or Your use thereof (collectively, “Feedbackâ€) to Authorize.Net, You hereby grant to Authorize.Net a worldwide, non-exclusive, royalty-free, transferable, sublicensable, perpetual and irrevocable license to use and otherwise exploit such Feedback in connection with the Software, Documentation, and other products and services. -2.7 Use. -(a) You represent, warrant and agree to use the Software and write Applications only for purposes permitted by (i) this Agreement; (ii) applicable law and regulation, including, without limitation, the Payment Card Industry Data Security Standard (PCI DSS); and (iii) generally accepted practices or guidelines in the relevant jurisdictions. You represent, warrant and agree that if You use the Software to develop Applications for general public end users, that You will protect the privacy and legal rights of those users. If the Application receives or stores personal or sensitive information provided by end users, it must do so securely and in compliance with all applicable laws and regulations, including card association regulations. If the Application receives Authorize.Net account information, the Application may only use that information to access the end user's Authorize.Net account. You represent, warrant and agree that You are solely responsible for (and that neither Authorize.Net nor its affiliates have any responsibility to You or to any third party for): (i) any data, content, or resources that You obtain, transmit or display through the Application; and (ii) any breach of Your obligations under this Agreement, any applicable third party license, or any applicable law or regulation, and for the consequences of any such breach. -3. WARRANTY DISCLAIMER; LIMITATION OF LIABILITY -3.1 Disclaimer. THE SOFTWARE AND THE DOCUMENTATION ARE PROVIDED ON AN “AS IS†AND “AS AVAILABLE†BASIS WITH NO WARRANTY. YOU AGREE THAT YOUR USE OF THE SOFTWARE AND THE DOCUMENTATION IS AT YOUR SOLE RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. TO THE FULLEST EXTENT PERMISSIBLE UNDER APPLICABLE LAW, AUTHORIZE.NET AND ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, WITH RESPECT TO THE SOFTWARE AND THE DOCUMENTATION, INCLUDING ALL WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY QUALITY, ACCURACY, TITLE AND NON-INFRINGEMENT, AND ANY WARRANTIES THAT MAY ARISE OUT OF COURSE OF PERFORMANCE, COURSE OF DEALING OR USAGE OF TRADE. NEITHER AUTHORIZE.NET NOR ITS AFFILIATES WARRANT THAT THE FUNCTIONS OR INFORMATION CONTAINED IN THE SOFTWARE OR THE DOCUMENTATION WILL MEET ANY REQUIREMENTS OR NEEDS YOU MAY HAVE, OR THAT THE SOFTWARE OR DOCUMENTATION WILL OPERATE ERROR FREE, OR THAT THE SOFTWARE OR DOCUMENTATION IS COMPATIBLE WITH ANY PARTICULAR OPERATING SYSTEM. -3.2 Limitation of Liability. IN NO EVENT SHALL AUTHORIZE.NET AND ITS AFFILIATES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR PUNITIVE DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, BUSINESS, SAVINGS, DATA, USE OR COST OF SUBSTITUTE PROCUREMENT, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF AUTHORIZE.NET HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR IF SUCH DAMAGES ARE FORESEEABLE. IN NO EVENT SHALL THE ENTIRE LIABILITY OF AUTHORIZE.NET AND AFFILIATES ARISING FROM OR RELATING TO THIS AGREEMENT OR THE SUBJECT MATTER HEREOF EXCEED ONE HUNDRED U.S. DOLLARS ($100). THE PARTIES ACKNOWLEDGE THAT THE LIMITATIONS OF LIABILITY IN THIS SECTION 3.2 AND IN THE OTHER PROVISIONS OF THIS AGREEMENT AND THE ALLOCATION OF RISK HEREIN ARE AN ESSENTIAL ELEMENT OF THE BARGAIN BETWEEN THE PARTIES, WITHOUT WHICH AUTHORIZE.NET WOULD NOT HAVE ENTERED INTO THIS AGREEMENT. -4. INDEMNIFICATION. You shall indemnify, hold harmless and, at Authorize.Net’s request, defend Authorize.Net and its affiliates and their officers, directors, employees, and agents from and against any claim, suit or proceeding, and any associated liabilities, costs, damages and expenses, including reasonable attorneys’ fees, that arise out of relate to: (i) Your Applications or the use or distribution thereof and Your use or distribution of the Software or the Documentation (or any portion thereof including Open Source Software), including, but not limited to, any allegation that any such Application or any such use or distribution infringes, misappropriates or otherwise violates any intellectual property (including, without limitation, copyright, patent, and trademark), privacy, publicity or other rights of any third party, or has caused the death or injury of any person or damage to any property; (ii) Your alleged or actual breach of this Agreement; (iii) the alleged or actual breach of this Agreement by any party to whom you have provided Your Applications, the Software or the Documentation or (iii) Your alleged or actual violation of or non-compliance with any applicable laws, legislation, policies, rules, regulations or governmental requirements (including, without limitation, any laws, legislation, policies, rules, regulations or governmental requirements related to privacy and data collection). -5. TERMINATION. This Agreement and the licenses granted to you herein are effective until terminated. Authorize.Net may terminate this Agreement and the licenses granted to You at any time. Upon termination of this Agreement, You shall cease all use of the Software and the Documentation, return to Authorize.Net or destroy all copies of the Software and Documentation and related materials in Your possession, and so certify to Authorize.Net. Except for the license to You granted herein, the terms of this Agreement shall survive termination. -6. CONFIDENTIAL INFORMATION -a. You hereby agree (i) to hold Authorize.Net’s Confidential Information in strict confidence and to take reasonable precautions to protect such Confidential Information (including, without limitation, all precautions You employ with respect to Your own confidential materials), (ii) not to divulge any such Confidential Information to any third person; (iii) not to make any use whatsoever at any time of such Confidential Information except as strictly licensed hereunder, (iv) not to remove or export from the United States or re-export any such Confidential Information or any direct product thereof, except in compliance with, and with all licenses and approvals required under applicable U.S. and foreign export laws and regulations, including, without limitation, those of the U.S. Department of Commerce. -b. “Confidential Information†shall mean any data or information, oral or written, treated as confidential that relates to Authorize.Net’s past, present, or future research, development or business activities, including without limitation any unannounced products and services, any information relating to services, developments, inventions, processes, plans, financial information, customer data, revenue, transaction volume, forecasts, projections, application programming interfaces, Software and Documentation. -7. General Terms -7.1 Law. This Agreement and all matters arising out of or relating to this Agreement shall be governed by the internal laws of the State of California without giving effect to any choice of law rule. This Agreement shall not be governed by the United Nations Convention on Contracts for the International Sales of Goods, the application of which is expressly excluded. In the event of any controversy, claim or dispute between the parties arising out of or relating to this Agreement, such controversy, claim or dispute shall be resolved in the state or federal courts in Santa Clara County, California, and the parties hereby irrevocably consent to the jurisdiction and venue of such courts. -7.2 Logo License. Authorize.Net hereby grants to You the right to use, reproduce, publish, perform and display Authorize.Net logo solely in accordance with the current Authorize.Net brand guidelines. -7.3 Severability and Waiver. If any provision of this Agreement is held to be illegal, invalid or otherwise unenforceable, such provision shall be enforced to the extent possible consistent with the stated intention of the parties, or, if incapable of such enforcement, shall be deemed to be severed and deleted from this Agreement, while the remainder of this Agreement shall continue in full force and effect. The waiver by either party of any default or breach of this Agreement shall not constitute a waiver of any other or subsequent default or breach. -7.4 No Assignment. You may not assign, sell, transfer, delegate or otherwise dispose of, whether voluntarily or involuntarily, by operation of law or otherwise, this Agreement or any rights or obligations under this Agreement without the prior written consent of Authorize.Net, which may be withheld in Authorize.Net’s sole discretion. Any purported assignment, transfer or delegation by You shall be null and void. Subject to the foregoing, this Agreement shall be binding upon and shall inure to the benefit of the parties and their respective successors and assigns. -7.5 Government Rights. If You (or any person or entity to whom you provide the Software or Documentation) are an agency or instrumentality of the United States Government, the Software and Documentation are “commercial computer software†and “commercial computer software documentation,†and pursuant to FAR 12.212 or DFARS 227.7202, and their successors, as applicable, use, reproduction and disclosure of the Software and Documentation are governed by the terms of this Agreement. -7.6 Export Administration. You shall comply fully with all relevant export laws and regulations of the United States, including, without limitation, the U.S. Export Administration Regulations (collectively “Export Controlsâ€). Without limiting the generality of the foregoing, You shall not, and You shall require Your representatives not to, export, direct or transfer the Software or the Documentation, or any direct product thereof, to any destination, person or entity restricted or prohibited by the Export Controls. -7.7 Privacy. In order to continually innovate and improve the Software, Licensee understands and agrees that Authorize.Net may collect certain usage statistics including but not limited to a unique identifier, associated IP address, version number of software, and information on which tools and/or services in the Software are being used and how they are being used. -7.8 Headings. The headings to the Sections and Subsections of this Agreement are included merely for convenience of reference and shall not affect the meaning of the language included therein. -7.9 Entire Agreement; Amendments. This Agreement constitutes the entire agreement between the parties and supersedes all prior or contemporaneous agreements or representations, written or oral, concerning the subject matter of this Agreement. Authorize.Net may make changes to this Agreement, Software or Documentation in its sole discretion. When these changes are made, Authorize.Net will make a new version of the Agreement, Software or Documentation available on the website where the Software is available. This Agreement may not be modified or amended by You except in a writing signed by a duly authorized representative of each party. You acknowledge and agree that -Authorize.Net has not made any representations, warranties or agreements of any kind, except as expressly set forth herein. - - -BY CLICKING “I ACCEPT,†“I AGREE†OR AN EQUIVALENT INDICATOR OR BY DOWNLOADING, INSTALLING OR USING THE SOFTWARE OR THE DOCUMENTATION, YOU ACKNOWLEDGE AND AGREE THAT (1) YOU HAVE READ AND REVIEWED THIS AGREEMENT IN ITS ENTIRETY, (2) YOU AGREE TO BE BOUND BY THIS AGREEMENT, (3) YOU HAVE THE POWER, AUTHORITY AND LEGAL RIGHT TO ENTER INTO THIS AGREEMENT ON BEHALF OF YOU AND, (4) THIS AGREEMENT CONSTITUTES BINDING AND ENFORCEABLE OBLIGATIONS OF YOU. - -v. July 9, 2014 diff --git a/resources/logging.properties b/resources/logging.properties deleted file mode 100644 index 17bbfc8..0000000 --- a/resources/logging.properties +++ /dev/null @@ -1,19 +0,0 @@ -# Specify the handlers to create in the root logger -# (all loggers are children of the root logger) -# The following creates two handlers -handlers = java.util.logging.ConsoleHandler, java.util.logging.FileHandler - -# Set the default logging level for the root logger -.level = SEVERE - -# Set the default logging level for new ConsoleHandler instances -java.util.logging.ConsoleHandler.level = ALL - -# Set the default logging level for new FileHandler instances -java.util.logging.FileHandler.level = ALL - -# Set the default formatter for new ConsoleHandler instances -java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter - -# Set the default logging level for the logger named xxx.yyyyy -net.authorize.util.HttpClient.level = ALL \ No newline at end of file diff --git a/sampleapp/.gitignore b/sampleapp/.gitignore old mode 100644 new mode 100755 index 9c4de58..39fb081 --- a/sampleapp/.gitignore +++ b/sampleapp/.gitignore @@ -1,3 +1,4 @@ +*.iml .gradle /local.properties /.idea/workspace.xml @@ -5,3 +6,4 @@ .DS_Store /build /captures +.externalNativeBuild diff --git a/sampleapp/.idea/.name b/sampleapp/.idea/.name deleted file mode 100644 index 750d488..0000000 --- a/sampleapp/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -SampleApplication \ No newline at end of file diff --git a/sampleapp/.idea/compiler.xml b/sampleapp/.idea/compiler.xml old mode 100644 new mode 100755 index 9a8b7e5..96cc43e --- a/sampleapp/.idea/compiler.xml +++ b/sampleapp/.idea/compiler.xml @@ -1,7 +1,6 @@ - diff --git a/sampleapp/.idea/misc.xml b/sampleapp/.idea/misc.xml old mode 100644 new mode 100755 index 016253b..7158618 --- a/sampleapp/.idea/misc.xml +++ b/sampleapp/.idea/misc.xml @@ -3,42 +3,29 @@ - - - - - - - - - Android Lint - - - Data flow issues - - - Groovy - - - Initialization issues - - - Serialization issues - - - Threading issues - - - Threading issuesGroovy - - - - - Abstraction issues - - - - + + + @@ -50,13 +37,26 @@ - + - - C:\Users\fzubair\AppData\Roaming\Subversion + + + + + 1.8 + + + + + + \ No newline at end of file diff --git a/sampleapp/.idea/modules.xml b/sampleapp/.idea/modules.xml old mode 100644 new mode 100755 index 5c457f3..8e5daf6 --- a/sampleapp/.idea/modules.xml +++ b/sampleapp/.idea/modules.xml @@ -2,8 +2,9 @@ - + + \ No newline at end of file diff --git a/sampleapp/.idea/runConfigurations.xml b/sampleapp/.idea/runConfigurations.xml new file mode 100755 index 0000000..7f68460 --- /dev/null +++ b/sampleapp/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/sampleapp/.idea/vcs.xml b/sampleapp/.idea/vcs.xml deleted file mode 100644 index 6564d52..0000000 --- a/sampleapp/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/sampleapp/SampleApplication.iml b/sampleapp/SampleApplication.iml deleted file mode 100644 index c3ab757..0000000 --- a/sampleapp/SampleApplication.iml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sampleapp/app/.gitignore b/sampleapp/app/.gitignore old mode 100644 new mode 100755 diff --git a/sampleapp/app/app.iml b/sampleapp/app/app.iml deleted file mode 100644 index 82433d5..0000000 --- a/sampleapp/app/app.iml +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/sampleapp/app/build.gradle b/sampleapp/app/build.gradle old mode 100644 new mode 100755 index 6a03fe6..92208e1 --- a/sampleapp/app/build.gradle +++ b/sampleapp/app/build.gradle @@ -1,17 +1,15 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 22 - buildToolsVersion "22.0.1" - + compileSdkVersion 24 + buildToolsVersion "25.0.0" defaultConfig { - applicationId "net.authorize.sampleapplication" - minSdkVersion 15 - targetSdkVersion 22 + applicationId "authorize.net.inperson_sdk_android" + minSdkVersion 21 + targetSdkVersion 24 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" - } buildTypes { release { @@ -22,14 +20,19 @@ android { } dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'com.android.support:appcompat-v7:22.2.0' - compile 'com.android.support:design:22.2.0' - compile 'com.android.support:recyclerview-v7:22.0.0' - compile 'com.android.support:cardview-v7:22.0.+' - compile files('libs/anet-java-sdk-android-2.0.5.jar') - androidTestCompile 'junit:junit:4.12' - androidTestCompile('com.android.support.test:testing-support-lib:0.1') { - exclude group: 'junit' // junit:junit-dep conflicts with junit:unit - } + compile fileTree(dir: 'libs', include: ['*.jar']) + androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { + exclude group: 'com.android.support', module: 'support-annotations' + }) + compile 'com.android.support:appcompat-v7:24.2.1' + testCompile 'junit:junit:4.12' + compile project(':emv-anet-sdk') + compile 'com.android.support:cardview-v7:23.3.0' + compile 'com.android.support:appcompat-v7:23.4.0' + compile 'com.madgag.spongycastle:prov:1.53.0.0' + compile 'org.apache.httpcomponents:httpcore:4.4.1' + compile 'org.apache.httpcomponents:httpclient:4.5' + testCompile 'junit:junit:4.12' + testCompile 'org.hamcrest:hamcrest-library:1.3' + } diff --git a/sampleapp/app/libs/anet-java-sdk-android-2.0.5.jar b/sampleapp/app/libs/anet-java-sdk-android-2.0.5.jar deleted file mode 100644 index 56fa9c9..0000000 Binary files a/sampleapp/app/libs/anet-java-sdk-android-2.0.5.jar and /dev/null differ diff --git a/sampleapp/app/proguard-rules.pro b/sampleapp/app/proguard-rules.pro old mode 100644 new mode 100755 index 0ecc4bb..2b76f44 --- a/sampleapp/app/proguard-rules.pro +++ b/sampleapp/app/proguard-rules.pro @@ -1,6 +1,6 @@ # Add project specific ProGuard rules here. # By default, the flags in this file are appended to flags specified -# in C:\Users\hpreslie\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt +# in C:\Users\yingh\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt # You can edit the include path and order by changing the proguardFiles # directive in build.gradle. # diff --git a/sampleapp/app/src/androidTest/java/authorize/net/inperson_sdk_android/ExampleInstrumentedTest.java b/sampleapp/app/src/androidTest/java/authorize/net/inperson_sdk_android/ExampleInstrumentedTest.java new file mode 100755 index 0000000..6b2b4df --- /dev/null +++ b/sampleapp/app/src/androidTest/java/authorize/net/inperson_sdk_android/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package authorize.net.inperson_sdk_android; + +import android.content.Context; +import android.support.test.InstrumentationRegistry; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumentation test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() throws Exception { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + + assertEquals("authorize.net.inperson_sdk_android", appContext.getPackageName()); + } +} diff --git a/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/ApplicationTest.java b/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/ApplicationTest.java deleted file mode 100644 index 19873a1..0000000 --- a/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/ApplicationTest.java +++ /dev/null @@ -1,13 +0,0 @@ -package net.authorize.sampleapplication; - -import android.app.Application; -import android.test.ApplicationTestCase; - -/** - * Testing Fundamentals - */ -public class ApplicationTest extends ApplicationTestCase { - public ApplicationTest() { - super(Application.class); - } -} \ No newline at end of file diff --git a/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/LoginActivityTest.java b/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/LoginActivityTest.java deleted file mode 100644 index fb3563a..0000000 --- a/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/LoginActivityTest.java +++ /dev/null @@ -1,124 +0,0 @@ -package net.authorize.sampleapplication; - -import android.app.Activity; -import android.app.Instrumentation; -import android.content.Intent; -import android.content.res.ColorStateList; -import android.graphics.Color; -import android.graphics.ColorFilter; -import android.graphics.drawable.ColorDrawable; -import android.graphics.drawable.Drawable; -import android.media.Image; -import android.support.design.widget.CoordinatorLayout; -import android.test.ActivityInstrumentationTestCase2; -import android.test.TouchUtils; -import android.test.ViewAsserts; -import android.view.View; -import android.widget.Button; -import android.widget.EditText; -import android.widget.ImageView; -import android.widget.ProgressBar; -import android.widget.TextView; - -import net.authorize.sampleapplication.services.AnetIntentService; - -/** - * Created by hpreslie on 7/22/2015. - */ -public class LoginActivityTest extends ActivityInstrumentationTestCase2 { - - private LoginActivity mLoginAcitivty; - private Instrumentation mInstrumentation; - private EditText mLoginIdEditText; - private EditText mPasswordEditText; - private Button mLoginButton; - private TextView loginIdErrorMessageTextView; - private TextView passwordErrorMessageTextView; - private ImageView loginIdIcon; - private ImageView passwordIcon; - private ProgressBar loginProgressBar; - - public LoginActivityTest() { - super(LoginActivity.class); - } - - @Override - protected void setUp() throws Exception { - super.setUp(); - setActivityInitialTouchMode(true); - mLoginAcitivty = getActivity(); - mInstrumentation = getInstrumentation(); - mLoginButton = (Button) getActivity().findViewById(R.id.login_button); - mLoginIdEditText = (EditText) getActivity().findViewById(R.id.loginId); - mPasswordEditText = (EditText) getActivity().findViewById(R.id.password); - loginIdErrorMessageTextView = (TextView) getActivity().findViewById(R.id.loginId_error_message); - passwordErrorMessageTextView = (TextView) getActivity().findViewById(R.id.password_error_message); - loginIdIcon = ((ImageView) getActivity().findViewById(R.id.loginId_icon)); - passwordIcon = ((ImageView) getActivity().findViewById(R.id.password_icon)); - loginProgressBar = (ProgressBar) getActivity().findViewById(R.id.login_progress_bar); - } - - public void testPreconditions() { - assertNotNull("mLoginAcitivty is null", mLoginAcitivty); - assertNotNull("mLoginButton is null", mLoginButton); - assertNotNull("mLoginIdEditText is null", mLoginIdEditText); - assertNotNull("mPasswordEditText is null", mPasswordEditText); - } - - public void testErrorMessages() throws Throwable{ - runTestOnUiThread(new Runnable() { - @Override - public void run() { - mLoginIdEditText.setText(""); - mPasswordEditText.setText(""); - } - }); - assertEquals(loginIdErrorMessageTextView.getVisibility(), View.VISIBLE); - assertEquals(passwordErrorMessageTextView.getVisibility(), View.VISIBLE); - assertEquals(loginIdErrorMessageTextView.getCurrentTextColor(), mLoginAcitivty.getResources().getColor(R.color.ErrorMessageColor)); - assertEquals(passwordErrorMessageTextView.getCurrentTextColor(), mLoginAcitivty.getResources().getColor(R.color.ErrorMessageColor)); - assertEquals(mLoginButton.isEnabled(), false); - assertEquals(loginProgressBar.getVisibility(), View.INVISIBLE); - } - - public void testNormalView() throws Throwable{ - runTestOnUiThread(new Runnable() { - @Override - public void run() { - mLoginIdEditText.setText("login"); - mPasswordEditText.setText("password"); - } - }); - assertEquals(loginIdErrorMessageTextView.getVisibility(), View.GONE); - assertEquals(passwordErrorMessageTextView.getVisibility(), View.GONE); - assertEquals(mLoginButton.isEnabled(), true); - assertEquals(loginProgressBar.getVisibility(), View.INVISIBLE); - } - - - public void testLoginButtonLaunchedNavigationActivity() throws Throwable { - Instrumentation.ActivityMonitor mNavigationActivityMonitor = - mInstrumentation.addMonitor(NavigationActivity.class.getName(), - null, false); - - TouchUtils.clickView(this, mLoginButton); - assertFalse(mLoginIdEditText.getText().length() == 0); - assertFalse(mPasswordEditText.getText().length() == 0); - assertEquals(loginIdErrorMessageTextView.getVisibility(), View.GONE); - assertEquals(passwordErrorMessageTextView.getVisibility(), View.GONE); - - // Wait for the Activity to Load - NavigationActivity receiverActivity = (NavigationActivity) - mNavigationActivityMonitor.waitForActivityWithTimeout(100); - - // Check the Activity has exists - assertNotNull("NavigationActivity is null", receiverActivity); - - // Check the Activity has loaded - assertEquals("Monitor for mNavigationActivityMonitor has not been called", - 1, mNavigationActivityMonitor.getHits()); - - // Remove the Activity Monitor - getInstrumentation().removeMonitor(mNavigationActivityMonitor); - } -} \ No newline at end of file diff --git a/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/TransactionResultTest.java b/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/TransactionResultTest.java deleted file mode 100644 index 6160a3a..0000000 --- a/sampleapp/app/src/androidTest/java/net/authorize/sampleapplication/TransactionResultTest.java +++ /dev/null @@ -1,85 +0,0 @@ -package net.authorize.sampleapplication; - -import android.app.Instrumentation; -import android.test.ActivityInstrumentationTestCase2; -import android.test.TouchUtils; -import android.widget.Button; - - -/** - * Created by hpreslie on 7/23/2015. - */ -public class TransactionResultTest extends ActivityInstrumentationTestCase2 { - - private TransactionResultActivity mTransactionResultActivity; - private Instrumentation mInstrumentation; - private Button mHistoryButton; - private Button mTransactionButton; - - public TransactionResultTest() { - super(TransactionResultActivity.class); - } - - - @Override - protected void setUp() throws Exception { - super.setUp(); - setActivityInitialTouchMode(true); - mTransactionResultActivity = getActivity(); - mInstrumentation = getInstrumentation(); - mHistoryButton = (Button) getActivity().findViewById(R.id.history_page_button); - mTransactionButton = (Button) getActivity().findViewById(R.id.make_new_transaction_button); - } - - public void testPreconditions() { - assertNotNull("mTransactionResultActivity is null", mTransactionResultActivity); - assertNotNull("mHistoryButton is null", mHistoryButton); - assertNotNull("mTransactionButton is null", mTransactionButton); - } - - public void testHistoryActivityWasLaunchedWithIntent() { - Instrumentation.ActivityMonitor mNavigationActivityMonitor = - mInstrumentation.addMonitor(NavigationActivity.class.getName(), - null, false); - - TouchUtils.clickView(this, mHistoryButton); - - // Wait for the Activity to Load - NavigationActivity receiverActivity = (NavigationActivity) - mNavigationActivityMonitor.waitForActivityWithTimeout(100); - - // Check the Activity has exists - assertNotNull("NavigationActivity is null", receiverActivity); - - // Check the Activity has loaded - assertEquals("Monitor for mNavigationActivityMonitor has not been called", - 1, mNavigationActivityMonitor.getHits()); - - // Remove the Activity Monitor - getInstrumentation().removeMonitor(mNavigationActivityMonitor); - - } - - - public void testTransactionActivityWasLaunchedWithIntent() { - Instrumentation.ActivityMonitor mNavigationActivityMonitor = - mInstrumentation.addMonitor(NavigationActivity.class.getName(), - null, false); - - TouchUtils.clickView(this, mTransactionButton); - - // Wait for the Activity to Load - NavigationActivity receiverActivity = (NavigationActivity) - mNavigationActivityMonitor.waitForActivityWithTimeout(100); - - // Check the Activity has exists - assertNotNull("NavigationActivity is null", receiverActivity); - - // Check the Activity has loaded - assertEquals("Monitor for mNavigationActivityMonitor has not been called", - 1, mNavigationActivityMonitor.getHits()); - - // Remove the Activity Monitor - getInstrumentation().removeMonitor(mNavigationActivityMonitor); - } -} \ No newline at end of file diff --git a/sampleapp/app/src/main/AndroidManifest.xml b/sampleapp/app/src/main/AndroidManifest.xml old mode 100644 new mode 100755 index 1b7fa9a..4cc0a9c --- a/sampleapp/app/src/main/AndroidManifest.xml +++ b/sampleapp/app/src/main/AndroidManifest.xml @@ -1,38 +1,28 @@ - - - - - + package="authorize.net.inperson_sdk_android"> + + + + + android:supportsRtl="true" + android:theme="@style/AppTheme"> + android:name=".MainActivity" + android:label="@string/app_name" > + + + + + - - - - - - + diff --git a/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/AppManager.java b/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/AppManager.java new file mode 100755 index 0000000..a814aa3 --- /dev/null +++ b/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/AppManager.java @@ -0,0 +1,13 @@ +package authorize.net.inperson_sdk_android; + +import net.authorize.Merchant; + +/** + * Created by vkinagi on 11/3/2015.jjj + */ +public class AppManager { + + public static Merchant merchant; + + +} diff --git a/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/LoginActivity.java b/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/LoginActivity.java new file mode 100755 index 0000000..b22caba --- /dev/null +++ b/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/LoginActivity.java @@ -0,0 +1,147 @@ +package authorize.net.inperson_sdk_android; + +import android.app.ProgressDialog; +import android.content.Context; +import android.content.Intent; +import android.os.Bundle; +import android.os.Handler; +import android.os.Message; +import android.support.v4.app.FragmentActivity; +import android.util.Log; +import android.view.View; +import android.widget.Button; +import android.widget.EditText; +import android.widget.Toast; + +import net.authorize.Environment; +import net.authorize.Merchant; +import net.authorize.TransactionType; +import net.authorize.aim.cardpresent.DeviceType; +import net.authorize.aim.cardpresent.MarketType; +import net.authorize.aim.emv.EMVTransaction; +import net.authorize.aim.emv.EMVTransactionManager; +import net.authorize.auth.PasswordAuthentication; +import net.authorize.auth.SessionTokenAuthentication; +import net.authorize.data.Order; +import net.authorize.data.OrderItem; +import net.authorize.data.creditcard.CreditCard; +import net.authorize.data.creditcard.CreditCardPresenceType; +import net.authorize.data.mobile.MobileDevice; + +import java.math.BigDecimal; + +/** + * Created by vkinagi on 11/3/2015. + */ +public class LoginActivity extends FragmentActivity { +Button b; +EditText login; +EditText pwd; + Context context; + + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.login); + b= (Button)findViewById(R.id.buttonLoginLoginIn); + b.setOnClickListener(mListner); + + login = (EditText)findViewById(R.id.editTextLoginLoginID); + pwd = (EditText)findViewById(R.id.editTextLoginPassword); + + +// login.setText("javasdk1"); +// pwd.setText("Authnet103"); + +// login.setText("FdcRetailOwner1"); +// pwd.setText("Authnet101"); + + + login.setText("MobileCNP1"); + pwd.setText("Authnet105"); + context = this; + } + + + Handler handler = new Handler(){ + +@Override +public void handleMessage(Message inputMessage) { + + if(inputMessage.what==0){ + Intent i = new Intent(context,MainActivity.class); + startActivity(i); + finish(); + pd.dismiss(); + } + else{ + pd.dismiss(); + Toast.makeText(context.getApplicationContext(),"Login Error",Toast.LENGTH_SHORT).show(); + } + +} + + }; + + ProgressDialog pd; + View.OnClickListener mListner = new View.OnClickListener(){ + + public void onClick(View view){ + Thread t = new Thread(){ + + @Override + public void run(){ + +// handler.sendEmptyMessage(0); + net.authorize.mobile.Result result; + String deviceID = "Test EMV Android"; + PasswordAuthentication passAuth = PasswordAuthentication + .createMerchantAuthentication(login.getText().toString(), pwd.getText().toString(), deviceID); + + AppManager.merchant = Merchant.createMerchant(Environment.SANDBOX, passAuth); + + net.authorize.mobile.Transaction transaction = AppManager.merchant + .createMobileTransaction(net.authorize.mobile.TransactionType.MOBILE_DEVICE_LOGIN); + MobileDevice mobileDevice = MobileDevice.createMobileDevice(deviceID, + "Device description", "425-555-0000", "Android"); + transaction.setMobileDevice(mobileDevice); + result = (net.authorize.mobile.Result) AppManager.merchant + .postTransaction(transaction); + + if(result.isOk()){ + + try { + SessionTokenAuthentication sessionTokenAuthentication = SessionTokenAuthentication + .createMerchantAuthentication(AppManager.merchant + .getMerchantAuthentication().getName(), result + .getSessionToken(), "Test EMV Android"); + if ((result.getSessionToken() != null) + && (sessionTokenAuthentication != null)) { + AppManager.merchant + .setMerchantAuthentication(sessionTokenAuthentication); + + handler.sendEmptyMessage(0); + } + } catch (Exception ex) { + + } + } + else{ + handler.sendEmptyMessage(1); + Log.e("EMVResponse",result.getXmlResponse()); +// Toast.makeText(context, result.getXmlResponse(),Toast.LENGTH_SHORT).show(); + } + + } + }; + t.start(); + pd = new ProgressDialog(context); + pd.setCancelable(false); + pd.setTitle("Logging in.."); + pd.setProgressStyle(android.R.style.Widget_ProgressBar_Small); + pd.show(); + + } + }; + + +} diff --git a/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/MainActivity.java b/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/MainActivity.java new file mode 100755 index 0000000..27f1388 --- /dev/null +++ b/sampleapp/app/src/main/java/authorize/net/inperson_sdk_android/MainActivity.java @@ -0,0 +1,464 @@ +package authorize.net.inperson_sdk_android; + +import android.Manifest; +import android.app.AlertDialog; +import android.app.Dialog; +import android.app.FragmentManager; +import android.app.ProgressDialog; +import android.content.Context; +import android.content.Intent; +import android.content.pm.PackageManager; +import android.media.AudioManager; +import android.os.Handler; +import android.os.Message; +import android.support.v4.app.ActivityCompat; +import android.support.v7.app.ActionBarActivity; +import android.os.Bundle; +import android.view.Menu; +import android.view.MenuInflater; +import android.view.MenuItem; +import android.view.View; +import android.widget.AdapterView; +import android.widget.ArrayAdapter; +import android.widget.Button; +import android.widget.EditText; +import android.widget.ProgressBar; +import android.widget.RelativeLayout; +import android.widget.Spinner; +import android.widget.TextView; +import android.widget.Toast; + +import net.authorize.ResponseReasonCode; +import net.authorize.aim.emv.EMVActivity; +import net.authorize.aim.emv.EMVErrorCode; +import net.authorize.aim.emv.EMVTransaction; +import net.authorize.aim.emv.EMVTransactionManager; +import net.authorize.aim.emv.EMVTransactionType; +import net.authorize.data.Order; +import net.authorize.data.OrderItem; +import net.authorize.mobile.Result; +import net.authorize.mobile.TransactionType; +import net.authorize.util.StringUtils; +import net.authorize.xml.MessageType; + +import org.w3c.dom.Text; + +import java.math.BigDecimal; +import java.text.DecimalFormat; +import java.text.DecimalFormatSymbols; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; + +public class MainActivity extends ActionBarActivity { + List list; + Button b; + EditText amount; + String spinnerAmountStr = "1"; + RelativeLayout cvrLayout; + private Dialog dialog; + + Handler myHandler = new Handler(){ + + @Override + public void handleMessage(Message msg) { + + pr.dismiss(); + finish(); + Intent i =new Intent(context,LoginActivity.class); + startActivity(i); + } + + }; + + + Context context; + + @Override + protected void onCreate(Bundle savedInstanceState) { + + super.onCreate(savedInstanceState); + context = this; + FragmentManager fmanager = this.getFragmentManager(); + + if(fmanager.findFragmentByTag("background")==null){ + + + } + setContentView(R.layout.activity_main); + b = (Button) findViewById(R.id.button); + + b.setOnClickListener(mListner); + amount = (EditText) findViewById(R.id.editTextAmount); + context = this; + + checkRuntimePermissions(); + } + private boolean addPermission(List permissionsList, String permission) { + if (ActivityCompat.checkSelfPermission(this, permission) + != PackageManager.PERMISSION_GRANTED) { + permissionsList.add(permission); + // Check for Rationale Option + if (!ActivityCompat.shouldShowRequestPermissionRationale(this, permission)) + return false; + } + return true; + } + boolean haveAllPermissions = false; + private void checkRuntimePermissions() { + List permissionsNeeded = new ArrayList<>(); + + final List permissionsList = new ArrayList<>(); + + if (!addPermission(permissionsList, Manifest.permission.RECORD_AUDIO)) + permissionsNeeded.add("'Record Audio' to make the card-swipers work correctly"); + if (!addPermission(permissionsList, Manifest.permission.WRITE_EXTERNAL_STORAGE)) + permissionsNeeded.add("and 'Read/Write External Storage' to store/retrieve information."); + if (!addPermission(permissionsList, Manifest.permission.READ_EXTERNAL_STORAGE)) + permissionsNeeded.add(""); + + if (!permissionsList.isEmpty()) { + haveAllPermissions = false; +// if (!permissionsNeeded.isEmpty()) { +// // Need Rationale +// String message = "Please allow access to " + permissionsNeeded.get(0); +// for (int i = 1; i < permissionsNeeded.size(); i++) +// if(!permissionsNeeded.get(i).isEmpty()) +// message = message + ", " + permissionsNeeded.get(i); +// showRationale("Permissions Request", permissionsList, message, ALLOW, CANCEL); +// return; +// } + ActivityCompat.requestPermissions(this, + permissionsList.toArray(new String[permissionsList.size()]), + 1); + return; + } + else { +// haveAllPermissions = true; + //rf.initializeDevice(); // already have permissions so initialize + } + } + + + + EMVTransactionManager.EMVTransactionListener iemvTransaction = new EMVTransactionManager.EMVTransactionListener() { + @Override + public void onEMVTransactionSuccessful(net.authorize.aim.emv.Result result) { + if (result != null) { + + + dialog = new Dialog(MainActivity.this); + dialog.setContentView(R.layout.receipt); + TextView status = (TextView) dialog.findViewById(R.id.textViewStatus); + status.setText("Transaction Successful"); + TextView amount = (TextView) dialog.findViewById(R.id.textViewResAmount); + + amount.setText("$" + spinnerAmountStr + " USD"); + TextView tid = (TextView) dialog.findViewById(R.id.textViewResTransId); + tid.setText(result.getTransId()); + TextView aid = (TextView) dialog.findViewById(R.id.textViewResApplicationId); + HashMap map = result.getEmvTlvMap(); + //4f is EMV code for application ID + if(map.get("4f")!=null){ + aid.setText( map.get("4f")); + } + else + aid.setVisibility(View.INVISIBLE); + + + + TextView mode = (TextView) dialog.findViewById(R.id.textViewResMode); + if (result.getIsIssuerResponse()) + mode.setText("ISSUER"); + else + mode.setText("CARD"); + + + + TextView tvr = (TextView) dialog.findViewById(R.id.textViewResTVR); + if (map.containsKey("95")) ; + tvr.setText(map.get("95")); + + TextView iad = (TextView) dialog.findViewById(R.id.textViewResIAD); + if (map.containsKey("9f10")) ; + iad.setText(map.get("9f10")); + + TextView tsi = (TextView) dialog.findViewById(R.id.textViewResTSI); + if (map.containsKey("9b")) ; + tsi.setText(map.get("9b")); + + TextView arc = (TextView) dialog.findViewById(R.id.textViewResARC); + if (map.containsKey("8a")) ; + arc.setText(map.get("8b")); + + +// cvrLayout = (RelativeLayout) dialog.findViewById(R.id.cvrLayout); + +// if(result.isShowSignature()) +// cvrLayout.setVisibility(View.VISIBLE); +// else +// cvrLayout.setVisibility(View.INVISIBLE); + + dialog.show(); + } else; +// Toast.makeText(getApplicationContext(), "Fallback swipe transactions will be supported in next release", Toast.LENGTH_LONG).show(); + +// Button button = (Button)dialog.findViewById(R.id.button); +// +// button.setOnClickListener(new View.OnClickListener(){ +// +// @Override +// public void onClick(View view){ +// +// } +// +// }); + + } + + View.OnClickListener listener =new View.OnClickListener(){ + + @Override + public void onClick(View view){ + + } + + }; + + @Override + public void onEMVReadError(EMVErrorCode emvError) { + if (emvError == EMVErrorCode.VOLUME_WARNING_NOT_ACCEPTED) { + AudioManager audioManager = (AudioManager) getSystemService(context.AUDIO_SERVICE); + audioManager.setStreamVolume(AudioManager.STREAM_MUSIC, audioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC),0); + } else { + AlertDialog.Builder adb = new AlertDialog.Builder(context); + adb.setTitle("EMV Status"); + adb.setNeutralButton("OK", null); + adb.setCancelable(true); + if (emvError != null) { + adb.setMessage(emvError.getErrorString()); + + } else + adb.setMessage("EMV Error"); + adb.create().show(); + } + } + + @Override + public void onEMVTransactionError(net.authorize.aim.emv.Result result, EMVErrorCode emvError) { + + + // do a time out error first + + if (result != null) { + + ArrayList message1 = null; + + message1 = result.getMessages(); + if (message1 != null + && message1.size() > 0 + && message1.get(0) != null + && message1.get(0).compareTo(MessageType.E00007) == 0) { + Toast.makeText(context.getApplicationContext(), "Session time out: Please log in again", Toast.LENGTH_SHORT).show(); + Intent i = new Intent(context, LoginActivity.class); + i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); + startActivity(i); + finish(); + return; + + } + } + + + if (result != null && result.getEmvTlvMap() != null) { + + HashMap emvMap = result.getEmvTlvMap(); + dialog = new Dialog(MainActivity.this); + dialog.setContentView(R.layout.receipt); + TextView amount = (TextView) dialog.findViewById(R.id.textViewResAmount); + amount.setText("$"+spinnerAmountStr + " USD"); + TextView tid = (TextView) dialog.findViewById(R.id.textViewResTransId); + if (result.getTransId() != null) + tid.setText(result.getTransId()); + + TextView mode = (TextView) dialog.findViewById(R.id.textViewResMode); + if (result.getIsIssuerResponse()) + mode.setText("ISSUER"); + else + mode.setText("CARD"); + + TextView aid = (TextView) dialog.findViewById(R.id.textViewResApplicationId); +// + if(emvMap.get("4f")!=null){ + aid.setText("ApplicationId: " + emvMap.get("4f")); + } + else + aid.setVisibility(View.INVISIBLE); + + TextView tvr = (TextView) dialog.findViewById(R.id.textViewResTVR); + if (emvMap.containsKey("95")) ; + tvr.setText(emvMap.get("95")); + + TextView iad = (TextView) dialog.findViewById(R.id.textViewResIAD); + if (emvMap.containsKey("9f10")) ; + iad.setText(emvMap.get("9f10")); + + TextView tsi = (TextView) dialog.findViewById(R.id.textViewResTSI); + if (emvMap.containsKey("9b")) ; + tsi.setText(emvMap.get("9b")); + + TextView arc = (TextView) dialog.findViewById(R.id.textViewResARC); + if (emvMap.containsKey("8a")) ; + arc.setText(emvMap.get("8b")); + + TextView errorMsg = (TextView) dialog.findViewById(R.id.textViewStatus); + + + // + ArrayList responseError = result + .getTransactionResponseErrors(); + if (responseError != null + && responseError.size() > 0 + && !StringUtils.isEmpty(responseError + .get(0).getReasonText())) + errorMsg.setText(responseError.get(0) + .getReasonText()); + + else + errorMsg.setText("Transaction Unsuccessful"); + + // + + TextView merchantText = (TextView) dialog.findViewById(R.id.textViewResMerchant); + merchantText.setVisibility(View.GONE); + dialog.show(); + + + } else { + + ///else + + AlertDialog.Builder adb = new AlertDialog.Builder(context); + ArrayList message = null; + if (result != null) { + message = result.getMessages(); + } + + if (result == null) { + if (emvError == EMVErrorCode.TRANSACTION_DECLINED) + adb.setMessage(String.valueOf(emvError.getError()) + "Transaction Decline"); + } else if (message != null + && message.size() > 0 + && message.get(0) != null + && message.get(0).compareTo(MessageType.E00007) == 0) { + Toast.makeText(context.getApplicationContext(), "Session time out: Please log in again", Toast.LENGTH_SHORT).show(); + Intent i = new Intent(context, LoginActivity.class); + i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); + startActivity(i); + finish(); + + + } else { + ArrayList responseError = result + .getTransactionResponseErrors(); + if (responseError != null + && responseError.size() > 0 + && !StringUtils.isEmpty(responseError + .get(0).getReasonText())) + adb.setMessage(responseError.get(0) + .getReasonText()); + + else + adb.setMessage("Transaction Unsuccessful"); + } + + adb.setTitle("EMV Status"); + adb.setNeutralButton("OK", null); + adb.setCancelable(true); + adb.create().show(); + + } + + + } + + + + }; + + View.OnClickListener mListner = new View.OnClickListener() { + + public void onClick(View view) { + + if(AppManager.merchant==null){ + Intent i = new Intent(context, LoginActivity.class); + i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); + startActivity(i); + finish(); + return; + } + + String value = amount.getText().toString(); + if (StringUtils.isEmpty(value)) + value = "0.0"; + spinnerAmountStr = value; + Order order = Order.createOrder(); + OrderItem oi = OrderItem.createOrderItem(); + oi.setItemId("1"); + oi.setItemName("name"); + + oi.setItemQuantity("1"); + oi.setItemTaxable(false); + oi.setItemDescription("desc"); + oi.setItemDescription("Goods"); + + order.addOrderItem(oi); + BigDecimal transAmount = new BigDecimal(value); + oi.setItemPrice(transAmount); + order.setTotalAmount(transAmount); + EMVTransaction emvTransaction = EMVTransactionManager.createEMVTransaction(AppManager.merchant, transAmount); + emvTransaction.setEmvTransactionType(EMVTransactionType.GOODS); + emvTransaction.setOrder(order); + emvTransaction.setSolutionID("SOLUTION ID"); + EMVTransactionManager.startEMVTransaction(emvTransaction, iemvTransaction, context); + + } + }; + + @Override + public boolean onCreateOptionsMenu(Menu menu){ + + MenuInflater inflater = getMenuInflater(); + inflater.inflate(R.menu.menu_main, menu); + return true; + } + + ProgressDialog pr; + +// @Override +// public boolean onOptionsItemSelected(MenuItem item) { +// // Handle item selection +// switch (item.getItemId()) { +// case R.id.logout: +// pr = new ProgressDialog(context); +// pr.setIndeterminate(true); +// pr.setMessage("Logging out..."); +// pr.show(); +// Thread t = new Thread(){ +// @Override +// public void run(){ +// +// net.authorize.mobile.Transaction logoutTrans = AppManager.merchant.createMobileTransaction(TransactionType.LOGOUT); +// +// Result r = (Result)AppManager.merchant.postTransaction(logoutTrans); +// myHandler.sendEmptyMessage(1); +// } +// }; +// t.start(); +// return true; +// } +// +// return false; +// } + +} \ No newline at end of file diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/AnetBaseActivity.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/AnetBaseActivity.java deleted file mode 100644 index 4615060..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/AnetBaseActivity.java +++ /dev/null @@ -1,209 +0,0 @@ -package net.authorize.sampleapplication; - -import android.app.Activity; -import android.app.ProgressDialog; -import android.content.Context; -import android.content.DialogInterface; -import android.content.Intent; -import android.net.ConnectivityManager; -import android.net.NetworkInfo; -import android.support.design.widget.CoordinatorLayout; -import android.support.design.widget.Snackbar; -import android.support.v7.app.ActionBarActivity; -import android.os.Bundle; -import android.support.v7.app.AlertDialog; -import android.util.Log; -import android.view.Menu; -import android.view.MotionEvent; -import android.view.View; -import android.view.ViewGroup; -import android.view.inputmethod.InputMethodManager; -import android.widget.EditText; - -import net.authorize.sampleapplication.models.AnetSingleton; - -/** - * Base activity that all activities inherit from. - * Contains functions applicable to all/some activities in the application - */ -public abstract class AnetBaseActivity extends ActionBarActivity { - private ProgressDialog progressDialog; - private AlertDialog alertDialog; - - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - } - - - @Override - public boolean onCreateOptionsMenu(Menu menu) { - getMenuInflater().inflate(R.menu.menu_anet_base, menu); - return true; - } - - - @Override - protected void onResume() { - super.onResume(); - // checks if the merchant is null every time the application resumes - // so that the session will never be expired inside the application - if (!(this instanceof LoginActivity) && AnetSingleton.merchant == null) { - displaySessionExpiredDialog(); - } - } - - - /** - * Sets an OnTouchListener to each element present in the UI that is not an instance - * of EditText so that the user can click on any part of the activity to hide the keyboard - * @param view view in the UI - */ - public void setupClickableUI(View view) { - if(!(view instanceof EditText)) { - view.setOnTouchListener(new View.OnTouchListener() { - @Override - public boolean onTouch(View v, MotionEvent event) { - hideSoftKeyboard(AnetBaseActivity.this); - return false; - } - }); - } - if (view instanceof ViewGroup) { - for (int i = 0; i < ((ViewGroup) view).getChildCount(); i++) { - View innerView = ((ViewGroup) view).getChildAt(i); - setupClickableUI(innerView); - } - } - } - - /** - * Hides the typing keyboard. - * @param activity current activity - */ - public static void hideSoftKeyboard(Activity activity) { - InputMethodManager inputMethodManager = (InputMethodManager) - activity.getSystemService(Activity.INPUT_METHOD_SERVICE); - if (activity.getCurrentFocus() != null) - inputMethodManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0); - } - - - /** - * Displays a snackbar - * @param coordinatorLayout layout that holds the snackbar - * @param transactionType string that determines the action of the snackbar for the fragments - * @param snackBarTextId string ID of the text to be displayed in the snackbar - * @param actionId string ID of the text to be displayed in the action text of the snackbar - */ - public void displaySnackbar(CoordinatorLayout coordinatorLayout, final String transactionType, - int snackBarTextId, int actionId) { - final Activity activity = this; - Snackbar - .make(coordinatorLayout, snackBarTextId, Snackbar.LENGTH_LONG) - .setAction(actionId, new View.OnClickListener() { - @Override - public void onClick(View v) { - if (activity instanceof LoginActivity) { - ((LoginActivity) activity).attemptLogin(); - } else if (activity instanceof NavigationActivity) { - ((NavigationActivity) activity).retryAction(transactionType); - } - } - }) - .show(); - } - - - /** - * Displays a one choice dialog - * @param title title of the dialog - * @param message message of the dialog - */ - public void displayOkDialog (String title, String message) { - AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this); - alertDialogBuilder - .setTitle(title) - .setMessage(message) - .setCancelable(false) - .setPositiveButton("Ok", new DialogInterface.OnClickListener() { - public void onClick(DialogInterface dialog, int id) { - dialog.dismiss(); - } - }); - alertDialog = alertDialogBuilder.create(); - alertDialog.show(); - } - - - /** - * Displays a dialog to the user to either close the application or login again - * when the session has expired - */ - public void displaySessionExpiredDialog () { - AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this); - alertDialogBuilder - .setTitle(getResources().getString(R.string.dialog_title_session_expired)) - .setMessage(getResources().getString(R.string.dialog_message_session_expired)) - .setCancelable(false) - .setPositiveButton(getResources().getString(R.string.dialog_session_expired_yes_choice), - new DialogInterface.OnClickListener() { - public void onClick(DialogInterface dialog, int id) { - dialog.dismiss(); - launchLogin(); - } - }) - .setNegativeButton(getResources().getString(R.string.dialog_session_expired_no_choice), - new DialogInterface.OnClickListener() { - public void onClick(DialogInterface dialog, int id) { - dialog.dismiss(); - System.exit(0); - } - }); - alertDialog = alertDialogBuilder.create(); - alertDialog.show(); - } - - - /** - * Starts the login activity - */ - private void launchLogin() { - Intent intent = new Intent(this, LoginActivity.class); - startActivity(intent); - finish(); - } - - - /** - * Displays a progress dialog - * @param title title of the dialog - * @param message message of the dialog - */ - public void showIndeterminateProgressDialog(String title, String message) { - progressDialog = new ProgressDialog(this); - progressDialog = ProgressDialog.show(this, title, message, true); - progressDialog.setCancelable(false); - } - - - /** - * Dismisses the progress dialog - */ - public void dismissIndeterminateProgressDialog() { - progressDialog.dismiss(); - } - - - /** - * Determines whether the network is available - * @return whether the network is available - */ - public boolean isNetworkAvailable() { - ConnectivityManager connectivityManager - = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); - NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); - return activeNetworkInfo != null && activeNetworkInfo.isConnected(); - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/LoginActivity.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/LoginActivity.java deleted file mode 100644 index 75ae980..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/LoginActivity.java +++ /dev/null @@ -1,212 +0,0 @@ -package net.authorize.sampleapplication; - -import android.app.FragmentManager; -import android.content.Intent; -import android.graphics.drawable.Drawable; -import android.os.Build; -import android.support.design.widget.CoordinatorLayout; - -import android.os.Bundle; -import android.text.Editable; -import android.text.TextWatcher; -import android.view.KeyEvent; -import android.view.View; -import android.widget.Button; -import android.widget.EditText; -import android.widget.ImageView; -import android.widget.ProgressBar; -import android.widget.TextView; - -import net.authorize.mobile.Result; -import net.authorize.sampleapplication.fragments.LoginActivityRetainedFragment; -import net.authorize.sampleapplication.services.AnetIntentService; - -/** - * Allows the user to login into Authorize.Net sandbox account using valid - * login and password credentials - */ -public class LoginActivity extends AnetBaseActivity implements - LoginActivityRetainedFragment.OnFragmentInteractionListener{ - - public static final String LOGIN_ID_TAG = "LOGIN_ID"; - public static final String PASSWORD_TAG = "PASSWORD"; - private static final String AUTHENTICATE_USER_FRAGMENT = "authenticate_user_fragment"; - private EditText loginIdEditText; - private EditText passwordEditText; - private TextView loginIdErrorMessageTextView; - private TextView passwordErrorMessageTextView; - private Drawable loginIdIcon; - private Drawable passwordIcon; - private ProgressBar loginProgressBar; - private Button loginButton; - private CoordinatorLayout coordinatorLayout; - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_login); - setupClickableUI(findViewById(R.id.login_page)); - setupViews(); - setupErrorMessages(); - } - - /** - * Sets variables with their views in the layout XML - */ - private void setupViews() { - loginIdEditText = (EditText) findViewById(R.id.loginId); - passwordEditText = (EditText) findViewById(R.id.password); - loginIdErrorMessageTextView = (TextView) findViewById(R.id.loginId_error_message); - passwordErrorMessageTextView = (TextView) findViewById(R.id.password_error_message); - loginIdIcon = ((ImageView) findViewById(R.id.loginId_icon)).getDrawable(); - passwordIcon = ((ImageView) findViewById(R.id.password_icon)).getDrawable(); - coordinatorLayout = (CoordinatorLayout) findViewById(R.id.snackbarPosition); - passwordEditText.setOnKeyListener(new View.OnKeyListener() { - @Override - public boolean onKey(View v, int keyCode, KeyEvent event) { - return attemptLoginOnEnter(keyCode); - } - }); - loginButton = (Button) findViewById(R.id.login_button); - loginButton.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View v) { - attemptLogin(); - } - }); - } - - - /** - * Allows the user to login when an enter is clicked on the keyboard - * @param keyCode the code for the physical key that was pressed - * @return - */ - public boolean attemptLoginOnEnter(int keyCode) { - if (keyCode == KeyEvent.KEYCODE_ENTER) { - hideSoftKeyboard(this); - attemptLogin(); - return true; - } else { - return false; - } - } - - - /** - * Sends the credentials (username and password) from the edit texts - * to a retained fragment for backend authentication. - */ - public void attemptLogin() { - String loginId = loginIdEditText.getText().toString(); - String password = passwordEditText.getText().toString(); - boolean credentialsVerified = verifyCredentials(loginId, password); - if (!isNetworkAvailable()) { - displaySnackbar(coordinatorLayout, "", R.string.snackbar_text_no_network_connection, R.string.snackbar_action_retry); - } else if (!credentialsVerified) { - displayOkDialog(getResources().getString(R.string.dialog_title_login_error), getResources().getString(R.string.dialog_message_login_error)); - } else { - FragmentManager fragmentManager = getFragmentManager(); - LoginActivityRetainedFragment retainedFragment = (LoginActivityRetainedFragment) fragmentManager. - findFragmentByTag(AUTHENTICATE_USER_FRAGMENT); - if (retainedFragment == null) { - retainedFragment = new LoginActivityRetainedFragment(); - Bundle credentials = new Bundle(); - credentials.putString(LOGIN_ID_TAG, loginId); - credentials.putString(PASSWORD_TAG, password); - retainedFragment.setArguments(credentials); - fragmentManager.beginTransaction().add(retainedFragment, - AUTHENTICATE_USER_FRAGMENT).commit(); - } else { - retainedFragment.startServiceAuthenticateUser(loginId, password); - } - loginProgressBar = (ProgressBar) findViewById(R.id.login_progress_bar); - loginProgressBar.setVisibility(View.VISIBLE); - } - } - - - /** - * Checks if either login field is empty - * @param loginId text entered in the login edit text - * @param password text entered in the password edit text - * @return - */ - private boolean verifyCredentials(String loginId, String password) { - if (loginId == null || loginId.trim().length() == 0) - return false; - if (password == null || password.trim().length() == 0) - return false; - return true; - } - - - /** - * Sets up custom error messages for the login fields. - */ - private void setupErrorMessages() { - loginIdEditText.addTextChangedListener(new LoginTextWatcher - (loginIdErrorMessageTextView, loginIdIcon, loginButton)); - passwordEditText.addTextChangedListener(new LoginTextWatcher - (passwordErrorMessageTextView, passwordIcon, loginButton)); - } - - - /** - * Callback method that receives the results of the user authentication - * from the intent service - * @param resultData the result of the authentication - */ - public void onReceiveAuthenticateUserResult(Bundle resultData) { - Result loginResult = (Result) resultData.getSerializable - (AnetIntentService.AUTHENTICATE_USER_STATUS); - loginProgressBar.setVisibility(View.INVISIBLE); - if (loginResult.isResponseOk()) { - Intent intent = new Intent(this, NavigationActivity.class); - startActivity(intent); - finish(); - } else if (loginResult.getMessages().size() != 0){ - displayOkDialog(getResources().getString(R.string.dialog_title_login_error), - getResources().getString(R.string.dialog_message_login_error)); - } else { - displayOkDialog(getResources().getString(R.string.dialog_title_login_error), - getResources().getString(R.string.dialog_message_unknown_error)); - } - } - - - - /** - * Class used to display custom error messages when the - * login fields are empty - */ - private class LoginTextWatcher implements TextWatcher { - private TextView textView; - private Drawable icon; - private Button loginButton; - - public LoginTextWatcher(TextView textView, Drawable icon, Button loginButton) { - this.textView = textView; - this.icon = icon; - this.loginButton = loginButton; - } - @Override - public void beforeTextChanged(CharSequence s, int start, int count, int after) {} - @Override - public void onTextChanged(CharSequence s, int start, int before, int count) {} - @Override - public void afterTextChanged(Editable s) { - if (s.length() == 0) { - textView.setVisibility(View.VISIBLE); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) - icon.setTint(getResources().getColor(R.color.ErrorMessageColor)); - loginButton.setEnabled(false); - } else { // restores layout - textView.setVisibility(View.GONE); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) - icon.setTint(getResources().getColor(R.color.ThemeColor)); - loginButton.setEnabled(true); - } - } - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/NavigationActivity.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/NavigationActivity.java deleted file mode 100644 index 766140d..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/NavigationActivity.java +++ /dev/null @@ -1,511 +0,0 @@ -package net.authorize.sampleapplication; - -import android.content.Intent; -import android.os.Build; -import android.support.design.widget.CoordinatorLayout; -import android.support.design.widget.NavigationView; -import android.support.v4.app.Fragment; -import android.support.v4.app.FragmentManager; -import android.support.v4.view.GravityCompat; -import android.support.v4.widget.DrawerLayout; -import android.support.v7.app.ActionBarDrawerToggle; -import android.support.v7.widget.Toolbar; -import android.os.Bundle; -import android.view.Menu; -import android.view.MenuItem; -import android.view.View; -import android.widget.AdapterView; -import android.widget.ArrayAdapter; -import android.widget.Spinner; - -import net.authorize.aim.Result; -import net.authorize.data.reporting.TransactionDetails; -import net.authorize.sampleapplication.fragments.HistoryFragment; -import net.authorize.sampleapplication.fragments.HistoryRetainedFragment; -import net.authorize.sampleapplication.fragments.LogoutRetainedFragment; -import net.authorize.sampleapplication.fragments.TransactionFragment; -import net.authorize.sampleapplication.fragments.TransactionRetainedFragment; -import net.authorize.sampleapplication.services.AnetIntentService; - -import java.util.ArrayList; - - -/** - * Allows the user to navigate between two fragments: (1) charging a credit card (manually or with - * swipe data) or (2) getting unsettled/settled transactions and voiding/refunding a transaction - */ -public class NavigationActivity extends AnetBaseActivity implements - LogoutRetainedFragment.OnFragmentInteractionListener, - TransactionRetainedFragment.OnFragmentInteractionListener, - HistoryRetainedFragment.OnHistoryTransactionListener { - - public static final String TRANSACTION_FRAGMENT_TAG = "TRANSACTION_FRAGMENT"; - public static final String HISTORY_FRAGMENT_TAG = "HISTORY_FRAGMENT"; - public static final String LOGOUT_FRAGMENT_TAG = "LOGOUT_FRAGMENT"; - public static final String TRANSACTION_SETTLED = "Settled Transactions"; - public static final String TRANSACTION_UNSETTLED = "Unsettled Transactions"; - public static final String FRAGMENT_TYPE = "FRAGMENT_TYPE"; - private DrawerLayout drawerLayout; - private NavigationView navigationView; - private Toolbar toolbar; - private CoordinatorLayout coordinatorLayout; - private Spinner transactionHistorySpinner; - private String fragmentFromIntent; - - - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_navigation); - setupViews(); - commitFragment(); - setupToolbar(); - setupNavigationDrawer(); - } - - - @Override - public boolean onOptionsItemSelected(MenuItem item) { - switch(item.getItemId()) { - case R.id.action_logout: - performLogout(); - return true; - case android.R.id.home: - drawerLayout.openDrawer(GravityCompat.START); - return true; - } - return super.onOptionsItemSelected(item); - } - - - @Override - public boolean onCreateOptionsMenu(Menu menu) { - getMenuInflater().inflate(R.menu.menu_navigation, menu); - if (getCurrentFragmentTag() == null) { - return false; - } - switch (getCurrentFragmentTag()) { - case TRANSACTION_FRAGMENT_TAG: - transactionHistorySpinner.setVisibility(View.GONE); - break; - case HISTORY_FRAGMENT_TAG: - transactionHistorySpinner.setVisibility(View.VISIBLE); - break; - } - return true; - } - - - /** - * Sets variables with their views in the layout XML - */ - private void setupViews() { - toolbar = (Toolbar) findViewById(R.id.toolbar); - drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); - navigationView = (NavigationView) findViewById(R.id.navigation_view); - coordinatorLayout = (CoordinatorLayout) findViewById(R.id.snackbarPosition); - transactionHistorySpinner = (Spinner) findViewById(R.id.history_spinner); - setupSpinner(); - } - - - /** - * Sets up spinner in toolbar with a custom layout, adapter, and listener. - */ - private void setupSpinner() { - String[] transactionTypes = new String[]{TRANSACTION_UNSETTLED, TRANSACTION_SETTLED}; - ArrayAdapter transactionSpinnerAdapter = new ArrayAdapter<>(this, - R.layout.history_spinner_item, transactionTypes); - transactionSpinnerAdapter.setDropDownViewResource(R.layout.history_spinner_item_dropdown); - transactionHistorySpinner.setAdapter(transactionSpinnerAdapter); - transactionHistorySpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { - @Override - public void onItemSelected(AdapterView parent, View view, int position, long id) { - HistoryFragment historyFragment = (HistoryFragment) getSupportFragmentManager(). - findFragmentByTag(HISTORY_FRAGMENT_TAG); - String transactionListType = parent.getItemAtPosition(position).toString(); - if (historyFragment == null) - return; - historyFragment.getListOfTransactions(transactionListType, false); - } - - @Override - public void onNothingSelected(AdapterView parent) { - } - }); - } - - - /** - * Commits a specified fragment to the frame layout based on intent extras (used in - * TransactionResultActivity) or commits the default - */ - private void commitFragment() { - fragmentFromIntent = null; - Bundle extras = null; - if (getIntent() != null) - extras = getIntent().getExtras(); - if (extras != null) - fragmentFromIntent = extras.getString(FRAGMENT_TYPE); - if (fragmentFromIntent != null) { - switch (fragmentFromIntent) { - case TRANSACTION_FRAGMENT_TAG: - setToolbarShadow(false); - Fragment transactionFragment = TransactionFragment.newInstance(); - getSupportFragmentManager().beginTransaction().replace - (R.id.content, transactionFragment, fragmentFromIntent).commit(); - break; - case HISTORY_FRAGMENT_TAG: - setToolbarShadow(true); - Fragment historyFragment = HistoryFragment.newInstance(); - getSupportFragmentManager().beginTransaction().replace - (R.id.content, historyFragment, fragmentFromIntent).commit(); - break; - } - } else { // default fragment to commit if no fragment is specified - setToolbarShadow(false); - Fragment transactionFragment = TransactionFragment.newInstance(); - getSupportFragmentManager().beginTransaction().replace - (R.id.content, transactionFragment, TRANSACTION_FRAGMENT_TAG).commit(); - } - } - - - /** - * Sets a shadow to the toolbar - * @param shadow whether a shadow should be added to the toolbar - */ - public void setToolbarShadow(boolean shadow) { - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { - if (shadow) - toolbar.setElevation(15); - else - toolbar.setElevation(0); - } - } - - - /** - * Sets up the toolbar for the activity - */ - private void setupToolbar() { - if (toolbar != null ) { - setSupportActionBar(toolbar); - if (getSupportActionBar() != null){ - getSupportActionBar().setTitle(""); - getSupportActionBar().setDisplayHomeAsUpEnabled(true); - } - } - } - - /** - * @return coordinatorLayout for the activity - */ - public CoordinatorLayout getCoordinatorLayout() { - return coordinatorLayout; - } - - - /** - * Refreshes or retries the transaction - * @param transactionType type of transaction (used to distinguish between swipe or manual entry transaction) - */ - public void retryAction(final String transactionType) { - switch (getCurrentFragmentTag()) { - case TRANSACTION_FRAGMENT_TAG: - TransactionFragment transactionFragment = (TransactionFragment) - getSupportFragmentManager().findFragmentByTag(TRANSACTION_FRAGMENT_TAG); - if (transactionType.equals(AnetIntentService.ACTION_MAKE_TRANSACTION)) - transactionFragment.makeTransaction(); - else if (transactionType.equals(AnetIntentService.ACTION_PERFORM_SWIPE)) - transactionFragment.performSwipe(); - break; - case HISTORY_FRAGMENT_TAG: - HistoryFragment historyFragment = (HistoryFragment) getSupportFragmentManager(). - findFragmentByTag(HISTORY_FRAGMENT_TAG); - historyFragment.getListOfTransactions(getSpinnerTransactionType(), false); - break; - } - } - - - /** - * Sets up the navigation drawer - */ - public void setupNavigationDrawer() { - ActionBarDrawerToggle drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, - toolbar, R.string.open_drawer_action, R.string.closer_drawer_action); - drawerLayout.setDrawerListener(drawerToggle); - drawerToggle.syncState(); - if (toolbar != null) { - toolbar.setNavigationOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View v) { - drawerLayout.openDrawer(GravityCompat.START); - } - }); - } - navigationView.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() { - @Override - public boolean onNavigationItemSelected(MenuItem menuItem) { - updateFragmentOnSelection(menuItem); - return true; - } - }); - updateCheckedSelection(fragmentFromIntent); - } - - - /** - * Commits a fragment based on the item selected in the navigation drawer and then closes - * the drawer - * @param menuItem item in the navigation drawer - */ - private void updateFragmentOnSelection(MenuItem menuItem) { - FragmentManager fragmentManager = getSupportFragmentManager(); - Fragment fragment = null; - String tag = ""; - menuItem.setChecked(true); - switch (menuItem.getItemId()) { - case R.id.drawer_transaction: - setToolbarShadow(false); - tag = TRANSACTION_FRAGMENT_TAG; - fragment = fragmentManager.findFragmentByTag(tag); - if (fragment == null) - fragment = TransactionFragment.newInstance(); - break; - case R.id.drawer_history: - setToolbarShadow(true); - tag = HISTORY_FRAGMENT_TAG; - fragment = fragmentManager.findFragmentByTag(tag); - if (fragment == null) - fragment = HistoryFragment.newInstance(); - break; - } - drawerLayout.closeDrawer(GravityCompat.START); - getSupportFragmentManager().beginTransaction().replace(R.id.content, fragment, tag).commit(); - } - - - /** - * Updates the highlighted item (item checked) in the navigation drawer to the - * fragment currently being displayed (necessary if sent from another activity) - * @param fragmentFromIntent fragment committed from intent - */ - private void updateCheckedSelection(String fragmentFromIntent) { - MenuItem transactionItem = navigationView.getMenu().findItem(R.id.drawer_transaction); - MenuItem historyItem = navigationView.getMenu().findItem(R.id.drawer_history); - if (fragmentFromIntent == null) { - transactionItem.setChecked(true); - } else switch (fragmentFromIntent) { - case TRANSACTION_FRAGMENT_TAG: - historyItem.setChecked(false); - transactionItem.setChecked(true); - break; - case HISTORY_FRAGMENT_TAG: - transactionItem.setChecked(false); - historyItem.setChecked(true); - break; - } - } - - - /** - * Begins a logout transaction - */ - private void performLogout() { - FragmentManager fragmentManager = getSupportFragmentManager(); - LogoutRetainedFragment logoutFragment = (LogoutRetainedFragment) fragmentManager. - findFragmentByTag(LOGOUT_FRAGMENT_TAG); - if (logoutFragment == null) { - logoutFragment = new LogoutRetainedFragment(); - fragmentManager.beginTransaction().add(logoutFragment, LOGOUT_FRAGMENT_TAG).commit(); - } else { - logoutFragment.startServiceLogout(); - } - } - - - /** - * Gets the tag of the current fragment displayed - * @return the tag of the current fragment - */ - public String getCurrentFragmentTag() { - TransactionFragment transactionFragment = (TransactionFragment) getSupportFragmentManager(). - findFragmentByTag(TRANSACTION_FRAGMENT_TAG); - HistoryFragment historyFragment = (HistoryFragment) getSupportFragmentManager(). - findFragmentByTag(HISTORY_FRAGMENT_TAG); - if (transactionFragment != null && transactionFragment.isVisible()) - return TRANSACTION_FRAGMENT_TAG; - if (historyFragment != null && historyFragment.isVisible()) - return HISTORY_FRAGMENT_TAG; - return null; - } - - - /** - * Gets a string value of the current transaction type (unsettled or settled) displayed - * @return string of the transaction type displayed in the spinner - */ - public String getSpinnerTransactionType() { - return transactionHistorySpinner.getSelectedItem().toString(); - } - - - /** - * Launches the login activity and finished the current activity when logoout result is received - * @param resultData the result of the logout transaction - */ - @Override - public void onReceiveLogoutResult(Bundle resultData) { - net.authorize.mobile.Result result = (net.authorize.mobile.Result) - resultData.getSerializable(AnetIntentService.LOGOUT_STATUS); - if (result.isResponseOk()) { - Intent intent = new Intent(this, LoginActivity.class); - startActivity(intent); - finish(); - } else { - displayOkDialog(getResources().getString(R.string.dialog_title_unknown_error), - getResources().getString(R.string.dialog_message_unknown_error)); - } - } - - - /** - * Updates the UI based on the status of the manual/swipe transaction result - * @param resultData the result of a manual or swipe transaction - */ - @Override - public void onReceiveTransactionResult(Bundle resultData) { - Result transactionResult = (Result) resultData.getSerializable(AnetIntentService.TRANSACTION_STATUS); - dismissIndeterminateProgressDialog(); - String fragmentTag = getCurrentFragmentTag(); - if (fragmentTag == null) - return; - switch(fragmentTag) { - case TRANSACTION_FRAGMENT_TAG: - if (transactionResult != null && !transactionResult.isApproved()) { - String title = getResources().getString(R.string.dialog_title_transaction_unsuccessful); - if (transactionResult.getTransactionResponseErrors().size() != 0) { - String errorMessage = transactionResult.getTransactionResponseErrors().get(0).getReasonText(); - displayOkDialog(title, errorMessage); - } else { - displayOkDialog(getResources().getString(R.string.dialog_title_unknown_error), getResources().getString(R.string.dialog_message_check_unsettled_transactions)); - } - } else { - Intent intent = new Intent(this, TransactionResultActivity.class); - intent.putExtra(TransactionResultActivity.TRANSACTION_RESULT, transactionResult); - startActivity(intent); - finish(); - } - break; - case HISTORY_FRAGMENT_TAG: - //display the results of the transaction in the history fragment - if (transactionResult.isApproved()) { - displaySnackbar(coordinatorLayout, HistoryFragment.HISTORY_FRAGMENT_TRANSACTION_TYPE_TAG, - R.string.snackbar_text_successful_transaction, R.string.snackbar_action_refresh); - } else { - displaySnackbar(coordinatorLayout, HistoryFragment.HISTORY_FRAGMENT_TRANSACTION_TYPE_TAG, - R.string.dialog_title_transaction_unsuccessful, R.string.snackbar_action_refresh); - } - break; - } - } - - - /** - * Updates the UI depending on the result of the void/refund transaction - * @param resultData the result of a void or refund transaction - * @param transactionType type of transaction (refund or void) - */ - @Override - public void onReceiveHistoryVoidRefundResult(Bundle resultData, String transactionType) { - net.authorize.aim.Result voidRefundResult = null; - String actionTag = null; - int snackbarSuccessfulMessage = 0, unsuccessfulMessasgeTitle = 0, snackbarUnsuccessfulMessage = 0; - switch (transactionType) { - case AnetIntentService.ACTION_REFUND: - voidRefundResult = (net.authorize.aim.Result) resultData.getSerializable(AnetIntentService.REFUND_STATUS); - actionTag = AnetIntentService.ACTION_REFUND; - snackbarSuccessfulMessage = R.string.snackbar_text_successful_refund; - unsuccessfulMessasgeTitle = R.string.dialog_title_transaction_not_refunded; - snackbarUnsuccessfulMessage = R.string.snackbar_text_unsuccessful_refund; - break; - case AnetIntentService.ACTION_VOID: - voidRefundResult = (net.authorize.aim.Result) resultData.getSerializable(AnetIntentService.VOID_STATUS); - actionTag = AnetIntentService.ACTION_VOID; - snackbarSuccessfulMessage = R.string.snackbar_text_successful_void; - unsuccessfulMessasgeTitle = R.string.dialog_title_transaction_not_voided; - snackbarUnsuccessfulMessage = R.string.snackbar_text_unsuccessful_void; - break; - } - if (voidRefundResult != null && voidRefundResult.isResponseOk()) { - displaySnackbar(coordinatorLayout, actionTag, snackbarSuccessfulMessage, R.string.snackbar_action_refresh); - } else if (voidRefundResult != null && voidRefundResult.getTransactionResponseErrors().size() != 0){ - - String errorMessage = voidRefundResult.getTransactionResponseErrors().get(0).getReasonText(); - displayOkDialog(getResources().getString(unsuccessfulMessasgeTitle), errorMessage); - } else { - displaySnackbar(coordinatorLayout, HistoryFragment.HISTORY_FRAGMENT_TRANSACTION_TYPE_TAG, - snackbarUnsuccessfulMessage, R.string.snackbar_action_refresh); - } - } - - - /** - * Updates the UI based on the result of getting unsettled/settled transaction - * @param resultData result of getting unsettled/settled transactions - * @param transactionType type of transaction (unsettled/settled) - */ - @Override - @SuppressWarnings("unchecked") // transactionList always an arrayList of transaction details - public void onReceiveHistoryTransactionsListResult(Bundle resultData, String transactionType) { - HistoryFragment fragment = (HistoryFragment) getSupportFragmentManager(). - findFragmentByTag(HISTORY_FRAGMENT_TAG); - if (fragment == null) - return; - fragment.updateViewOnTransactionResult(); - net.authorize.reporting.Result historyResult = null; - ArrayList transactionList = new ArrayList<>(); - switch (transactionType) { - case AnetIntentService.ACTION_GET_SETTLED_TRANSACTIONS: - historyResult = (net.authorize.reporting.Result) resultData.getSerializable - (AnetIntentService.SETTLED_TRANSACTION_LIST_STATUS); - transactionList = (ArrayList) resultData. - getSerializable(AnetIntentService.EXTRA_SETTLED_TRANSACTION_LIST); - break; - case AnetIntentService.ACTION_GET_UNSETTLED_TRANSACTIONS: - historyResult = (net.authorize.reporting.Result) resultData.getSerializable - (AnetIntentService.UNSETTLED_TRANSACTION_LIST_STATUS); - transactionList = historyResult.getReportingDetails().getTransactionDetailList(); - break; - } - if (transactionList.size() == 0) { // no transaction to display - fragment.displayTransactionsRecyclerView(View.INVISIBLE); - fragment.updateTransactionList(transactionList); - fragment.displayNoHistoryTransactions(View.VISIBLE); - } else if (historyResult != null && historyResult.isResponseOk()) { - fragment.displayTransactionsRecyclerView(View.VISIBLE); - fragment.updateTransactionList(transactionList); - fragment.displayNoHistoryTransactions(View.INVISIBLE); - } else { - fragment.displayNoHistoryTransactions(View.INVISIBLE); - fragment.displayTransactionsRecyclerView(View.INVISIBLE); - displaySnackbar(coordinatorLayout, HistoryFragment.HISTORY_FRAGMENT_TRANSACTION_TYPE_TAG, - R.string.snackbar_text_failed_load_transactions, R.string.snackbar_action_retry); - } - } - - - /** - * This method will return the user to the login activity as the session has expired. - * @param resultCode session expired result code - */ - @Override - public void onReceiveErrorResult(int resultCode) { - if (resultCode == AnetIntentService.SESSION_EXPIRED_CODE) { - displaySessionExpiredDialog(); - } - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/TransactionResultActivity.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/TransactionResultActivity.java deleted file mode 100644 index 4d20367..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/TransactionResultActivity.java +++ /dev/null @@ -1,104 +0,0 @@ -package net.authorize.sampleapplication; - -import android.content.Intent; -import android.os.Bundle; -import android.support.v7.widget.CardView; -import android.view.View; -import android.widget.Button; -import android.widget.TextView; - -import java.util.Calendar; - -/** - * Displays a receipt for the transaction and allows users to navigate - * back to the transaction fragment or view their transaction in a history fragment. - */ -public class TransactionResultActivity extends AnetBaseActivity { - - public static final String TRANSACTION_RESULT = "TRANSACTION_RESULT"; - private TextView transactionIdTextView; - private TextView transactionTotalAmountTextView; - private CardView transactionSuccessfulCard; - private TextView transactionCardTypeTextView; - private TextView transactionCardNumberTextView; - private TextView transactionDateTextView; - - - @Override - protected void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.activity_transaction_result); - setupViews(); - displayResults(); - } - - - @Override - public void onBackPressed() { - returnToTransaction(NavigationActivity.TRANSACTION_FRAGMENT_TAG); - super.onBackPressed(); - } - - - /** - * Sets variables with their views in the layout XML - */ - public void setupViews() { - transactionIdTextView = (TextView) findViewById(R.id.transaction_id); - transactionTotalAmountTextView = (TextView) findViewById(R.id.transaction_amount); - transactionSuccessfulCard = (CardView) findViewById(R.id.transaction_successful_card); - transactionCardNumberTextView = (TextView) findViewById(R.id.transaction_card_number); - transactionCardTypeTextView = (TextView) findViewById(R.id.transaction_card_type); - transactionDateTextView = (TextView) findViewById(R.id.transaction_date); - Button makeNewTransactionButton = (Button) findViewById(R.id.make_new_transaction_button); - Button paymentHistoryButton = (Button) findViewById(R.id.history_page_button); - paymentHistoryButton.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View v) { - returnToTransaction(NavigationActivity.HISTORY_FRAGMENT_TAG); - } - }); - makeNewTransactionButton.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View v) { - returnToTransaction(NavigationActivity.TRANSACTION_FRAGMENT_TAG); - } - }); - } - - - /** - * Starts the Navigation Activity with the fragment specified by fragmentType - * @param fragmentType fragment to commit - */ - public void returnToTransaction(String fragmentType) { - Intent intent = new Intent(getBaseContext(), NavigationActivity.class); - intent.putExtra(NavigationActivity.FRAGMENT_TYPE, fragmentType); - startActivity(intent); - finish(); - } - - - /** - * Sets the amount, card number, card type, transaction ID, and transaction date of the - * transaction to the text views to display the receipt - */ - public void displayResults() { - net.authorize.aim.Result transactionResult = null; - if (getIntent() != null && getIntent().getExtras() != null) - transactionResult = (net.authorize.aim.Result) getIntent().getExtras(). - getSerializable(TRANSACTION_RESULT); - if (transactionResult != null && transactionResult.isOk()) { - String transactionAmount = transactionResult.getRequestTransaction().getOrder(). - getTotalAmount().toString(); - transactionTotalAmountTextView.setText("$" + transactionAmount); - transactionCardNumberTextView.setText(transactionResult.getAccountNumber()); - transactionCardTypeTextView.setText(transactionResult.getAccountType().name()); - transactionIdTextView.setText(transactionResult.getTransId()); - Calendar calendar = Calendar.getInstance(); - transactionDateTextView.setText(calendar.get(Calendar.MONTH) + "/" + - calendar.get(Calendar.DATE) + "/" + calendar.get(Calendar.YEAR)); - transactionSuccessfulCard.setVisibility(View.VISIBLE); - } - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/adapters/TransactionHistoryAdapter.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/adapters/TransactionHistoryAdapter.java deleted file mode 100644 index 61be95b..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/adapters/TransactionHistoryAdapter.java +++ /dev/null @@ -1,128 +0,0 @@ -package net.authorize.sampleapplication.adapters; - -import android.support.v7.widget.RecyclerView; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.Button; -import android.widget.TextView; - -import net.authorize.data.reporting.TransactionDetails; -import net.authorize.data.reporting.TransactionStatusType; -import net.authorize.sampleapplication.NavigationActivity; -import net.authorize.sampleapplication.R; -import net.authorize.sampleapplication.fragments.HistoryFragment; - -import java.text.DateFormat; -import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Date; - -/** - * Adapter used to populate the recycler view of unsettled/settled transactions in the history fragment. - */ -public class TransactionHistoryAdapter extends RecyclerView.Adapter { - - private ArrayList transactions = null; - private String currentTransactionType; - private HistoryFragment fragment; - private static final String DATE_FORMAT = "EEE, MMM d hh:mm a"; - - public static class ViewHolder extends RecyclerView.ViewHolder { - public TextView transactionID; - public TextView transactionAmount; - public TextView transactionDate; - public Button refundVoidButton; - public TextView refundedTextView; - - public ViewHolder(View view) { - super(view); - transactionID = (TextView) view.findViewById(R.id.history_transaction_id); - transactionAmount = (TextView) view.findViewById(R.id.history_amount); - transactionDate = (TextView) view.findViewById(R.id.history_transaction_date); - refundVoidButton = (Button) view.findViewById(R.id.refund_void_button); - refundedTextView = (TextView) view.findViewById(R.id.refund_void_image); - } - } - - public TransactionHistoryAdapter(ArrayList transactions, String transactionType, HistoryFragment fragment) { - this.transactions = transactions; - this.currentTransactionType = transactionType; - this.fragment = fragment; - } - - public void setHistoryTransactionList(ArrayList newTransactions, String transactionType) { - currentTransactionType = transactionType; - transactions.clear(); - transactions.addAll(newTransactions); - this.notifyDataSetChanged(); - } - - - @Override - public TransactionHistoryAdapter.ViewHolder onCreateViewHolder(ViewGroup viewGroup, int i) { - View view = LayoutInflater.from(viewGroup.getContext()). - inflate(R.layout.transaction_history_item, viewGroup, false); - return new ViewHolder(view); - } - - - @Override - public void onBindViewHolder(ViewHolder viewHolder, int i) { - final TransactionDetails transaction = transactions.get(i); - viewHolder.transactionID.setText(transaction.getTransId()); - viewHolder.transactionAmount.setText("$" + transaction.getSettleAmount().toString()); - Date date = transaction.getSubmitTimeLocal(); - DateFormat dateFormat = new SimpleDateFormat(DATE_FORMAT); - viewHolder.transactionDate.setText(dateFormat.format(date)); - String type = transaction.getTransactionStatus().value(); - if (currentTransactionType.equals(NavigationActivity.TRANSACTION_SETTLED)) { - viewHolder.refundVoidButton.setText(fragment.getResources().getString(R.string.refund_button_text)); - if (type.equals((TransactionStatusType.REFUND_SETTLED_SUCCESSFULLY).value())) { - viewHolder.refundVoidButton.setVisibility(View.INVISIBLE); - viewHolder.refundedTextView.setText(fragment.getResources().getString(R.string.refunded_text)); - viewHolder.transactionAmount.setText("($" + transaction.getSettleAmount().toString() + ")"); - viewHolder.refundedTextView.setVisibility(View.VISIBLE); - } else if (type.equals((TransactionStatusType.VOIDED).value())) { - viewHolder.refundVoidButton.setVisibility(View.INVISIBLE); - viewHolder.refundedTextView.setText(fragment.getResources().getString(R.string.voided_text)); - viewHolder.refundedTextView.setVisibility(View.VISIBLE); - } else { - viewHolder.refundVoidButton.setVisibility(View.VISIBLE); - viewHolder.refundedTextView.setVisibility(View.INVISIBLE); - } - } else if (currentTransactionType.equals(NavigationActivity.TRANSACTION_UNSETTLED)) { - viewHolder.refundVoidButton.setText(fragment.getResources().getString(R.string.void_button_text)); - if (type.equals((TransactionStatusType.VOIDED).value())) { - viewHolder.refundVoidButton.setVisibility(View.INVISIBLE); - viewHolder.refundedTextView.setText(fragment.getResources().getString(R.string.voided_text)); - viewHolder.refundedTextView.setVisibility(View.VISIBLE); - }else { - viewHolder.refundVoidButton.setVisibility(View.VISIBLE); - viewHolder.refundedTextView.setVisibility(View.INVISIBLE); - } - } - viewHolder.refundVoidButton.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View v) { - String transactionId = transaction.getTransId(); - String transactionAmount = transaction.getSettleAmount().toString(); - String cardNumber = null; - if (transaction.getPayment() != null) // unable to get payment information from sdk - cardNumber = transaction.getPayment().getCreditCard().getCreditCardNumber(); - else if (transaction.getAccountNumber() != null) - // gets masked credit card for the transaction - cardNumber = transaction.getAccountNumber(); - if (currentTransactionType.equals(NavigationActivity.TRANSACTION_SETTLED)) - fragment.refundTransaction(transactionId, transactionAmount, cardNumber); - if (currentTransactionType.equals(NavigationActivity.TRANSACTION_UNSETTLED)) - fragment.voidTransaction(transactionId, transactionAmount); - } - }); - } - - @Override - public int getItemCount() { - return transactions.size(); - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/HistoryFragment.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/HistoryFragment.java deleted file mode 100644 index f9d41fb..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/HistoryFragment.java +++ /dev/null @@ -1,201 +0,0 @@ -package net.authorize.sampleapplication.fragments; - - -import android.os.Bundle; -import android.support.v4.app.Fragment; -import android.support.v4.app.FragmentManager; -import android.support.v4.widget.SwipeRefreshLayout; -import android.support.v7.widget.LinearLayoutManager; -import android.support.v7.widget.RecyclerView; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.ImageView; -import android.widget.ProgressBar; -import android.widget.TextView; - -import net.authorize.data.reporting.TransactionDetails; -import net.authorize.sampleapplication.NavigationActivity; -import net.authorize.sampleapplication.services.AnetIntentService; -import net.authorize.sampleapplication.R; -import net.authorize.sampleapplication.adapters.TransactionHistoryAdapter; - -import java.util.ArrayList; - -/** - * Displays unsettled or settled transactions to the user. - */ -public class HistoryFragment extends Fragment { - - private static final String HISTORY_RETAINED_FRAGMENT = "HISTORY_RETAINED_FRAGMENT"; - public static final String HISTORY_FRAGMENT_TRANSACTION_TYPE_TAG = "TRANSACTION_SERVICE"; - public static final String TRANSACTION_ID_TAG = "TRANSACTION_ID"; - public static final String TRANSACTION_AMOUNT_TAG = "TRANSACTION_AMOUNT"; - public static final String TRANSACTION_CARD_NUMBER_TAG = "TRANSACTION_CARD_NUMBER"; - private TransactionHistoryAdapter transactionAdapter; - private SwipeRefreshLayout swipeRefreshLayout; - private String currentTransactionListType; - private ProgressBar progressBar; - private RecyclerView transactionListRecyclerView; - private ImageView noTransactionsIcon; - private TextView noTransactionsTextView; - - public static HistoryFragment newInstance() { - return new HistoryFragment(); - } - - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - } - - - @Override - public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { - View view = inflater.inflate(R.layout.fragment_history, container, false); - setupViews(view); - currentTransactionListType = ((NavigationActivity) getActivity()).getSpinnerTransactionType(); - getListOfTransactions(currentTransactionListType, false); - return view; - } - - /** - * Sets variables with their views in the layout XML - * @param view fragment view - */ - public void setupViews(View view) { - setHasOptionsMenu(true); // calls options menu in base activity again to set spinner - ArrayList listOfTransactions = new ArrayList<>(); - swipeRefreshLayout = (SwipeRefreshLayout) view.findViewById(R.id.history_swipe_refresh_layout); - swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() { - @Override - public void onRefresh() { - getListOfTransactions(currentTransactionListType, true); - } - }); - progressBar = (ProgressBar) view.findViewById(R.id.history_progress_bar); - noTransactionsIcon = (ImageView) view.findViewById(R.id.no_transactions_icon); - noTransactionsTextView = (TextView) view.findViewById(R.id.no_transactions_textView); - transactionListRecyclerView = (RecyclerView) view.findViewById(R.id.transactions_recycler_view); - transactionListRecyclerView.setHasFixedSize(true); - RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(getActivity()); - transactionListRecyclerView.setLayoutManager(mLayoutManager); - transactionAdapter = new TransactionHistoryAdapter(listOfTransactions, currentTransactionListType, this); - transactionListRecyclerView.setAdapter(transactionAdapter); - } - - - /** - * Puts the necessary extras for refunding a transaction into a bundle that will be - * sent to the retained fragment for further processing - * @param transactionListType type of transaction (unsettled/settled) - * @param isSwipe whether the swipe refresh layout was used - */ - public void getListOfTransactions(String transactionListType, boolean isSwipe) { - displayNoHistoryTransactions(View.INVISIBLE); - if (isSwipe) - progressBar.setVisibility(View.INVISIBLE); - else - progressBar.setVisibility(View.VISIBLE); - currentTransactionListType = transactionListType; - swipeRefreshLayout.setVisibility(View.INVISIBLE); - if (transactionListType.equals(NavigationActivity.TRANSACTION_UNSETTLED)) - sendToRetainedFragment(AnetIntentService.ACTION_GET_UNSETTLED_TRANSACTIONS, null); - else if (transactionListType.equals(NavigationActivity.TRANSACTION_SETTLED)) - sendToRetainedFragment(AnetIntentService.ACTION_GET_SETTLED_TRANSACTIONS, null); - - } - - /** - * Puts the necessary extras for voiding a transaction into a bundle that will be - * sent to the retained fragment for further processing - * @param transactionId ID of the transaction - * @param transactionAmount amount of the transaction - */ - public void voidTransaction(String transactionId, String transactionAmount) { - Bundle extras = new Bundle(); - extras.putString(TRANSACTION_ID_TAG, transactionId); - extras.putString(TRANSACTION_AMOUNT_TAG, transactionAmount); - sendToRetainedFragment(AnetIntentService.ACTION_VOID, extras); - } - - - /** - * Puts the necessary extras for refunding a transaction into a bundle that will be - * sent to the retained fragment for further processing - * @param transactionId ID of the transaction - * @param transactionAmount amount of the transaction - * @param cardNumber card number associated with the transaction - */ - public void refundTransaction(String transactionId, String transactionAmount, String cardNumber) { - Bundle extras = new Bundle(); - extras.putString(TRANSACTION_ID_TAG, transactionId); - extras.putString(TRANSACTION_AMOUNT_TAG, transactionAmount); - extras.putString(TRANSACTION_CARD_NUMBER_TAG, cardNumber); - sendToRetainedFragment(AnetIntentService.ACTION_REFUND, extras); - } - - - /** - * Sends the transaction request to the retained fragment to start the service - * @param action type of transaction (getting unsettled/settled, voiding/refunding) - * @param extras extra strings needed to perform the transaction - */ - public void sendToRetainedFragment(String action, Bundle extras) { - NavigationActivity navigationActivity = (NavigationActivity) getActivity(); - if (!navigationActivity.isNetworkAvailable()) { - navigationActivity.displaySnackbar(navigationActivity.getCoordinatorLayout(), - "", R.string.snackbar_text_no_network_connection, R.string.snackbar_action_retry); - } - FragmentManager fragmentManager = getFragmentManager(); - HistoryRetainedFragment historyRetainedFragment = (HistoryRetainedFragment) fragmentManager. - findFragmentByTag(HISTORY_RETAINED_FRAGMENT); - if (historyRetainedFragment == null) { - historyRetainedFragment = new HistoryRetainedFragment(); - Bundle transactionType = new Bundle(); - transactionType.putString(HISTORY_FRAGMENT_TRANSACTION_TYPE_TAG, action); - historyRetainedFragment.setArguments(transactionType); - fragmentManager.beginTransaction().add(historyRetainedFragment, HISTORY_RETAINED_FRAGMENT).commit(); - } else { - historyRetainedFragment.startServiceGetTransactions(action, extras); - } - } - - - /** - * Updates the UI after the transaction result has been received - */ - public void updateViewOnTransactionResult() { - progressBar.setVisibility(View.GONE); - swipeRefreshLayout.setVisibility(View.VISIBLE); - swipeRefreshLayout.setRefreshing(false); - } - - - /** - * Sets the visibility of the ImageView and TextView to be displayed when there are no transactions - * @param viewType the visibility of the ImageView and TextView - */ - public void displayNoHistoryTransactions(int viewType) { - noTransactionsIcon.setVisibility(viewType); - noTransactionsTextView.setVisibility(viewType); - } - - - /** - * Sets the visibility of the transaction list recycler view - * @param viewType the visibility of the recycler view - */ - public void displayTransactionsRecyclerView(int viewType) { - transactionListRecyclerView.setVisibility(viewType); - } - - - /** - * Sends the transaction list to the adapter to update the recycler view with the new list of transactions - * @param transactionList list of unsettled/settled transactions to be populated in the recycler view - */ - public void updateTransactionList(ArrayList transactionList) { - transactionAdapter.setHistoryTransactionList(transactionList, currentTransactionListType); - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/HistoryRetainedFragment.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/HistoryRetainedFragment.java deleted file mode 100644 index e3b5864..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/HistoryRetainedFragment.java +++ /dev/null @@ -1,114 +0,0 @@ -package net.authorize.sampleapplication.fragments; - - -import android.app.Activity; -import android.content.Intent; -import android.os.Bundle; -import android.os.Handler; -import android.support.v4.app.Fragment; - -import net.authorize.sampleapplication.services.AnetIntentService; -import net.authorize.sampleapplication.receivers.AnetResultReceiver; - -/** - * Starts the AnetIntentService with the specified intent action to (1) get settled transactions, - * (2) get unsettled transactions, (3) refund a transaction, or (4) void a transaction and listens - * to the results of the transaction (from the result receiver) to send back via a callback to the activity. - */ -public class HistoryRetainedFragment extends Fragment implements AnetResultReceiver.ReceiverCallback { - - private AnetResultReceiver resultReceiver; - private OnHistoryTransactionListener mListener; - - - public interface OnHistoryTransactionListener { - void onReceiveHistoryTransactionsListResult(Bundle resultData, String transactionType); - void onReceiveHistoryVoidRefundResult(Bundle resultData, String transactionType); - } - - @Override - public void onAttach(Activity activity) { - super.onAttach(activity); - try { - mListener = (OnHistoryTransactionListener) activity; - } catch (ClassCastException e) { - throw new ClassCastException(activity.toString() - + " must implement OnFragmentInteractionListener"); - } - } - - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setRetainInstance(true); - resultReceiver = new AnetResultReceiver(new Handler()); - resultReceiver.setReceiverCallback(this); - Bundle transactionTypeBundle = getArguments(); - if (transactionTypeBundle!= null) { - String transactionService = transactionTypeBundle.getString - (HistoryFragment.HISTORY_FRAGMENT_TRANSACTION_TYPE_TAG); - startServiceGetTransactions(transactionService, transactionTypeBundle); - } - } - - - @Override - public void onDestroy() { - super.onDestroy(); - if (resultReceiver != null) - resultReceiver.clearReceiverCallback(); - } - - /** - * Starts the intent service with an action specified by the transactionService and any extras - * @param transactionService type of transaction as specified in the intent service (UNSETTLED / SETTLED) - * @param extras extra information needed to make the specified transaction - * @return whether the service was successfully started - */ - public boolean startServiceGetTransactions(String transactionService, Bundle extras) { - try { - Intent intent = new Intent(getActivity(), AnetIntentService.class); - intent.setAction(transactionService); - if (extras != null) { - intent.putExtra(HistoryFragment.TRANSACTION_CARD_NUMBER_TAG, extras. - getString(HistoryFragment.TRANSACTION_CARD_NUMBER_TAG)); - intent.putExtra(HistoryFragment.TRANSACTION_ID_TAG, extras. - getString(HistoryFragment.TRANSACTION_ID_TAG)); - intent.putExtra(HistoryFragment.TRANSACTION_AMOUNT_TAG, extras. - getString(HistoryFragment.TRANSACTION_AMOUNT_TAG)); - } - intent.putExtra(AnetResultReceiver.RESULT_RECEIVER_TAG, resultReceiver); - getActivity().startService(intent); - } catch (Exception e) { - return false; - } - return true; - } - - - /** - * Uses a callback to propagate the result of the service request back to the calling activity - * @param resultCode result code for the transaction defined in and delivered by the service - * @param resultData the result of the transaction and the full array list of transactions - */ - public void onReceiveResult(int resultCode, Bundle resultData) { - switch (resultCode) { - case AnetIntentService.UNSETTLED_TRANSACTIONS_CODE: - mListener.onReceiveHistoryTransactionsListResult(resultData, - AnetIntentService.ACTION_GET_UNSETTLED_TRANSACTIONS); - break; - case AnetIntentService.SETTLED_TRANSACTIONS_CODE: - mListener.onReceiveHistoryTransactionsListResult(resultData, - AnetIntentService.ACTION_GET_SETTLED_TRANSACTIONS); - break; - case AnetIntentService.REFUND_RESULT_CODE: - mListener.onReceiveHistoryVoidRefundResult(resultData, - AnetIntentService.ACTION_REFUND); - break; - case AnetIntentService.VOID_RESULT_CODE: - mListener.onReceiveHistoryVoidRefundResult(resultData, - AnetIntentService.ACTION_VOID); - break; - } - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/LoginActivityRetainedFragment.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/LoginActivityRetainedFragment.java deleted file mode 100644 index c5f677a..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/LoginActivityRetainedFragment.java +++ /dev/null @@ -1,90 +0,0 @@ -package net.authorize.sampleapplication.fragments; - -import android.app.Activity; -import android.app.Fragment; -import android.content.Intent; -import android.os.Bundle; -import android.os.Handler; - -import net.authorize.sampleapplication.services.AnetIntentService; -import net.authorize.sampleapplication.receivers.AnetResultReceiver; -import net.authorize.sampleapplication.LoginActivity; - -/** - * Starts the AnetIntentService to authenticate a user and listens to the results of the - * authentication transaction (from the result receiver) to send back via a callback to the activity. - */ -public class LoginActivityRetainedFragment extends Fragment - implements AnetResultReceiver.ReceiverCallback { - - private AnetResultReceiver resultReceiver; - private OnFragmentInteractionListener mListener; - - public interface OnFragmentInteractionListener { - void onReceiveAuthenticateUserResult(Bundle resultData); - } - - @Override - public void onAttach(Activity activity) { - super.onAttach(activity); - try { - mListener = (OnFragmentInteractionListener) activity; - } catch (ClassCastException e) { - throw new ClassCastException(activity.toString() - + " must implement OnFragmentInteractionListener"); - } - } - - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setRetainInstance(true); - resultReceiver = new AnetResultReceiver(new Handler()); - resultReceiver.setReceiverCallback(this); - Bundle credentials = getArguments(); - if (credentials!= null) { - String loginId = credentials.getString(LoginActivity.LOGIN_ID_TAG); - String password = credentials.getString(LoginActivity.PASSWORD_TAG); - startServiceAuthenticateUser(loginId, password); - } - } - - - @Override - public void onDestroy() { - super.onDestroy(); - if (resultReceiver != null) - resultReceiver.clearReceiverCallback(); - } - - /** - * Starts the service to authenticate a user - * Pre: loginId and password are not empty - * @param loginId username for the account entered in the EditText - * @param password password for the account entered in the EditText - * @return whether the service was successfully started - */ - public boolean startServiceAuthenticateUser(String loginId, String password) { - try { - Intent intent = new Intent(getActivity(), AnetIntentService.class); - intent.setAction(AnetIntentService.ACTION_AUTHENTICATE_USER); - intent.putExtra(LoginActivity.LOGIN_ID_TAG, loginId); - intent.putExtra(LoginActivity.PASSWORD_TAG, password); - intent.putExtra(AnetResultReceiver.RESULT_RECEIVER_TAG, resultReceiver); - getActivity().startService(intent); - } catch (Exception e) { - return false; - } - return true; - } - - /** - * Uses a callback to propagate the result of the service request back to the activity - * @param resultCode result code for the transaction defined in and delivered by the service - * @param resultData the result of the transaction and the full array list of transactions - */ - public void onReceiveResult(int resultCode, Bundle resultData) { - if (resultCode == AnetIntentService.AUTHENTICATE_USER_RESULT_CODE) - mListener.onReceiveAuthenticateUserResult(resultData); - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/LogoutRetainedFragment.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/LogoutRetainedFragment.java deleted file mode 100644 index 9316c81..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/LogoutRetainedFragment.java +++ /dev/null @@ -1,82 +0,0 @@ -package net.authorize.sampleapplication.fragments; - -import android.app.Activity; -import android.content.Intent; -import android.os.Bundle; -import android.os.Handler; - -import net.authorize.sampleapplication.services.AnetIntentService; -import net.authorize.sampleapplication.receivers.AnetResultReceiver; - -/** - * Starts the AnetIntentService to log a user out and listens to the results of the - * logout transaction (from the result receiver) to send back via a callback to the activity. - */ -public class LogoutRetainedFragment extends android.support.v4.app.Fragment implements - AnetResultReceiver.ReceiverCallback { - - private AnetResultReceiver resultReceiver; - private OnFragmentInteractionListener mListener; - - public interface OnFragmentInteractionListener { - void onReceiveLogoutResult(Bundle resultData); - } - - @Override - public void onAttach(Activity activity) { - super.onAttach(activity); - try { - mListener = (OnFragmentInteractionListener) activity; - } catch (ClassCastException e) { - throw new ClassCastException(activity.toString() - + " must implement OnFragmentInteractionListener"); - } - } - - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - - setRetainInstance(true); - - resultReceiver = new AnetResultReceiver(new Handler()); - resultReceiver.setReceiverCallback(this); - - startServiceLogout(); - } - - - @Override - public void onDestroy() { - super.onDestroy(); - if (resultReceiver != null) - resultReceiver.clearReceiverCallback(); - } - - - /** - * Starts the service to log a user out - * @return whether the service was successfully started - */ - public boolean startServiceLogout() { - try { - Intent intent = new Intent(getActivity(), AnetIntentService.class); - intent.setAction(AnetIntentService.ACTION_LOGOUT); - intent.putExtra(AnetResultReceiver.RESULT_RECEIVER_TAG, resultReceiver); - getActivity().startService(intent); - } catch (Exception e) { - return false; - } - return true; - } - - /** - * Uses a callback to propagate the result of the service request back to the calling activity - * @param resultCode result code for the transaction defined in and delivered by the service - * @param resultData the result of the logout transaction - */ - public void onReceiveResult(int resultCode, Bundle resultData) { - if (resultCode == AnetIntentService.LOGOUT_RESULT_CODE) - mListener.onReceiveLogoutResult(resultData); - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/TransactionFragment.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/TransactionFragment.java deleted file mode 100644 index 29654fa..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/TransactionFragment.java +++ /dev/null @@ -1,447 +0,0 @@ -package net.authorize.sampleapplication.fragments; - -import android.app.Activity; -import android.graphics.drawable.Drawable; -import android.os.Build; -import android.os.Bundle; -import android.support.v4.app.FragmentManager; -import android.text.TextUtils; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.Button; -import android.widget.EditText; -import android.widget.ImageView; -import android.widget.TextView; - -import net.authorize.sampleapplication.NavigationActivity; -import net.authorize.sampleapplication.services.AnetIntentService; -import net.authorize.sampleapplication.models.CreditCardObject; -import net.authorize.sampleapplication.views.FormattingTextWatcher; -import net.authorize.sampleapplication.R; -import net.authorize.util.Luhn; - -import java.util.Calendar; - -/** - * Allows the user to make a transaction using manually entered information or swipe data. - */ -public class TransactionFragment extends android.support.v4.app.Fragment - implements FormattingTextWatcher.UpdateUICallBack { - - private static final String TRANSACTION_RETAINED_FRAGMENT = "transaction_retained_fragment"; - public static final String ZIPCODE_TAG = "ZIPCODE"; - public static final String AMOUNT_TAG = "TOTAL_AMOUNT"; - public static final String CREDIT_CARD_TAG ="CREDIT_CARD_TAG"; - public static final int CARD_NUMBER_FIELD_LENGTH = 19; - public static final int CARD_NUMBER_LENGTH = 16; - public static final int CVV_NUMBER_LENGTH = 3; - public static final int EXP_DATE_FIELD_LENGTH = 5; - public static final int EXP_DATE_LENGTH = 4; - public static final int ZIPCODE_LENGTH = 5; - private EditText cardNumberEditText; - private EditText cardExpDateEditText; - private EditText cardCVVEditText; - private EditText cardZipCodeEditText; - private EditText totalAmountEditText; - private TextView cardNumberMessageTextView; - private TextView cardExpDateMessageTextView; - private TextView cardCVVMessageTextView; - private TextView cardZipcodeMessageTextView; - private Drawable cardNumberIcon; - private Drawable expDateIcon; - private Drawable cvvIcon; - private Drawable zipcodeIcon; - private TransactionRetainedFragment transactionFragment; - - public static TransactionFragment newInstance() { - return new TransactionFragment(); - } - - @Override - public void onAttach(Activity activity) { - super.onAttach(activity); - } - - @Override - public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { - View view = inflater.inflate(R.layout.fragment_make_transaction, container, false); - ((NavigationActivity) getActivity()).setupClickableUI(view.findViewById(R.id.transaction_fragment)); - setupViews(view); - setupCustomViewMessages(); - return view; - } - - - /** - * Sets variables with their views in the layout XML - * @param view fragment view - */ - private void setupViews(View view) { - cardNumberEditText = (EditText) view.findViewById(R.id.editText_CardNumber); - cardExpDateEditText = (EditText) view.findViewById(R.id.editText_CardExpDate); - cardCVVEditText = (EditText) view.findViewById(R.id.editText_CardCVV); - cardZipCodeEditText = (EditText) view.findViewById(R.id.editText_CardZipCode); - totalAmountEditText = (EditText) view.findViewById(R.id.editText_amount); - - cardNumberMessageTextView = (TextView) view.findViewById(R.id.card_error_message); - cardExpDateMessageTextView = (TextView) view.findViewById(R.id.exp_date_error_message); - cardCVVMessageTextView = (TextView) view.findViewById(R.id.cvv_error_message); - cardZipcodeMessageTextView = (TextView) view.findViewById(R.id.zipcode_error_message); - - cardNumberIcon = ((ImageView) view.findViewById(R.id.credit_card_icon)).getDrawable(); - expDateIcon = ((ImageView) view.findViewById(R.id.exp_date_icon)).getDrawable(); - cvvIcon = ((ImageView) view.findViewById(R.id.security_card_icon)).getDrawable(); - zipcodeIcon = ((ImageView) view.findViewById(R.id.zipcode_icon)).getDrawable(); - - Button makeTransactionButton = (Button) view.findViewById(R.id.transaction_button); - makeTransactionButton.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View v) { - makeTransaction(); - } - }); - Button swipeButton = (Button) view.findViewById(R.id.swipe_button); - swipeButton.setOnClickListener(new View.OnClickListener() { - @Override - public void onClick(View v) { - performSwipe(); - } - }); - } - - - /** - * Puts the necessary extras for making a transaction with manual entries into a bundle that will be - * sent to the retained fragment for further processing - */ - public void makeTransaction() { - String cardNumber = cardNumberEditText.getText().toString().replace(" ", ""); - String cardExpirationDate = cardExpDateEditText.getText().toString().replace("/", ""); - String cardCVV = cardCVVEditText.getText().toString(); - String cardZipcode = cardZipCodeEditText.getText().toString(); - String cardExpMonth, cardExpYear; - String totalAmount = totalAmountEditText.getText().toString(); - NavigationActivity navigationActivity = (NavigationActivity) getActivity(); - if (!navigationActivity.isNetworkAvailable()) { - navigationActivity.displaySnackbar(navigationActivity.getCoordinatorLayout(), AnetIntentService.ACTION_MAKE_TRANSACTION, - R.string.snackbar_text_no_network_connection, R.string.snackbar_action_retry); - } else if (totalAmountEditText.getText().length() == 0) { - navigationActivity.displayOkDialog("Error", getResources(). - getString(R.string.dialog_message_invalid_amount)); - } else if (!isValidField(cardNumber, cardCVV, cardZipcode, cardExpirationDate, totalAmount)) { - String title = getResources().getString(R.string.dialog_title_error); - String message = getResources().getString(R.string.dialog_message_invalid_field); - navigationActivity.displayOkDialog(title, message); - } else { - cardExpMonth = cardExpirationDate.substring(0, 2); - cardExpYear = cardExpirationDate.substring(2, 4); - CreditCardObject creditCardObject = new CreditCardObject(cardNumber, cardCVV, - cardExpMonth, cardExpYear); - FragmentManager fragmentManager = getFragmentManager(); - transactionFragment = (TransactionRetainedFragment) fragmentManager. - findFragmentByTag(TRANSACTION_RETAINED_FRAGMENT); - if (transactionFragment == null) { - transactionFragment = new TransactionRetainedFragment(); - Bundle creditCardBundle = new Bundle(); - creditCardBundle.putParcelable(CREDIT_CARD_TAG, creditCardObject); - creditCardBundle.putString(ZIPCODE_TAG, cardZipcode); - creditCardBundle.putString(AMOUNT_TAG, totalAmount); - creditCardBundle.putString(AnetIntentService.ACTION_TRANSACTION_TYPE_TAG, - AnetIntentService.ACTION_MAKE_TRANSACTION); - transactionFragment.setArguments(creditCardBundle); - fragmentManager.beginTransaction().add(transactionFragment, - TRANSACTION_RETAINED_FRAGMENT).commit(); - } else { - transactionFragment.startServiceTransaction(creditCardObject, cardZipcode, totalAmount); - } - navigationActivity.showIndeterminateProgressDialog(getResources().getString - (R.string.progress_dialog_title_please_wait), getResources().getString(R.string.progress_dialog_message_processing_transaction)); - } - } - - - /** - * Puts the necessary extras for making a transaction using swipe data into a bundle that will be - * sent to the retained fragment for further processing - */ - public void performSwipe() { - NavigationActivity navigationActivity = (NavigationActivity) getActivity(); - if (totalAmountEditText.getText().length() == 0) { - navigationActivity.displayOkDialog(getResources().getString(R.string.dialog_title_error), getResources().getString(R.string.dialog_message_invalid_amount)); - } else { - String totalAmount = totalAmountEditText.getText().toString(); - if (!navigationActivity.isNetworkAvailable()) { - navigationActivity.displaySnackbar(navigationActivity.getCoordinatorLayout(), AnetIntentService.ACTION_PERFORM_SWIPE, - R.string.snackbar_text_no_network_connection, R.string.snackbar_action_retry); - } else { - FragmentManager fragmentManager = getFragmentManager(); - transactionFragment = (TransactionRetainedFragment) fragmentManager. - findFragmentByTag(TRANSACTION_RETAINED_FRAGMENT); - if (transactionFragment == null) { - transactionFragment = new TransactionRetainedFragment(); - Bundle cardInformationBundle = new Bundle(); - cardInformationBundle.putString(AnetIntentService.ACTION_TRANSACTION_TYPE_TAG, - AnetIntentService.ACTION_PERFORM_SWIPE); - cardInformationBundle.putString(AMOUNT_TAG, totalAmount); - transactionFragment.setArguments(cardInformationBundle); - fragmentManager.beginTransaction().add(transactionFragment, - TRANSACTION_RETAINED_FRAGMENT).commit(); - } else { - transactionFragment.startServicePerformSwipe(totalAmount); - } - navigationActivity.showIndeterminateProgressDialog(getResources().getString(R.string.progress_dialog_title_please_wait), getResources().getString(R.string.progress_dialog_message_processing_swipe)); - } - } - } - - - /** - * Determines whether all of the information entered in the Edit Texts are valid entries - * @param cardNumber card number entered in Edit Text - * @param cardCVV card security number entered in Edit Text - * @param cardZipCode zipcode entered in Edit Text - * @param cardExpDate card expiration date entered in Edit Text - * @param totalAmount amount entered in Edit Text - * @return whether all fields entered are valid - */ - private boolean isValidField(String cardNumber, String cardCVV, String cardZipCode, - String cardExpDate, String totalAmount) { - if (cardNumber.isEmpty() || cardCVV.isEmpty() || cardExpDate.isEmpty() - || cardZipCode.isEmpty() || totalAmount.isEmpty()) { - return false; - } else if (cardNumber.length() != CARD_NUMBER_LENGTH || cardCVV.length() != CVV_NUMBER_LENGTH - || cardZipCode.length() != ZIPCODE_LENGTH || cardExpDate.length() != EXP_DATE_LENGTH) { - return false; - } else if (!(TextUtils.isDigitsOnly(cardNumber)) || !(TextUtils.isDigitsOnly(cardCVV)) - || !(TextUtils.isDigitsOnly(cardZipCode)) || !(TextUtils.isDigitsOnly(cardExpDate))) { - return false; - } else if (!Luhn.isCardValid(cardNumber)) { - return false; - } else if (!isValidMonth(cardExpDate.substring(0,2)) && - !isValidExpDate(cardExpDate.substring(0, 2), cardExpDate.substring(2, 4))) { - return false; - } - return true; - } - - - /** - * Determines whether the expiration month and year entered in Edit Texts - * are valid entries - * @param expMonth expiration Month entered in Edit Text - * @param expYear expiration Year entered in Edit Text - * @return whether the expiration month and year are valid - */ - public static boolean isValidExpDate(String expMonth, String expYear) { - int currentYear = Integer.parseInt(String.valueOf( - Calendar.getInstance().get(Calendar.YEAR)).substring(2)); - int currentMonth = Integer.parseInt(String.valueOf(Calendar - .getInstance().get(Calendar.MONTH))) + 1; - try { - if (Integer.parseInt(expYear) < currentYear) { - return false; - } else if (Integer.parseInt(expYear) == currentYear) { - if (Integer.parseInt(expMonth) < currentMonth) - return false; - } - } catch (Exception e) { - return false; - } - return true; - } - - - /** - * Determines whether the card expiration month entered is between 1 and 12 inclusive - * @param expMonth expiration month entered - * @return whether the expiration month is valid - */ - private boolean isValidMonth(String expMonth) { - try { - if (((Integer.parseInt(expMonth) == 0 || Integer.parseInt(expMonth) > 12))) - return false; - } catch (Exception e) { - return false; - } - return true; - } - - - /** - * Sets text watchers and on focus change listeners to edit texts to display custom error messages - */ - private void setupCustomViewMessages() { - int cardNumberHint = R.string.card_number_hint; - int cvvHint = R.string.cvv_hint; - int expDateHint = R.string.exp_date_hint; - int zipcodeHint = R.string.zipcode_hint; - int cardLengthErrorMessage = R.string.card_length_error_message; - int cvvLengthErrorMessage = R.string.cvv_length_error_message; - int expDateFormatErrorMessage = R.string.exp_date_format_error_message; - int zipcodeLengthErrorMessage = R.string.zipcode_length_error_message; - - FormattingTextWatcher cardNumberTextWatcher = new FormattingTextWatcher(FormattingTextWatcher.FieldType.CARD_NUMBER); - cardNumberTextWatcher.setFormattingTextWatcher(this); - FormattingTextWatcher cardExpDateTextWatcher = new FormattingTextWatcher(FormattingTextWatcher.FieldType.EXP_DATE); - cardExpDateTextWatcher.setFormattingTextWatcher(this); - FormattingTextWatcher cardCVVTextWatcher = new FormattingTextWatcher(FormattingTextWatcher.FieldType.CVV_NUMBER); - cardCVVTextWatcher.setFormattingTextWatcher(this); - FormattingTextWatcher zipcodeTextWatcher = new FormattingTextWatcher(FormattingTextWatcher.FieldType.ZIPCODE); - zipcodeTextWatcher.setFormattingTextWatcher(this); - FormattingTextWatcher amountTextWatcher = new FormattingTextWatcher(FormattingTextWatcher.FieldType.TOTAL_AMOUNT); - amountTextWatcher.setFormattingTextWatcher(this); - - cardNumberEditText.addTextChangedListener(cardNumberTextWatcher); - cardExpDateEditText.addTextChangedListener(cardExpDateTextWatcher); - cardCVVEditText.addTextChangedListener(cardCVVTextWatcher); - cardZipCodeEditText.addTextChangedListener(zipcodeTextWatcher); - totalAmountEditText.addTextChangedListener(amountTextWatcher); - - cardNumberEditText.setOnFocusChangeListener(new FieldFocusListener( - cardNumberMessageTextView, - cardNumberIcon, - CARD_NUMBER_FIELD_LENGTH, - cardNumberHint, - cardLengthErrorMessage)); - cardExpDateEditText.setOnFocusChangeListener(new FieldFocusListener( - cardExpDateMessageTextView, - expDateIcon, - EXP_DATE_FIELD_LENGTH, - expDateHint, - expDateFormatErrorMessage)); - cardCVVEditText.setOnFocusChangeListener(new FieldFocusListener( - cardCVVMessageTextView, - cvvIcon, - CVV_NUMBER_LENGTH, - cvvHint, - cvvLengthErrorMessage)); - cardZipCodeEditText.setOnFocusChangeListener(new FieldFocusListener( - cardZipcodeMessageTextView, - zipcodeIcon, - ZIPCODE_LENGTH, - zipcodeHint, - zipcodeLengthErrorMessage)); - } - - - /** - * Callback method from FormattingTextWatcher class that updates the transaction information - * fields on user input - * @param fieldType type of field in transaction fragment - * @param messageId response message to be displayed below edit text - * @param messageColorId color of response message displayed below edit text - * @param iconColorId color of icon next to edit text field - */ - @Override - public void updateMessages(FormattingTextWatcher.FieldType fieldType, int messageId, - int messageColorId, int iconColorId) { - TextView textView = null; - Drawable icon = null; - switch(fieldType) { - case CARD_NUMBER: - textView = cardNumberMessageTextView; - icon = cardNumberIcon; - break; - case EXP_DATE: - textView = cardExpDateMessageTextView; - icon = expDateIcon; - break; - case CVV_NUMBER: - textView = cardCVVMessageTextView; - icon = cvvIcon; - break; - case ZIPCODE: - textView = cardZipcodeMessageTextView; - icon = zipcodeIcon; - break; - } - if (textView != null && icon != null) { - textView.setText(getResources().getString(messageId)); - textView.setTextColor(getResources().getColor(messageColorId)); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) - icon.setTint(getResources().getColor(iconColorId)); - } - } - - - /** - * Callback method from FormattingTextWatcher that updates the edit text with formatted - * entries. - * @param fieldType type of field entry - * @param text the text to be set to the edit text - * @param textWatcher the text watcher object to be removed and readded - */ - @Override - public void updateText(FormattingTextWatcher.FieldType fieldType, String text, - FormattingTextWatcher textWatcher) { - EditText editText = null; - switch (fieldType) { - case CARD_NUMBER: - editText = cardNumberEditText; - break; - case CVV_NUMBER: - editText = cardCVVEditText; - break; - case EXP_DATE: - editText = cardExpDateEditText; - break; - case ZIPCODE: - editText = cardZipCodeEditText; - break; - case TOTAL_AMOUNT: - editText = totalAmountEditText; - break; - } - if (editText != null) { - editText.removeTextChangedListener(textWatcher); - editText.setText(text); - editText.addTextChangedListener(textWatcher); - editText.setSelection(editText.getText().length()); - } - } - - - /** - * This class displays custom error messages for a credit card field. - */ - public class FieldFocusListener implements View.OnFocusChangeListener { - private TextView textView; - private Drawable icon; - private int length; - private int hintId; - private int errorMessageId; - - public FieldFocusListener(TextView textView, Drawable icon, - int length, int hintId, int errorMessageId) { - this.textView = textView; - this.icon = icon; - this.length = length; - this.hintId = hintId; - this.errorMessageId = errorMessageId; - } - - @Override - public void onFocusChange(View v, boolean hasFocus) { - EditText editText = (EditText) v; - if (!hasFocus) { - if (v.getId() != R.id.editText_amount && editText.getText().length() != length) { - updateMessage(errorMessageId, R.color.ErrorMessageColor, - R.color.ErrorMessageColor); - } else if (v.getId() != R.id.editText_CardNumber && - v.getId() != R.id.editText_CardExpDate && v.getId() != R.id.editText_amount){ - updateMessage(hintId, R.color.HintColor, R.color.ThemeColor); - } else if (v.getId() == R.id.editText_amount) { - updateMessage(hintId, R.color.White, R.color.White); - } - } - } - - public void updateMessage(int textId, int textColorId, int tintColorId ) { - textView.setText(getResources().getString(textId)); - textView.setTextColor(getResources().getColor(textColorId)); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) - icon.setTint(getResources().getColor(tintColorId)); - } - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/TransactionRetainedFragment.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/TransactionRetainedFragment.java deleted file mode 100644 index 6ef79cf..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/fragments/TransactionRetainedFragment.java +++ /dev/null @@ -1,127 +0,0 @@ -package net.authorize.sampleapplication.fragments; - -import android.app.Activity; -import android.content.Intent; -import android.os.Bundle; -import android.os.Handler; - -import net.authorize.sampleapplication.services.AnetIntentService; -import net.authorize.sampleapplication.receivers.AnetResultReceiver; -import net.authorize.sampleapplication.models.CreditCardObject; - -/** - * Starts the AnetIntentService to either make a transaction using manually entered information - * or using swipe information and listens to the results of the transaction - * (from the result receiver) to send back via a callback to the activity. - */ -public class TransactionRetainedFragment extends android.support.v4.app.Fragment - implements AnetResultReceiver.ReceiverCallback { - - private static AnetResultReceiver resultReceiver; - private OnFragmentInteractionListener mListener; - - public interface OnFragmentInteractionListener { - void onReceiveTransactionResult(Bundle resultData); - void onReceiveErrorResult(int resultCode); - } - - @Override - public void onAttach(Activity activity) { - super.onAttach(activity); - try { - mListener = (OnFragmentInteractionListener) activity; - } catch (ClassCastException e) { - throw new ClassCastException(activity.toString() - + " must implement OnFragmentInteractionListener"); - } - } - - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - - setRetainInstance(true); - - resultReceiver = new AnetResultReceiver(new Handler()); - resultReceiver.setReceiverCallback(this); - - Bundle cardInformationBundle = getArguments(); - if (cardInformationBundle != null) { - if (cardInformationBundle.getString(AnetIntentService.ACTION_TRANSACTION_TYPE_TAG). - equals(AnetIntentService.ACTION_MAKE_TRANSACTION)) { - CreditCardObject creditCardObject = cardInformationBundle.getParcelable - (TransactionFragment.CREDIT_CARD_TAG); - String zipcode = cardInformationBundle.getString(TransactionFragment.ZIPCODE_TAG); - String totalAmount = cardInformationBundle.getString(TransactionFragment.AMOUNT_TAG); - startServiceTransaction(creditCardObject, zipcode, totalAmount); - } else if (cardInformationBundle.getString(AnetIntentService.ACTION_TRANSACTION_TYPE_TAG). - equals(AnetIntentService.ACTION_PERFORM_SWIPE)) { - String totalAmount = cardInformationBundle.getString(TransactionFragment.AMOUNT_TAG); - startServicePerformSwipe(totalAmount); - } - } - } - - @Override - public void onResume() { - resultReceiver.setReceiverCallback(this); - super.onResume(); - } - - - /** - * Starts the service to make a transaction with manually entered information - * Pre: creditCardObject, zipcode and totalAmount are not empty - * @param creditCardObject parcelable object that contains validated manually entered card information - * from EditTexts - * @param zipcode billing zipcode for the transaction - * @param totalAmount total amount for the transaction - * @return whether the service was successfully started - */ - public boolean startServiceTransaction(CreditCardObject creditCardObject, String zipcode, - String totalAmount) { - try { - Intent intent = new Intent(getActivity(), AnetIntentService.class); - intent.setAction(AnetIntentService.ACTION_MAKE_TRANSACTION); - intent.putExtra(TransactionFragment.CREDIT_CARD_TAG, creditCardObject); - intent.putExtra(TransactionFragment.ZIPCODE_TAG, zipcode); - intent.putExtra(TransactionFragment.AMOUNT_TAG, totalAmount); - intent.putExtra(AnetResultReceiver.RESULT_RECEIVER_TAG, resultReceiver); - getActivity().startService(intent); - } catch (Exception e) { - return false; - } - return true; - } - - /** - * Starts the service to make a transaction using swipe information - * Pre: totalAmount is not empty - * @param totalAmount total amount for the transaction - * @return whether the service was successfully started - */ - public boolean startServicePerformSwipe(String totalAmount) { - try { - Intent intent = new Intent(getActivity(), AnetIntentService.class); - intent.setAction(AnetIntentService.ACTION_PERFORM_SWIPE); - intent.putExtra(TransactionFragment.AMOUNT_TAG, totalAmount); - intent.putExtra(AnetResultReceiver.RESULT_RECEIVER_TAG, resultReceiver); - getActivity().startService(intent); - } catch (Exception e) { - return false; - } - return true; - } - - /** - * Uses a callback to propagate the result of the service request back to the calling activity - * @param resultCode result code for the transaction defined in and delivered by the service - * @param resultData the result of the transaction - */ - public void onReceiveResult(int resultCode, Bundle resultData) { - if (resultCode == AnetIntentService.TRANSACTION_RESULT_CODE) - mListener.onReceiveTransactionResult(resultData); - if (resultCode == AnetIntentService.SESSION_EXPIRED_CODE) - mListener.onReceiveErrorResult(resultCode); - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/models/AnetSingleton.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/models/AnetSingleton.java deleted file mode 100644 index 5947511..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/models/AnetSingleton.java +++ /dev/null @@ -1,19 +0,0 @@ -package net.authorize.sampleapplication.models; - -import net.authorize.Merchant; - -/** - * Singleton class used to hold variables that are common to the entire application. - */ -public class AnetSingleton { - private static AnetSingleton instance; - public static Merchant merchant; - - public static AnetSingleton getInstance() - { - if (instance == null) - return new AnetSingleton(); - else - return instance; - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/models/CreditCardObject.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/models/CreditCardObject.java deleted file mode 100644 index b80295c..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/models/CreditCardObject.java +++ /dev/null @@ -1,71 +0,0 @@ -package net.authorize.sampleapplication.models; - -import android.os.Parcel; -import android.os.Parcelable; - -/** - * Parcelable object that stores credit card information that was manually entered. - */ -public class CreditCardObject implements Parcelable { - private String cardNumber; - private String securityCode; - private String expMonth; - private String expYear; - - public CreditCardObject(String cardNumber, String securityCode, String expMonth, String expYear) { - this.cardNumber = cardNumber; - this.securityCode = securityCode; - this.expMonth = expMonth; - this.expYear = expYear; - } - - public CreditCardObject(Parcel pc){ - cardNumber = pc.readString(); - securityCode = pc.readString(); - expMonth = pc.readString(); - expYear = pc.readString(); - } - - @Override - public void writeToParcel(Parcel dest, int flags) { - dest.writeString(cardNumber); - dest.writeString(securityCode); - dest.writeString(expMonth); - dest.writeString(expYear); - } - - public static final Parcelable.Creator CREATOR - = new Parcelable.Creator() { - - @Override - public CreditCardObject createFromParcel(Parcel in) { - return new CreditCardObject(in); - } - - @Override - public CreditCardObject[] newArray(int size) { - return new CreditCardObject[size]; - } - }; - - public String getExpYear() { - return expYear; - } - - public String getExpMonth() { - return expMonth; - } - - public String getCardNumber() { - return cardNumber; - } - - public String getSecurityCode() { - return securityCode; - } - - @Override - public int describeContents() { - return 0; - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/receivers/AnetResultReceiver.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/receivers/AnetResultReceiver.java deleted file mode 100644 index 85297c9..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/receivers/AnetResultReceiver.java +++ /dev/null @@ -1,39 +0,0 @@ -package net.authorize.sampleapplication.receivers; - -import android.os.Bundle; -import android.os.Handler; -import android.os.ResultReceiver; -import android.util.Log; - -/** - * Receives all results from the intent service - */ -public class AnetResultReceiver extends ResultReceiver { - - public static final String RESULT_RECEIVER_TAG = "RESULT_RECEIVER_TAG"; - - private ReceiverCallback receiverCallback; - - public interface ReceiverCallback { - void onReceiveResult(int resultCode, Bundle resultData); - } - - public AnetResultReceiver(Handler handler) { - super(handler); - } - - @Override - protected void onReceiveResult(int resultCode, Bundle resultData) { - if (receiverCallback != null) { - receiverCallback.onReceiveResult(resultCode, resultData); - } - } - - public void setReceiverCallback(ReceiverCallback receiver) { - receiverCallback = receiver; - } - - public void clearReceiverCallback() { - receiverCallback = null; - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/services/AnetIntentService.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/services/AnetIntentService.java deleted file mode 100644 index b96a6b1..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/services/AnetIntentService.java +++ /dev/null @@ -1,509 +0,0 @@ -package net.authorize.sampleapplication.services; - -import android.app.IntentService; -import android.content.Intent; -import android.content.Context; -import android.os.Bundle; -import android.os.ResultReceiver; -import android.telephony.TelephonyManager; - -import net.authorize.Environment; -import net.authorize.Merchant; -import net.authorize.aim.cardpresent.MarketType; -import net.authorize.auth.PasswordAuthentication; -import net.authorize.auth.SessionTokenAuthentication; -import net.authorize.data.Address; -import net.authorize.data.Customer; -import net.authorize.data.Order; -import net.authorize.data.OrderItem; -import net.authorize.data.ShippingCharges; -import net.authorize.data.creditcard.CreditCard; -import net.authorize.data.creditcard.CreditCardPresenceType; -import net.authorize.data.mobile.MobileDevice; -import net.authorize.data.reporting.BatchDetails; -import net.authorize.data.reporting.ReportingDetails; -import net.authorize.data.reporting.TransactionDetails; -import net.authorize.data.swiperdata.SwiperEncryptionAlgorithmType; -import net.authorize.mobile.Transaction; -import net.authorize.mobile.TransactionType; -import net.authorize.mobile.Result; -import net.authorize.sampleapplication.models.AnetSingleton; -import net.authorize.sampleapplication.fragments.HistoryFragment; -import net.authorize.sampleapplication.receivers.AnetResultReceiver; -import net.authorize.sampleapplication.models.CreditCardObject; -import net.authorize.sampleapplication.fragments.TransactionFragment; -import net.authorize.sampleapplication.LoginActivity; - -import java.math.BigDecimal; -import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Calendar; -import java.util.Date; - -/** - * Performs all API calls / transaction requests on a background thread asynchronously. - */ -public class AnetIntentService extends IntentService { - - public static final String ACTION_TRANSACTION_TYPE_TAG = "TRANSACTION_TYPE_TAG"; - public static final String ACTION_AUTHENTICATE_USER = "net.authorize.sampleapplication.action.AUTHENTICATE_USER"; - public static final String ACTION_MAKE_TRANSACTION = "net.authorize.sampleapplication.action.MAKE_TRANSACTION"; - public static final String ACTION_PERFORM_SWIPE = "net.authorize.sampleapplication.action.PERFORM_SWIPE"; - public static final String ACTION_LOGOUT = "net.authorize.sampleapplication.action.LOGOUT"; - public static final String ACTION_GET_UNSETTLED_TRANSACTIONS = "net.authorize.sampleapplication.action.GET_UNSETTLED_TRANSACTIONS"; - public static final String ACTION_GET_SETTLED_TRANSACTIONS = "net.authorize.sampleapplication.action.GET_SETTLED_TRANSACTIONS"; - public static final String ACTION_REFUND = "net.authorize.sampleapplication.action.REFUND"; - public static final String ACTION_VOID = "net.authorize.sampleapplication.action.VOID"; - public static final String AUTHENTICATE_USER_STATUS = "AUTHENTICATE_USER_STATUS"; - public static final String TRANSACTION_STATUS = "TRANSACTION_STATUS"; - public static final String UNSETTLED_TRANSACTION_LIST_STATUS = "UNSETTLED_TRANSACTION_LIST_STATUS"; - public static final String SETTLED_TRANSACTION_LIST_STATUS = "SETTLED_TRANSACTION_LIST_STATUS"; - public static final String REFUND_STATUS = "REFUND_STATUS"; - public static final String VOID_STATUS = "VOID_STATUS"; - public static final String ERROR_STATUS = "ERROR_STATUS"; - public static final String LOGOUT_STATUS = "LOGOUT_STATUS"; - public static final String EXTRA_SETTLED_TRANSACTION_LIST = "SETTLED_TRANSACTION_LIST"; - public static final int AUTHENTICATE_USER_RESULT_CODE = 100; - public static final int TRANSACTION_RESULT_CODE = 200; - public static final int LOGOUT_RESULT_CODE = 300; - public static final int UNSETTLED_TRANSACTIONS_CODE = 400; - public static final int SETTLED_TRANSACTIONS_CODE = 500; - public static final int REFUND_RESULT_CODE = 600; - public static final int VOID_RESULT_CODE = 700; - public static final int SESSION_EXPIRED_CODE = 800; - public static final int EXCEPTION_ERROR_CODE = 900; - - // In order to refund a transaction, the expiration date of the card used to make the - // transaction is required. This is not provided when the list of settled transactions - // is obtained. Therefore, if you want to refund a transaction in the application - // you have to set the expiration date manually. - private static final String EXP_DATE_REQUIRED_FOR_REFUND = "2020-12"; - - public AnetIntentService() { - super("AnetIntentService"); - } - - @Override - protected void onHandleIntent(Intent intent) { - if (intent == null) - return; - final String action = intent.getAction(); - if (action == null) - return; - final ResultReceiver receiver = intent.getParcelableExtra(AnetResultReceiver.RESULT_RECEIVER_TAG); - if (receiver == null) - return; - if (ACTION_AUTHENTICATE_USER.equals(action)) { - authenticateUser(receiver, intent); - } else if (AnetSingleton.merchant == null) { // session has expired - receiver.send(SESSION_EXPIRED_CODE, null); - } else switch (action) { - case ACTION_MAKE_TRANSACTION: - makeTransaction(receiver, intent); - break; - case ACTION_PERFORM_SWIPE: - makeTransaction(receiver, intent); - break; - case ACTION_LOGOUT: - logout(receiver); - break; - case ACTION_GET_UNSETTLED_TRANSACTIONS: - getUnsettledTransactions(receiver); - break; - case ACTION_GET_SETTLED_TRANSACTIONS: - getSettledTransactions(receiver); - break; - case ACTION_REFUND: - refundTransaction(receiver, intent); - break; - case ACTION_VOID: - voidTransaction(receiver, intent); - break; - } - } - - /** - * Validates a username and password and updates the user's session token. - * @param receiver receiver that listens to the result of the transaction - * @param intent intent with required extras for the authentication - */ - private void authenticateUser(ResultReceiver receiver, Intent intent) { - Bundle resultData = new Bundle(); - try { - final String loginId = intent.getStringExtra(LoginActivity.LOGIN_ID_TAG); - final String password = intent.getStringExtra(LoginActivity.PASSWORD_TAG); - String deviceId = getDeviceId(); - String deviceDescription = ""; - String deviceTelephoneNumber = ""; - // Create a mobile device with a valid device ID - MobileDevice mobileDevice = MobileDevice.createMobileDevice - (deviceId, deviceDescription, deviceTelephoneNumber); - - // Create a merchant authentication a merchant with a valid device ID, - // sandbox username and password - PasswordAuthentication authentication = PasswordAuthentication. - createMerchantAuthentication(loginId, password, deviceId); - - // Create a merchant specifying environment type and with the merchant authentication - AnetSingleton.merchant = Merchant.createMerchant(Environment.SANDBOX, authentication); - AnetSingleton.merchant.setDuplicateTxnWindowSeconds(30); - - // Create a mobile transaction and specify the type of transaction - Transaction transaction = AnetSingleton.merchant.createMobileTransaction - (TransactionType.MOBILE_DEVICE_LOGIN); - - // Set the mobile device created to the transaction and post the transaction - transaction.setMobileDevice(mobileDevice); - Result loginResult = (Result) AnetSingleton.merchant.postTransaction(transaction); - - if (loginResult.isOk()) - updateSessionToken(loginResult, deviceId); - resultData.putSerializable(AUTHENTICATE_USER_STATUS, loginResult); - receiver.send(AUTHENTICATE_USER_RESULT_CODE, resultData); - } catch (Exception e) { - resultData.putSerializable(ERROR_STATUS, e); - receiver.send(EXCEPTION_ERROR_CODE, resultData); - } - } - - - /** - * Gets the device ID of the phone you are using. If your device is offline, - * set the return string to your device ID. Make sure your device is enabled within - * the sandbox account. (Go to settings -> mobile device management and enable your device). - * @return device ID of the phone - */ - private String getDeviceId() { - TelephonyManager telephonyManager = (TelephonyManager) - getApplicationContext().getSystemService(Context.TELEPHONY_SERVICE); - if (telephonyManager != null) { - return telephonyManager.getDeviceId(); - } - return ""; // for offline devices, set your device ID - } - - - /** - * Creates a user's session token using the loginResult's session token and device ID, - * and sets the merchant authentication in order for the user to perform transactions. - * @param loginResult result from authenticating a user - * @param deviceId ID of your current device - */ - private void updateSessionToken(net.authorize.xml.Result loginResult, String deviceId) { - AnetSingleton.merchant.setMerchantAuthentication(SessionTokenAuthentication.createMerchantAuthentication - (AnetSingleton.merchant.getMerchantAuthentication().getName(), loginResult.getSessionToken(), deviceId)); - } - - - /** - * Performs a transaction using either manually inputted credit card information - * or credit card information from a test encrypted blob - * @param receiver receiver that listens to the result of the transaction - * @param intent intent with required extras for the transaction - */ - private void makeTransaction(ResultReceiver receiver, Intent intent) { - Bundle resultData = new Bundle(); - try { - // set the market type for the merchant - AnetSingleton.merchant.setMarketType(MarketType.RETAIL); - final CreditCardObject creditCardObject = intent.getParcelableExtra - (TransactionFragment.CREDIT_CARD_TAG); - final String zipcode = intent.getStringExtra(TransactionFragment.ZIPCODE_TAG); - final String totalAmountString = intent.getStringExtra(TransactionFragment.AMOUNT_TAG); - final BigDecimal totalAmount = new BigDecimal(totalAmountString); - - // Create credit card, order, shipping, and customer information for the transaction - CreditCard creditCard = null; - if (intent.getAction().equals(ACTION_PERFORM_SWIPE)) - creditCard = creditCardFromSwipe(); - else if (intent.getAction().equals(ACTION_MAKE_TRANSACTION)) - creditCard = createCreditCard(creditCardObject); - Order testOrder = createOrder(totalAmount); - ShippingCharges shippingCharges = createShippingCharges(); - Customer customer = createCustomer(zipcode); - - // Create an AIM transaction specifying the type of transaction and the amount - net.authorize.aim.Transaction transaction = AnetSingleton.merchant.createAIMTransaction - (net.authorize.TransactionType.AUTH_CAPTURE, testOrder.getTotalAmount()); - - // Set the credit card, order, shipping, and customer information to the transaction - // and post the transaction - transaction.setCreditCard(creditCard); - transaction.setShippingCharges(shippingCharges); - transaction.setOrder(testOrder); - transaction.setCustomer(customer); - net.authorize.aim.Result transactionResult = (net.authorize.aim.Result) - AnetSingleton.merchant.postTransaction(transaction); - resultData.putSerializable(TRANSACTION_STATUS, transactionResult); - receiver.send(TRANSACTION_RESULT_CODE, resultData); - } catch (Exception e) { - resultData.putSerializable(ERROR_STATUS, e); - receiver.send(EXCEPTION_ERROR_CODE, resultData); - } - } - - - /** - * Creates and sets custom shipping charges for the transaction. - * Send in and update any information needed to create the order. - * @return shipping charges for the transaction - */ - public ShippingCharges createShippingCharges() { - ShippingCharges shippingCharges = ShippingCharges.createShippingCharges(); - shippingCharges.setTaxAmount(new BigDecimal(5.0)); - shippingCharges.setTaxItemName("Sales Tax"); - shippingCharges.setFreightAmount(new BigDecimal(6.0)); - shippingCharges.setFreightItemName("Shipping and Handling"); - return shippingCharges; - } - - - /** - * Creates and sets credit card information for the transaction - * @return credit card for the transaction - */ - public CreditCard createCreditCard(CreditCardObject creditCardObject) { - CreditCard creditCard = net.authorize.data.creditcard.CreditCard.createCreditCard(); - creditCard.setCreditCardNumber(creditCardObject.getCardNumber()); - creditCard.setCardCode(creditCardObject.getSecurityCode()); - creditCard.setExpirationMonth(creditCardObject.getExpMonth()); - creditCard.setExpirationYear(creditCardObject.getExpYear()); - creditCard.setAnetDuplicatemaskedCardNumber(creditCardObject.getCardNumber().substring(12, 16)); - return creditCard; - } - - /** - * Creates a custom order for the transaction. Send in and - * update any information needed to create the order. - * @return order for the transaction - */ - public Order createOrder(BigDecimal totalAmount) { - Order testOrder = Order.createOrder(); - testOrder.setTotalAmount(totalAmount); - OrderItem testItem = OrderItem.createOrderItem(); - testItem.setItemId("testItemID"); - testItem.setItemName("testItemName"); - testItem.setItemDescription("testItemDescription"); - testItem.setItemQuantity(new BigDecimal(1)); - testItem.setItemTaxable(false); - testOrder.addOrderItem(testItem); - testOrder.setPurchaseOrderNumber("9999"); - return testOrder; - } - - - /** - * Creates and sets a unique customer for the transaction. Send in - * and update any information as needed to create the customer. - * @return customer for the transaction - */ - public Customer createCustomer(String zipcode) { - Customer testCustomer = Customer.createCustomer(); - Address billingAddress = Address.createAddress(); - billingAddress.setZipPostalCode(zipcode); - billingAddress.setFirstName("John"); - billingAddress.setLastName("Doe"); - billingAddress.setAddress("Main Street"); - billingAddress.setCity("Bellevue"); - billingAddress.setCountry("USA"); - billingAddress.setState("WA"); - testCustomer.setBillTo(billingAddress); - return testCustomer; - } - - - /** - * Sets data from an id tech encrypted blob to a credit card - * @return creditCard received from test encrypted blob - */ - private CreditCard creditCardFromSwipe() { - String encryptedBlob = "02f700801f4725008383252a343736312a2a2a2a2a2a2a2a" + - "303031305e56495341204143515549524552205445535420434152442032325" + - "e313531322a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a3f2a3b34373631" + - "2a2a2a2a2a2a2a2a303031303d313531322a2a2a2a2a2a2a2a2a2a2a2a2a3f2a" + - "10966bcf447a17ad5c139c016b376c09bb4437cbc91d7cc2b3239a7eb76a7636" + - "ca68ea1eabca7299503a46cac3d8176d2c0b9439d95d4d0b45c874599a5b8c7" + - "abc04c1dcd47bb0476f4fe3d4caed018bf055d96c70314acec5773358decc8d50" + - "e1d8e0999e7fc233a927555d6b5440165431323438303238313862994901000000" + - "e0073d826003"; // encrypted data blob from card swipe - String encryptionType = SwiperEncryptionAlgorithmType.TDES.getFieldName(); - CreditCard creditCard = CreditCard.createCreditCard(); - creditCard.setCardPresenseType(CreditCardPresenceType.CARD_PRESENT_ENCRYPTED); - creditCard.getSwipperData().setEncryptedData(encryptedBlob); - creditCard.getSwipperData().setDeviceInfo("4649443D4944544543482E556E694D61672E416E64726F69642E53646B7631"); // id tech hex device info - creditCard.getSwipperData().setEncryptionAlgorithm(SwiperEncryptionAlgorithmType.getEnum(encryptionType)); - return creditCard; - } - - - /** - * Gets unsettled transactions from sandbox account - * @param receiver receiver that listens to the result of the transaction - */ - private void getUnsettledTransactions(ResultReceiver receiver) { - Bundle resultData = new Bundle(); - try { - // Create reporting transaction and specify transaction type - net.authorize.reporting.Transaction transaction = AnetSingleton.merchant.createReportingTransaction - (net.authorize.reporting.TransactionType.GET_UNSETTLED_TRANSACTION_LIST); - - // Create and set reporting details - transaction.setReportingDetails(ReportingDetails.createReportingDetails()); - - // Post the transaction - net.authorize.reporting.Result transactionResult = (net.authorize.reporting.Result) - AnetSingleton.merchant.postTransaction(transaction); - resultData.putSerializable(UNSETTLED_TRANSACTION_LIST_STATUS, transactionResult); - receiver.send(UNSETTLED_TRANSACTIONS_CODE, resultData); - } catch (Exception e) { - resultData.putSerializable(ERROR_STATUS, e); - receiver.send(EXCEPTION_ERROR_CODE, resultData); - } - } - - - /** - * Gets the list of settled transactions between a range set by reporting details. - * Make sure transaction details API is enabled on your account - * (Account -> Transaction Details API -> enable) - * @param receiver receiver that listens to the result of the transaction - */ - private void getSettledTransactions(ResultReceiver receiver) { - Bundle resultData = new Bundle(); - try { - // Create reporting transaction and specify transaction type (GET_SETTLED_BATCH_LIST) - net.authorize.reporting.Transaction batchListTransaction = - AnetSingleton.merchant.createReportingTransaction - (net.authorize.reporting.TransactionType.GET_SETTLED_BATCH_LIST); - // set reporting details (default or custom) - batchListTransaction.setReportingDetails(getReportingDetails()); - // post transaction to get batch list - net.authorize.reporting.Result batchListResult = (net.authorize.reporting.Result) - AnetSingleton.merchant.postTransaction(batchListTransaction); - // get batch details list - ArrayList batchList = batchListResult.getReportingDetails().getBatchDetailsList(); - net.authorize.reporting.Result transactionListResult = null; - ArrayList settledList = new ArrayList<>(); - // for every batch in batch details list, get transaction list - for (int i = batchList.size() - 1; i >= 0; i--) { // in order to display most recent first - // create a reporting transaction and specify transaction type as GET_TRANSACTION_LIST - net.authorize.reporting.Transaction transactionListTransaction = AnetSingleton.merchant. - createReportingTransaction(net.authorize.reporting.TransactionType.GET_TRANSACTION_LIST); - // Create and set reporting details to transaction - transactionListTransaction.setReportingDetails(ReportingDetails.createReportingDetails()); - // set Batch ID from batch transaction list to transaction - transactionListTransaction.getReportingDetails().setBatchId(batchList.get(i).getBatchId()); - // post transaction - transactionListResult = (net.authorize.reporting.Result) - AnetSingleton.merchant.postTransaction(transactionListTransaction); - settledList.addAll(transactionListResult.getReportingDetails().getTransactionDetailList()); - } - resultData.putSerializable(SETTLED_TRANSACTION_LIST_STATUS, transactionListResult); - resultData.putSerializable(EXTRA_SETTLED_TRANSACTION_LIST, settledList); - receiver.send(SETTLED_TRANSACTIONS_CODE, resultData); - } catch (Exception e) { - resultData.putSerializable(ERROR_STATUS, e); - receiver.send(EXCEPTION_ERROR_CODE, resultData); - } - } - - - /** - * Sets a range for obtaining the list of settled transactions. - * @return custom reporting details for the transaction - */ - private ReportingDetails getReportingDetails() { - ReportingDetails reportingDetails = ReportingDetails.createReportingDetails(); - Date currentDate = Calendar.getInstance().getTime(); // get current date - - Calendar calendar = Calendar.getInstance(); - calendar.add(Calendar.DATE, -2); // 2 days before - Date firstDate = calendar.getTime(); - - // date format required by SDK - SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"); - - // set reporting details to get batch between firstDate and currentDate - reportingDetails.setBatchFirstSettlementDate(dateFormat.format(firstDate)); - reportingDetails.setBatchLastSettlementDate(dateFormat.format(currentDate)); - return reportingDetails; - } - - - /** - * Refunds a transaction - * @param receiver receiver that listens to the result of the transaction - * @param intent intent with required extras for refunding a transaction - */ - private void refundTransaction(ResultReceiver receiver, Intent intent) { - Bundle resultData = new Bundle(); - try { - String cardNumber = intent.getExtras().getString(HistoryFragment.TRANSACTION_CARD_NUMBER_TAG); - String transactionId = intent.getExtras().getString(HistoryFragment.TRANSACTION_ID_TAG); - String transactionAmountString = intent.getExtras().getString - (HistoryFragment.TRANSACTION_AMOUNT_TAG); - BigDecimal transactionAmount = new BigDecimal(transactionAmountString); - net.authorize.aim.Transaction refundTransaction = AnetSingleton.merchant.createAIMTransaction - (net.authorize.TransactionType.CREDIT, transactionAmount); - refundTransaction.setRefTransId(transactionId); - CreditCard creditCard = CreditCard.createCreditCard(); - if (cardNumber != null) - creditCard.setMaskedCreditCardNumber(cardNumber); - // bug in sdk (exp date required for refund/ not provided in transaction) - creditCard.setExpirationDate(EXP_DATE_REQUIRED_FOR_REFUND); - refundTransaction.setCreditCard(creditCard); - net.authorize.aim.Result refundResult = (net.authorize.aim.Result) - AnetSingleton.merchant.postTransaction(refundTransaction); - resultData.putSerializable(REFUND_STATUS, refundResult); - receiver.send(REFUND_RESULT_CODE, resultData); - } catch (Exception e){ - resultData.putSerializable(ERROR_STATUS, e); - receiver.send(EXCEPTION_ERROR_CODE, resultData); - } - } - - - /** - * Voids a transaction - * @param receiver receiver that listens to the result of the transaction - * @param intent intent with required extras for voiding a transaction - */ - private void voidTransaction(ResultReceiver receiver, Intent intent) { - Bundle resultData = new Bundle(); - try { - String transactionId = intent.getExtras().getString(HistoryFragment.TRANSACTION_ID_TAG); - String transactionAmountString = intent.getExtras().getString - (HistoryFragment.TRANSACTION_AMOUNT_TAG); - BigDecimal transactionAmount = new BigDecimal(transactionAmountString); - net.authorize.aim.Transaction voidTransaction = AnetSingleton.merchant.createAIMTransaction - (net.authorize.TransactionType.VOID, transactionAmount); - voidTransaction.setRefTransId(transactionId); - net.authorize.aim.Result voidResult = (net.authorize.aim.Result) AnetSingleton.merchant - .postTransaction(voidTransaction); - resultData.putSerializable(VOID_STATUS, voidResult); - receiver.send(VOID_RESULT_CODE, resultData); - } catch (Exception e) { - resultData.putSerializable(ERROR_STATUS, e); - receiver.send(EXCEPTION_ERROR_CODE, resultData); - } - } - - - /** - * Logs a user out - * @param receiver receiver for listening to the result of the transaction - */ - private void logout(ResultReceiver receiver) { - Bundle resultData = new Bundle(); - try { - net.authorize.mobile.Transaction logoutTransaction = AnetSingleton.merchant.createMobileTransaction - (net.authorize.mobile.TransactionType.LOGOUT); - Result result = (net.authorize.mobile.Result) AnetSingleton.merchant.postTransaction(logoutTransaction); - resultData.putSerializable(LOGOUT_STATUS, result); - receiver.send(LOGOUT_RESULT_CODE, resultData); - } catch (Exception e) { - resultData.putSerializable(ERROR_STATUS, e); - receiver.send(EXCEPTION_ERROR_CODE, resultData); - } - } -} diff --git a/sampleapp/app/src/main/java/net/authorize/sampleapplication/views/FormattingTextWatcher.java b/sampleapp/app/src/main/java/net/authorize/sampleapplication/views/FormattingTextWatcher.java deleted file mode 100644 index 7f4cd1f..0000000 --- a/sampleapp/app/src/main/java/net/authorize/sampleapplication/views/FormattingTextWatcher.java +++ /dev/null @@ -1,188 +0,0 @@ -package net.authorize.sampleapplication.views; - -import android.text.Editable; -import android.text.TextWatcher; - -import net.authorize.sampleapplication.R; -import net.authorize.sampleapplication.fragments.TransactionFragment; -import net.authorize.util.Luhn; - -/** - * Displays custom hint messages, message colors, and icon colors based on the validity of - * the text entered in the edit text - */ -public class FormattingTextWatcher implements TextWatcher { - - private FieldType fieldType; - private UpdateUICallBack updateUICallBack; - - public enum FieldType {CARD_NUMBER, CVV_NUMBER, EXP_DATE, ZIPCODE, TOTAL_AMOUNT}; - - public interface UpdateUICallBack { - void updateMessages(FieldType fieldType, int messageId, int messageColorId, int iconColorId); - void updateText(FieldType fieldType, String text, FormattingTextWatcher textWatcher); - } - - public void setFormattingTextWatcher(UpdateUICallBack updateUICallBack) { - this.updateUICallBack = updateUICallBack; - } - - public FormattingTextWatcher(FieldType fieldType) { - this.fieldType = fieldType; - } - - @Override - public void beforeTextChanged(CharSequence s, int start, int count, int after) {} - @Override - public void onTextChanged(CharSequence s, int start, int before, int count) {} - @Override - public void afterTextChanged(Editable s) { - String editText = s.toString(); - int messageId = 0; - switch (fieldType) { - case CARD_NUMBER: - String cardNumberText = s.toString().replaceAll(" ", ""); - String formatted = formatCreditCard(cardNumberText); - updateUICallBack.updateText(FieldType.CARD_NUMBER, formatted, this); - if (editText.length() == TransactionFragment.CARD_NUMBER_FIELD_LENGTH) - displayCardMessageValidation(s); - else - messageId = R.string.card_number_hint; - break; - case EXP_DATE: - String expDateText = s.toString().replaceAll("/", ""); - String formattedExpDate = formatExpDate(expDateText); - updateUICallBack.updateText(FieldType.EXP_DATE, formattedExpDate, this); - if (s.length() == TransactionFragment.EXP_DATE_FIELD_LENGTH) - displayExpDateValidation(s); - else - messageId = R.string.exp_date_hint; - break; - case CVV_NUMBER: - messageId = R.string.cvv_hint; - break; - case ZIPCODE: - messageId = R.string.zipcode_hint; - break; - case TOTAL_AMOUNT: - roundAmount(s.toString()); - break; - } - if (s.length() != 0 && messageId != 0) { - restoreField(fieldType, messageId); - } - } - - /** - * Limits the user to only entering two digits after the decimal in the amount edit text - * @param s current text inside the amount edit text - */ - public void roundAmount(String s) { - String amountString = s; - if (amountString.contains(".") && amountString.length() > 1 && - amountString.charAt(amountString.length() - 1) != '.') { - String digitsBeforeDecimal = amountString.split("\\.")[0]; - String digitsAfterDecimal = amountString.split("\\.")[1]; - if (digitsAfterDecimal.length() > 2) { - digitsAfterDecimal = digitsAfterDecimal.substring(0, 2); - if (digitsBeforeDecimal.length() == 0) { - amountString = "." + digitsAfterDecimal; - } else { - amountString = digitsBeforeDecimal + "." + digitsAfterDecimal; - } - updateUICallBack.updateText(FieldType.TOTAL_AMOUNT, amountString, this); - } - } - } - - /** - * Displays a custom hint message with a custom color below the expiration date exit text - * based off the validity of the expiration date - * @param editText expiration date edit text - */ - public void displayExpDateValidation(Editable editText) { - String cardExpDateText = editText.toString().replace("/", ""); - String expMonth = cardExpDateText.substring(0, 2); - String expYear = cardExpDateText.substring(2, 4); - if (!TransactionFragment.isValidExpDate(expMonth, expYear)) { - updateUICallBack.updateMessages( - FieldType.EXP_DATE, - R.string.invalid_expDate_message, - R.color.ErrorMessageColor, - R.color.ErrorMessageColor); - } else { - updateUICallBack.updateMessages( - FieldType.EXP_DATE, - R.string.exp_date_hint, - R.color.HintColor, - R.color.ThemeColor); - } - } - - /** - * Displays a custom hint message with a custom color below the card number edit text - * based off the validity of the card number - * @param editText card number edit text - */ - public void displayCardMessageValidation(Editable editText) { - if (Luhn.isCardValid(editText.toString())) { - updateUICallBack.updateMessages( - FieldType.CARD_NUMBER, - R.string.valid_card_message, - R.color.Correct, - R.color.ThemeColor); - } else { - updateUICallBack.updateMessages( - FieldType.CARD_NUMBER, - R.string.invalid_card_error_message, - R.color.ErrorMessageColor, - R.color.ErrorMessageColor); - } - } - - /** - * Formats the input of the expiration date EditText after every character entered - * @param expDateText the current expiration date text inside the expiration date EditText - * @return formatted expiration date text (MM/YY) to be set inside the EditText - */ - public String formatExpDate(String expDateText) { - String formattedExpDate = ""; - for (int i = 0; i < expDateText.length(); i++) { - formattedExpDate = formattedExpDate + expDateText.charAt(i); - if ((i + 1) % 2 == 0 && i != expDateText.length() - 1) { - formattedExpDate = formattedExpDate + "/"; - } - } - return formattedExpDate; - } - - /** - * Restores the original layout (hint messages and colors) of the field - * @param fieldType the type of field (current EditText) - * @param messageId the custom hint message to be displayed beneath the EditText - */ - public void restoreField(FieldType fieldType, int messageId) { - updateUICallBack.updateMessages( - fieldType, - messageId, - R.color.HintColor, - R.color.ThemeColor); - } - - /** - * Formats the input of the card number EditText after every character entered - * @param cardNumberText the current card number text inside the card number EditText - * @return formatted card number text to be set inside the EditText - */ - public String formatCreditCard(String cardNumberText) { - String formatted = ""; - for (int i = 0; i < cardNumberText.length(); i++) { - formatted = formatted + cardNumberText.charAt(i); - if ((i + 1) % 4 == 0 && i != cardNumberText.length() - 1) { - formatted = formatted + " "; - } - } - return formatted; - } - -} diff --git a/sampleapp/app/src/main/res/color/navigation_item.xml b/sampleapp/app/src/main/res/color/navigation_item.xml deleted file mode 100644 index 5a1d50e..0000000 --- a/sampleapp/app/src/main/res/color/navigation_item.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_account_box_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_account_box_black_24dp.png deleted file mode 100644 index 47db072..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_account_box_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_account_circle_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_account_circle_black_24dp.png deleted file mode 100644 index ba5a509..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_account_circle_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_attach_money_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_attach_money_black_24dp.png deleted file mode 100644 index ad0f76c..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_attach_money_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_desktop_mac_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_desktop_mac_black_24dp.png deleted file mode 100644 index b5d41aa..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_desktop_mac_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_done_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_done_black_24dp.png deleted file mode 100644 index d4c0607..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_done_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_error_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_error_black_24dp.png deleted file mode 100644 index 5799a7d..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_error_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_event_note_black_18dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_event_note_black_18dp.png deleted file mode 100644 index 93277e4..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_event_note_black_18dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_history_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_history_black_24dp.png deleted file mode 100644 index b74e289..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_history_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_lock_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_lock_black_24dp.png deleted file mode 100644 index de50295..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_lock_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_my_location_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_my_location_black_24dp.png deleted file mode 100644 index 85e3872..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_my_location_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_payment_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_payment_black_24dp.png deleted file mode 100644 index e2225e8..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_payment_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_18dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_18dp.png deleted file mode 100644 index 96fcb38..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_18dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_24dp.png deleted file mode 100644 index 871f8be..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_48dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_48dp.png deleted file mode 100644 index d54de22..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_person_outline_black_48dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_place_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_place_black_24dp.png deleted file mode 100644 index df1f340..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_place_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_search_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_search_black_24dp.png deleted file mode 100644 index c593e7a..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_search_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_search_white_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_search_white_24dp.png deleted file mode 100644 index bbfbc96..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_search_white_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_store_mall_directory_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_store_mall_directory_black_24dp.png deleted file mode 100644 index a45c025..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_store_mall_directory_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-hdpi/ic_tablet_mac_black_24dp.png b/sampleapp/app/src/main/res/drawable-hdpi/ic_tablet_mac_black_24dp.png deleted file mode 100644 index 263b0a7..0000000 Binary files a/sampleapp/app/src/main/res/drawable-hdpi/ic_tablet_mac_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_account_box_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_account_box_black_24dp.png deleted file mode 100644 index 2a5617b..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_account_box_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_account_circle_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_account_circle_black_24dp.png deleted file mode 100644 index 0c1202d..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_account_circle_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_attach_money_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_attach_money_black_24dp.png deleted file mode 100644 index 2ae5e6d..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_attach_money_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_desktop_mac_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_desktop_mac_black_24dp.png deleted file mode 100644 index c03f394..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_desktop_mac_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_done_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_done_black_24dp.png deleted file mode 100644 index 5e5e7cf..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_done_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_error_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_error_black_24dp.png deleted file mode 100644 index 221a25d..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_error_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_event_note_black_18dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_event_note_black_18dp.png deleted file mode 100644 index 3a777f1..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_event_note_black_18dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_history_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_history_black_24dp.png deleted file mode 100644 index e77a077..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_history_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_lock_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_lock_black_24dp.png deleted file mode 100644 index 3a4a158..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_lock_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_my_location_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_my_location_black_24dp.png deleted file mode 100644 index 5684aa7..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_my_location_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_payment_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_payment_black_24dp.png deleted file mode 100644 index 09e63c2..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_payment_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_person_outline_black_18dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_person_outline_black_18dp.png deleted file mode 100644 index 6dd594e..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_person_outline_black_18dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_person_outline_black_48dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_person_outline_black_48dp.png deleted file mode 100644 index 7a95c11..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_person_outline_black_48dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_place_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_place_black_24dp.png deleted file mode 100644 index 92a0738..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_place_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_search_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_search_black_24dp.png deleted file mode 100644 index 6b16343..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_search_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_search_white_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_search_white_24dp.png deleted file mode 100644 index faefc59..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_search_white_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_store_mall_directory_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_store_mall_directory_black_24dp.png deleted file mode 100644 index f41052a..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_store_mall_directory_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-mdpi/ic_tablet_mac_black_24dp.png b/sampleapp/app/src/main/res/drawable-mdpi/ic_tablet_mac_black_24dp.png deleted file mode 100644 index 8a323e4..0000000 Binary files a/sampleapp/app/src/main/res/drawable-mdpi/ic_tablet_mac_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_account_box_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_account_box_black_24dp.png deleted file mode 100644 index c5cd86f..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_account_box_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_account_circle_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_account_circle_black_24dp.png deleted file mode 100644 index f26b201..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_account_circle_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_attach_money_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_attach_money_black_24dp.png deleted file mode 100644 index c94dc6a..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_attach_money_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_desktop_mac_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_desktop_mac_black_24dp.png deleted file mode 100644 index 962dd00..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_desktop_mac_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_done_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_done_black_24dp.png deleted file mode 100644 index 64a4944..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_done_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_error_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_error_black_24dp.png deleted file mode 100644 index fb719fc..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_error_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_event_note_black_18dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_event_note_black_18dp.png deleted file mode 100644 index 3d068f1..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_event_note_black_18dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_history_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_history_black_24dp.png deleted file mode 100644 index 8e44d94..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_history_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png deleted file mode 100644 index 2a16694..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_my_location_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_my_location_black_24dp.png deleted file mode 100644 index 7faa345..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_my_location_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_payment_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_payment_black_24dp.png deleted file mode 100644 index 33b1cb3..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_payment_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_person_outline_black_18dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_person_outline_black_18dp.png deleted file mode 100644 index 871f8be..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_person_outline_black_18dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_person_outline_black_48dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_person_outline_black_48dp.png deleted file mode 100644 index 46ce7ef..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_person_outline_black_48dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_place_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_place_black_24dp.png deleted file mode 100644 index b2696b6..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_place_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_search_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_search_black_24dp.png deleted file mode 100644 index 6381902..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_search_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_search_white_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_search_white_24dp.png deleted file mode 100644 index bfc3e39..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_search_white_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_store_mall_directory_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_store_mall_directory_black_24dp.png deleted file mode 100644 index 392ac52..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_store_mall_directory_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xhdpi/ic_tablet_mac_black_24dp.png b/sampleapp/app/src/main/res/drawable-xhdpi/ic_tablet_mac_black_24dp.png deleted file mode 100644 index fdfd93b..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xhdpi/ic_tablet_mac_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_account_box_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_account_box_black_24dp.png deleted file mode 100644 index 114d176..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_account_box_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_account_circle_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_account_circle_black_24dp.png deleted file mode 100644 index 3cc0a63..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_account_circle_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_attach_money_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_attach_money_black_24dp.png deleted file mode 100644 index a9478a6..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_attach_money_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_desktop_mac_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_desktop_mac_black_24dp.png deleted file mode 100644 index 7f59f89..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_desktop_mac_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_done_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_done_black_24dp.png deleted file mode 100644 index c9c0174..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_done_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_error_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_error_black_24dp.png deleted file mode 100644 index 9329ca2..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_error_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_event_note_black_18dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_event_note_black_18dp.png deleted file mode 100644 index 17a70f9..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_event_note_black_18dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png deleted file mode 100644 index a7caa2d..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_my_location_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_my_location_black_24dp.png deleted file mode 100644 index d3a1ab0..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_my_location_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_payment_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_payment_black_24dp.png deleted file mode 100644 index 8b0836b..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_payment_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_person_outline_black_18dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_person_outline_black_18dp.png deleted file mode 100644 index 474dee9..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_person_outline_black_18dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_person_outline_black_48dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_person_outline_black_48dp.png deleted file mode 100644 index 6b9ac06..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_person_outline_black_48dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_place_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_place_black_24dp.png deleted file mode 100644 index 5a21dfa..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_place_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_search_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_search_black_24dp.png deleted file mode 100644 index 3ae490e..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_search_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png deleted file mode 100644 index abbb989..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_search_white_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_store_mall_directory_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_store_mall_directory_black_24dp.png deleted file mode 100644 index b0b71df..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_store_mall_directory_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_tablet_mac_black_24dp.png b/sampleapp/app/src/main/res/drawable-xxhdpi/ic_tablet_mac_black_24dp.png deleted file mode 100644 index 70859ba..0000000 Binary files a/sampleapp/app/src/main/res/drawable-xxhdpi/ic_tablet_mac_black_24dp.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable/authorize_background.png b/sampleapp/app/src/main/res/drawable/authorize_background.png deleted file mode 100644 index 242b85a..0000000 Binary files a/sampleapp/app/src/main/res/drawable/authorize_background.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable/authorize_net_logo.png b/sampleapp/app/src/main/res/drawable/authorize_net_logo.png deleted file mode 100644 index acdd22a..0000000 Binary files a/sampleapp/app/src/main/res/drawable/authorize_net_logo.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable/drawer_header.png b/sampleapp/app/src/main/res/drawable/drawer_header.png deleted file mode 100644 index 3a204ea..0000000 Binary files a/sampleapp/app/src/main/res/drawable/drawer_header.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable/history_item_refund_background.xml b/sampleapp/app/src/main/res/drawable/history_item_refund_background.xml deleted file mode 100644 index a6a7584..0000000 --- a/sampleapp/app/src/main/res/drawable/history_item_refund_background.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/sampleapp/app/src/main/res/drawable/key.png b/sampleapp/app/src/main/res/drawable/key.png deleted file mode 100644 index 88cabc3..0000000 Binary files a/sampleapp/app/src/main/res/drawable/key.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/drawable/listview.png b/sampleapp/app/src/main/res/drawable/listview.png deleted file mode 100644 index a4f3870..0000000 Binary files a/sampleapp/app/src/main/res/drawable/listview.png and /dev/null differ diff --git a/sampleapp/app/src/main/res/layout/activity_login.xml b/sampleapp/app/src/main/res/layout/activity_login.xml deleted file mode 100644 index 8da0e3e..0000000 --- a/sampleapp/app/src/main/res/layout/activity_login.xml +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - -