Class GatewayCustomer<T>
- java.lang.Object
-
- com.broadleafcommerce.paymentgateway.domain.GatewayCustomer<T>
-
public class GatewayCustomer<T> extends Object
- Author:
- Elbert Bautista (elbertbautista)
-
-
Constructor Summary
Constructors Constructor Description GatewayCustomer()GatewayCustomer(T parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GatewayCustomer<T>additionalFields(String key, Object value)GatewayCustomer<T>additionalFields(Map<String,Object> additionalFields)GatewayCustomer<T>companyName(String companyName)GatewayCustomer<T>customerId(String customerId)booleancustomerPopulated()Tdone()GatewayCustomer<T>email(String email)GatewayCustomer<T>fax(String fax)GatewayCustomer<T>firstName(String firstName)Map<String,Object>getAdditionalFields()StringgetCompanyName()StringgetCustomerId()StringgetEmail()StringgetFax()StringgetFirstName()StringgetLastName()StringgetMobile()TgetParent()StringgetPhone()StringgetWebsite()GatewayCustomer<T>lastName(String lastName)GatewayCustomer<T>mobile(String mobile)GatewayCustomer<T>phone(String phone)GatewayCustomer<T>website(String website)
-
-
-
Constructor Detail
-
GatewayCustomer
public GatewayCustomer()
-
GatewayCustomer
public GatewayCustomer(T parent)
-
-
Method Detail
-
done
public T done()
-
additionalFields
public GatewayCustomer<T> additionalFields(Map<String,Object> additionalFields)
-
additionalFields
public GatewayCustomer<T> additionalFields(String key, Object value)
-
customerId
public GatewayCustomer<T> customerId(String customerId)
-
firstName
public GatewayCustomer<T> firstName(String firstName)
-
lastName
public GatewayCustomer<T> lastName(String lastName)
-
companyName
public GatewayCustomer<T> companyName(String companyName)
-
phone
public GatewayCustomer<T> phone(String phone)
-
mobile
public GatewayCustomer<T> mobile(String mobile)
-
fax
public GatewayCustomer<T> fax(String fax)
-
website
public GatewayCustomer<T> website(String website)
-
email
public GatewayCustomer<T> email(String email)
-
customerPopulated
public boolean customerPopulated()
-
getParent
public T getParent()
-
getCustomerId
public String getCustomerId()
-
getFirstName
public String getFirstName()
-
getLastName
public String getLastName()
-
getCompanyName
public String getCompanyName()
-
getPhone
public String getPhone()
-
getMobile
public String getMobile()
-
getFax
public String getFax()
-
getWebsite
public String getWebsite()
-
getEmail
public String getEmail()
-
-