Tabnine Logo
CreditCard.getFullName
Code IndexAdd Tabnine to your IDE (free)

How to use
getFullName
method
in
com.aoindustries.creditcards.CreditCard

Best Java code snippets using com.aoindustries.creditcards.CreditCard.getFullName (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

request.put("UMname", CreditCard.getFullName(creditCard.getFirstName(), creditCard.getLastName()));
origin: com.aoindustries/ao-credit-cards-payflowPro

String cvv2 = creditCard.getCardCode();
if(cvv2!=null && cvv2.length()>0) ppCreditCard.setCvv2(cvv2);
ppCreditCard.setName(CreditCard.getFullName(creditCard.getFirstName(), creditCard.getLastName()));
CardTender cardTender = new CardTender(ppCreditCard);
origin: com.aoindustries/ao-credit-cards-stripe

/** https://stripe.com/docs/api#update_card */
private static void addCardParams(
  CreditCard creditCard,
  boolean update,
  Map<String,Object> cardParams
) {
  addParam(update, cardParams, "name", CreditCard.getFullName(creditCard.getFirstName(), creditCard.getLastName()));
  addParam(update, cardParams, "address_line1", creditCard.getStreetAddress1());
  addParam(update, cardParams, "address_line2", creditCard.getStreetAddress2());
  addParam(update, cardParams, "address_city", creditCard.getCity());
  addParam(update, cardParams, "address_zip", creditCard.getPostalCode());
  addParam(update, cardParams, "address_state", creditCard.getState());
  addParam(update, cardParams, "address_country", creditCard.getCountryCode());
}
origin: com.aoindustries/ao-credit-cards-sagePayments

emptyStringIfNull(merchantId),
emptyStringIfNull(merchantKey),
emptyStringIfNull(CreditCard.getFullName(creditCard.getFirstName(), creditCard.getLastName())),
emptyStringIfNull(getStreetAddress(creditCard.getStreetAddress1(), creditCard.getStreetAddress2())),
emptyStringIfNull(creditCard.getCity()),
emptyStringIfNull(creditCard.getPhone()),
emptyStringIfNull(creditCard.getFax()),
emptyStringIfNull(CreditCard.getFullName(transactionRequest.getShippingFirstName(), transactionRequest.getShippingLastName())),
emptyStringIfNull(getStreetAddress(transactionRequest.getShippingStreetAddress1(), transactionRequest.getShippingStreetAddress2())),
emptyStringIfNull(transactionRequest.getShippingCity()),
emptyStringIfNull(merchantId),
emptyStringIfNull(merchantKey),
emptyStringIfNull(CreditCard.getFullName(creditCard.getFirstName(), creditCard.getLastName())),
emptyStringIfNull(getStreetAddress(creditCard.getStreetAddress1(), creditCard.getStreetAddress2())),
emptyStringIfNull(creditCard.getCity()),
emptyStringIfNull(creditCard.getPhone()),
emptyStringIfNull(creditCard.getFax()),
emptyStringIfNull(CreditCard.getFullName(transactionRequest.getShippingFirstName(), transactionRequest.getShippingLastName())),
emptyStringIfNull(getStreetAddress(transactionRequest.getShippingStreetAddress1(), transactionRequest.getShippingStreetAddress2())),
emptyStringIfNull(transactionRequest.getShippingCity()),
emptyStringIfNull(merchantId),
emptyStringIfNull(merchantKey),
emptyStringIfNull(CreditCard.getFullName(creditCard.getFirstName(), creditCard.getLastName())),
emptyStringIfNull(getStreetAddress(creditCard.getStreetAddress1(), creditCard.getStreetAddress2())),
emptyStringIfNull(creditCard.getCity()),
com.aoindustries.creditcardsCreditCardgetFullName

Popular methods of CreditCard

  • getCardCode
  • getCardNumber
  • getCity
  • getCountryCode
  • getEmail
  • getFirstName
  • getLastName
  • getPhone
  • getPostalCode
  • getState
  • getStreetAddress1
  • getStreetAddress2
  • getStreetAddress1,
  • getStreetAddress2,
  • getComments,
  • getCompanyName,
  • getCustomerId,
  • getExpirationDateMMYY,
  • getFax,
  • numbersOnly,
  • getCustomerTaxId

Popular in Java

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (ScheduledExecutorService)
  • notifyDataSetChanged (ArrayAdapter)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • From CI to AI: The AI layer in your organization
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