Tabnine Logo
TransactionRequest.getShippingFirstName
Code IndexAdd Tabnine to your IDE (free)

How to use
getShippingFirstName
method
in
com.aoindustries.creditcards.TransactionRequest

Best Java code snippets using com.aoindustries.creditcards.TransactionRequest.getShippingFirstName (Showing top 5 results out of 315)

origin: com.aoindustries/ao-credit-cards-stripe

/** https://stripe.com/docs/api#create_charge */
private static Map<String,Object> makeShippingParams(TransactionRequest transactionRequest, CreditCard creditCard, boolean update) {
  Map<String,Object> shippingParams = new HashMap<String,Object>();
  addParam(update, shippingParams, "address", makeShippingAddressParams(transactionRequest, update));
  addParam(update, shippingParams, "name", CreditCard.getFullName(transactionRequest.getShippingFirstName(), transactionRequest.getShippingLastName()));
  // Phone cannot be in the shipping by itself
  if(!shippingParams.isEmpty()) addParam(update, shippingParams, "phone", creditCard.getPhone());
  // Unused: tracking_number
  return shippingParams;
}
// </editor-fold>
origin: com.aoindustries/ao-credit-cards-usaepay

String shipfname = transactionRequest.getShippingFirstName();
if(shipfname!=null && shipfname.length()>0) request.put("UMshipfname", shipfname);
String shiplname = transactionRequest.getShippingLastName();
origin: com.aoindustries/ao-credit-cards-authorizeNet

addField(querySB, "x_customer_ip", transactionRequest.getCustomerIp());
addField(querySB, "x_ship_to_first_name", transactionRequest.getShippingFirstName());
addField(querySB, "x_ship_to_last_name", transactionRequest.getShippingLastName());
addField(querySB, "x_ship_to_company", transactionRequest.getShippingCompanyName());
origin: com.aoindustries/ao-credit-cards-payflowPro

String shippingFirstName = transactionRequest.getShippingFirstName();
if(shippingFirstName!=null && shippingFirstName.length()>0) shipTo.setShipToFirstName(shippingFirstName);
String shippingLastName = transactionRequest.getShippingLastName();
origin: com.aoindustries/ao-credit-cards-sagePayments

emptyStringIfNull(creditCard.getPhone()),
emptyStringIfNull(creditCard.getFax()),
emptyStringIfNull(CreditCard.getFullName(transactionRequest.getShippingFirstName(), transactionRequest.getShippingLastName())),
emptyStringIfNull(getStreetAddress(transactionRequest.getShippingStreetAddress1(), transactionRequest.getShippingStreetAddress2())),
emptyStringIfNull(transactionRequest.getShippingCity()),
emptyStringIfNull(creditCard.getPhone()),
emptyStringIfNull(creditCard.getFax()),
emptyStringIfNull(CreditCard.getFullName(transactionRequest.getShippingFirstName(), transactionRequest.getShippingLastName())),
emptyStringIfNull(getStreetAddress(transactionRequest.getShippingStreetAddress1(), transactionRequest.getShippingStreetAddress2())),
emptyStringIfNull(transactionRequest.getShippingCity()),
emptyStringIfNull(creditCard.getPhone()),
emptyStringIfNull(creditCard.getFax()),
emptyStringIfNull(CreditCard.getFullName(transactionRequest.getShippingFirstName(), transactionRequest.getShippingLastName())),
emptyStringIfNull(getStreetAddress(transactionRequest.getShippingStreetAddress1(), transactionRequest.getShippingStreetAddress2())),
emptyStringIfNull(transactionRequest.getShippingCity()),
emptyStringIfNull(creditCard.getPhone()),
emptyStringIfNull(creditCard.getFax()),
emptyStringIfNull(CreditCard.getFullName(transactionRequest.getShippingFirstName(), transactionRequest.getShippingLastName())),
emptyStringIfNull(getStreetAddress(transactionRequest.getShippingStreetAddress1(), transactionRequest.getShippingStreetAddress2())),
emptyStringIfNull(transactionRequest.getShippingCity()),
com.aoindustries.creditcardsTransactionRequestgetShippingFirstName

Popular methods of TransactionRequest

  • getAmount
  • getCurrency
  • getOrderNumber
  • getShippingAmount
  • getShippingCity
  • getShippingCountryCode
  • getShippingLastName
  • getShippingPostalCode
  • getShippingState
  • getShippingStreetAddress1
  • getShippingStreetAddress2
  • getTaxAmount
  • getShippingStreetAddress2,
  • getTaxAmount,
  • getCustomerIp,
  • getDescription,
  • getDutyAmount,
  • getInvoiceNumber,
  • getPurchaseOrderNumber,
  • getTaxExempt,
  • getTestMode

Popular in Java

  • Finding current android device location
  • getSharedPreferences (Context)
  • getExternalFilesDir (Context)
  • setRequestProperty (URLConnection)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now