Interface ShippingSetter
-
- All Known Subinterfaces:
AlipaySaleTransaction
,CCCreditTransaction
,CCForceTicketTransaction
,CCPayerAuthTransaction
,CCPreAuthTransaction
,CCSaleTransaction
,CustomerCForceTicketTransaction
,CustomerCSaleTransaction
,DEDDCreditTransaction
,DEDDSaleTransaction
,InstallRecurringPayment
,MobilePhoneChargeTransaction
,ModifyRecurringPayment
,PayPalCreditTransaction
- All Known Implementing Classes:
AlipaySaleTransactionObject
,CCCreditTransactionObject
,CCForceTicketTransactionObject
,CCPayerAuthTransactionObject
,CCPreAuthTransactionObject
,CCSaleTransactionObject
,CustomerCForceTicketTransactionObject
,CustomerCSaleTransactionObject
,DEDDCreditTransactionObject
,DEDDSaleTransactionObject
,InstallRecurringPaymentObject
,MobilePhoneChargeTransactionObject
,ModifyRecurringPaymentObject
,PayPalCreditTransactionObject
public interface ShippingSetter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
setShippingAddress1(String address1)
sets the first line of the addressvoid
setShippingAddress2(String address2)
sets the second line of the addressvoid
setShippingAddressCity(String city)
sets the cityvoid
setShippingAddressCountry(String country)
sets the countryvoid
setShippingAddressName(String name)
sets the name of the shipping addressvoid
setShippingAddressState(String state)
sets the statevoid
setShippingAddressZip(String zip)
sets the zip codevoid
setType(String type)
Deprecated.
-
-
-
Method Detail
-
setType
@Deprecated void setType(String type)
Deprecated.sets the carrier- Parameters:
carrier
- the carrier
-
setShippingAddressName
void setShippingAddressName(String name)
sets the name of the shipping address- Parameters:
name
- the name
-
setShippingAddress1
void setShippingAddress1(String address1)
sets the first line of the address- Parameters:
address1
- the first line of the address
-
setShippingAddress2
void setShippingAddress2(String address2)
sets the second line of the address- Parameters:
address2
- the second line of the address
-
setShippingAddressCity
void setShippingAddressCity(String city)
sets the city- Parameters:
city
- the city
-
setShippingAddressState
void setShippingAddressState(String state)
sets the state- Parameters:
state
- the state
-
setShippingAddressZip
void setShippingAddressZip(String zip)
sets the zip code- Parameters:
zip
- the zip code
-
setShippingAddressCountry
void setShippingAddressCountry(String country)
sets the country- Parameters:
country
- the country
-
-