Uses of Interface
com.retek.component.customer.CustomerAddress

Packages that use CustomerAddress
com.retek.component.customer   
com.retek.component.customer.impl   
com.retek.component.customer.integration.impl   
com.retek.component.customer.test   
com.retek.component.customerorder   
com.retek.component.customerorder.impl   
com.retek.component.customerorder.impl.command   
com.retek.component.history   
com.retek.component.internet.impl   
com.retek.component.internet.test   
com.retek.component.pend   
com.retek.component.pend.impl   
com.retek.component.salesaudit   
com.retek.component.salesaudit.impl.remote.command   
com.retek.rcom.gui.screen.orderentry   
com.retek.rcom.gui.screen.ordermain   
com.retek.rcom.gui.wrapper   
 

Uses of CustomerAddress in com.retek.component.customer
 

Methods in com.retek.component.customer that return CustomerAddress
 CustomerAddress CustomerManager.readAddress(DistributedReference ref)
           
 CustomerAddress CustomerManager.buildCustomerAddressInstance()
          Builds a new instance of CustomerAddress with country initialized to default country.
 CustomerAddress CustomerManager.buildCustomerAddressInstance(CustomerAddress copyFromAddress)
          Builds a new instance of CustomerAddress with all attribute values initialized to the current values on copyFromAddress.
 CustomerAddress Customer.getPrimaryShipToAddress()
           
 CustomerAddress Customer.getPrimaryBillToAddress()
           
 CustomerAddress Customer.applyActiveAddress(CustomerAddress address)
          Ensures that a CustomerAddress with the same address text as the address parameter exists in this Customer's active address list.
 CustomerAddress ActivityRequest.getAddress()
           
 CustomerAddress CatalogRequest.getDeliveryAddress()
           
 

Methods in com.retek.component.customer with parameters of type CustomerAddress
 java.util.Set CustomerManager.findCustomerChangeReasons(CustomerAddress custAddress)
           
 CustomerAddress CustomerManager.buildCustomerAddressInstance(CustomerAddress copyFromAddress)
          Builds a new instance of CustomerAddress with all attribute values initialized to the current values on copyFromAddress.
 boolean CustomerAddress.allFieldsEqual(CustomerAddress customerAddress)
           
 void Customer.setPrimaryShipToAddress(CustomerAddress shipToAddress)
           
 void Customer.setPrimaryBillToAddress(CustomerAddress billToAddress)
           
 void Customer.setAddressInactive(CustomerAddress customerAddress)
           
 CustomerAddress Customer.applyActiveAddress(CustomerAddress address)
          Ensures that a CustomerAddress with the same address text as the address parameter exists in this Customer's active address list.
 void ActivityRequest.setAddress(CustomerAddress address)
           
 void CatalogRequest.setDeliveryAddress(CustomerAddress deliveryAddress)
           
 

Uses of CustomerAddress in com.retek.component.customer.impl
 

Classes in com.retek.component.customer.impl that implement CustomerAddress
 class CustomerAddressImpl
           
 

Methods in com.retek.component.customer.impl that return CustomerAddress
 CustomerAddress CatalogRequestImpl.getDeliveryAddress()
           
 CustomerAddress CustomerImpl.getPrimaryShipToAddress()
           
 CustomerAddress CustomerImpl.getPrimaryBillToAddress()
           
 CustomerAddress CustomerImpl.applyActiveAddress(CustomerAddress address)
           
 CustomerAddress CustomerManagerImpl.readAddress(DistributedReference ref)
           
 CustomerAddress CustomerManagerImpl.buildCustomerAddressInstance()
           
 CustomerAddress CustomerManagerImpl.buildCustomerAddressInstance(CustomerAddress copyFrom)
           
 CustomerAddress ActivityRequestImpl.getAddress()
           
 

Methods in com.retek.component.customer.impl with parameters of type CustomerAddress
 void CatalogRequestImpl.setDeliveryAddress(CustomerAddress deliveryAddress)
           
static void CustomerAddressValidator.validate(Customer customer, CustomerAddress custAddr)
           
 boolean CustomerAddressImpl.allFieldsEqual(CustomerAddress address)
           
 CustomerAddress CustomerImpl.applyActiveAddress(CustomerAddress address)
           
 void CustomerImpl.setPrimaryBillToAddress(CustomerAddress billToAddress)
           
 void CustomerImpl.setAddressInactive(CustomerAddress customerAddress)
           
 void CustomerImpl.setPrimaryShipToAddress(CustomerAddress shipToAddress)
           
 CustomerAddress CustomerManagerImpl.buildCustomerAddressInstance(CustomerAddress copyFrom)
           
 java.util.Set CustomerManagerImpl.findCustomerChangeReasons(CustomerAddress custAddress)
           
 void ActivityRequestImpl.setAddress(CustomerAddress address)
           
 

Uses of CustomerAddress in com.retek.component.customer.integration.impl
 

Constructors in com.retek.component.customer.integration.impl with parameters of type CustomerAddress
CustomerIntegrationCustomerAddressImpl(CustomerAddress customerAddress)
           
 

Uses of CustomerAddress in com.retek.component.customer.test
 

Methods in com.retek.component.customer.test that return CustomerAddress
static CustomerAddress CustomerObjectMaster.attachCountry(CustomerAddress address, boolean shippableCountry)
           
static CustomerAddress CustomerObjectMaster.createCustomerAddress(DistributedContext context, Address address)
           
static CustomerAddress CustomerObjectMaster.createCustomerAddress(DistributedContext context)
           
static CustomerAddress CustomerObjectMaster.createCustomerAddress(DistributedContext context, boolean createWithPhoneNumber)
           
static CustomerAddress CustomerObjectMaster.createIACustomerAddress(DistributedContext context)
           
static CustomerAddress CustomerObjectMaster.createAZCustomerAddress(DistributedContext context)
           
static CustomerAddress CustomerObjectMaster.attachAddress(Customer customer)
           
static CustomerAddress CustomerObjectMaster.attachAddress(Customer customer, Address address)
           
static CustomerAddress CustomerObjectMaster.attachGiftRecipientAddress(Customer customer)
           
static CustomerAddress CustomerObjectMaster.createCustomerAddressWithPOBox(DistributedContext context)
           
static CustomerAddress CustomerObjectMaster.createCustomerAddressWithApoFpo(DistributedContext context)
           
 

Methods in com.retek.component.customer.test with parameters of type CustomerAddress
static CustomerAddress CustomerObjectMaster.attachCountry(CustomerAddress address, boolean shippableCountry)
           
 

Uses of CustomerAddress in com.retek.component.customerorder
 

Subinterfaces of CustomerAddress in com.retek.component.customerorder
 interface CustomerOrderAddress
           
 

Methods in com.retek.component.customerorder that return CustomerAddress
 CustomerAddress CustomerOrderPayment.getRefundRecipientAddress()
          Return the refund recipient address for the refund payment.
 CustomerAddress CustomerOrderLine.getShipToAddress()
          Return the customer address for the order line ship-to address.
 CustomerAddress ShipTo.getCustomerAddress()
           
 CustomerAddress ReturnLine.getGiftRefundRecipientAddress()
          Return the refund recipient address for the return line, returns null if a gift refund recipient is not applicable for the return.
 CustomerAddress CustomerOrder.getDefaultShipToAddress()
           
 CustomerAddress CustomerOrder.getBillToAddress()
           
 CustomerAddress CustomerOrderMerchandiseCertificatePayment.getRefundRecipientAddress()
          Return the refund recipient address for the refund payment.
 

Methods in com.retek.component.customerorder with parameters of type CustomerAddress
 void CustomerOrderPayment.setRefundRecipientAddress(CustomerAddress address)
          Set the recipient address for the refund payment.
 void CustomerOrderLine.setShipToAddress(CustomerAddress addr)
           
 void ReturnLine.setGiftRefundRecipientAddress(CustomerAddress recipientAddress)
          Set the refund recipient for the return line refund (applicable if the return is for a gift return).
 void CustomerOrder.setBillToAddress(CustomerAddress billToAddress)
          Set the bill to address for the order.
 void CustomerOrderMerchandiseCertificatePayment.setRefundRecipientAddress(CustomerAddress address)
          Set the recipient address for the refund payment.
 

Uses of CustomerAddress in com.retek.component.customerorder.impl
 

Classes in com.retek.component.customerorder.impl that implement CustomerAddress
 class CustomerOrderAddressImpl
           
 

Methods in com.retek.component.customerorder.impl that return CustomerAddress
 CustomerAddress CustomerOrderPaymentImpl.getRefundRecipientAddress()
           
 CustomerAddress CustomerOrderLineImpl.getPreviousShipToAddress()
           
 CustomerAddress CustomerOrderLineImpl.getShipToAddress()
           
 CustomerAddress CustomerOrderLineImpl.getOriginalShipToAddress()
           
 CustomerAddress CustomerOrderCheckPaymentImpl.getRefundRecipientAddress()
           
 CustomerAddress CustomerOrderImpl.getDefaultShipToAddress()
           
 CustomerAddress CustomerOrderImpl.getBillToAddress()
           
 CustomerAddress ReturnLineImpl.getGiftRefundRecipientAddress()
           
 CustomerAddress ReturnLineImpl.getShipToAddress()
           
 CustomerAddress CustomerOrderMerchandiseCertificatePaymentImpl.getRefundRecipientAddress()
           
 CustomerAddress ShipToImpl.getCustomerAddress()
           
 

Methods in com.retek.component.customerorder.impl with parameters of type CustomerAddress
 void CustomerOrderPaymentImpl.setRefundRecipientAddress(CustomerAddress address)
           
 void CustomerOrderLineImpl.setShipToAddress(CustomerAddress address)
           
 void CustomerOrderLineImpl.setShipToAddressUnchecked(CustomerAddress address)
           
static ShipToAddressValidateCommand CustomerOrderCommandFactory.createShipToAddressValidateCommand(java.lang.String processTogether, CustomerOrderLine orderLine, CustomerAddress newShipToAddress)
           
static ShippingRestrictionValidateCommand CustomerOrderCommandFactory.createShippingRestrictionValidateCommand(CustomerOrderLine orderLine, CustomerAddress address, Carrier carrier, SellingSku sellingSku, DistributedContext context)
           
 boolean CustomerOrderAddressImpl.allFieldsEqual(CustomerAddress address)
           
 void CustomerOrderCheckPaymentImpl.setRefundRecipientAddress(CustomerAddress address)
           
 void CustomerOrderImpl.setBillToAddress(CustomerAddress address)
           
protected  ShipToImpl CustomerOrderManagerImpl.buildShipToInstance(CustomerOrderImpl customerOrderImpl, CustomerAddress customerShipToAddress, CustomerOrderTransactionGroup group, ShipToTotalsImpl shipToTotalsImpl)
           
 CustomerOrderAddress CustomerOrderManagerImpl.buildCustomerOrderAddressInstance(CustomerAddress customerAddress)
           
static void OrderSetCustomerAttributeValidator.validateBillToAddress(CustomerOrder customerOrder, Customer customer, CustomerAddress billToAddress)
           
static void OrderSetCustomerAttributeValidator.validateShipToAddress(CustomerOrder customerOrder, Customer customer, CustomerAddress shipToAddress)
           
 void ReturnLineImpl.setGiftRefundRecipientAddress(CustomerAddress recipientAddress)
           
 void CustomerOrderMerchandiseCertificatePaymentImpl.setRefundRecipientAddress(CustomerAddress address)
           
 

Constructors in com.retek.component.customerorder.impl with parameters of type CustomerAddress
CustomerOrderAddressImpl(DistributedContext context, DistributedReference reference, CustomerAddress customerAddress)
           
ShipToImpl(DistributedContext context, DistributedReference ref, CustomerOrder order, CustomerAddress customerShipToAddress, CustomerOrderTransactionGroup group)
           
 

Uses of CustomerAddress in com.retek.component.customerorder.impl.command
 

Methods in com.retek.component.customerorder.impl.command with parameters of type CustomerAddress
 void ShippingRestrictionValidateCommand.setAddress(CustomerAddress address)
           
 void ShipToAddressValidateCommand.setNewShipToAddress(CustomerAddress newAddress)
           
 

Uses of CustomerAddress in com.retek.component.history
 

Methods in com.retek.component.history with parameters of type CustomerAddress
static java.lang.String HistoryEventRequest.getAddressDetailString(CustomerAddress address)
           
 

Uses of CustomerAddress in com.retek.component.internet.impl
 

Methods in com.retek.component.internet.impl that return CustomerAddress
static CustomerAddress AddressConverter.getCustomerAddress(Customer customer, ExAAddress exaAddress, DistributedContext context)
           
 

Methods in com.retek.component.internet.impl with parameters of type CustomerAddress
static ExAAddress AddressConverter.getExAAddress(CustomerAddress customerAddress)
           
 

Uses of CustomerAddress in com.retek.component.internet.test
 

Methods in com.retek.component.internet.test with parameters of type CustomerAddress
protected  void ExATestCase.assertAddressesEquals(CustomerAddress custAddress, ExAAddress exaAddress)
           
 

Uses of CustomerAddress in com.retek.component.pend
 

Methods in com.retek.component.pend with parameters of type CustomerAddress
 boolean HighRiskZip.matches(CustomerAddress custAddress)
           
 

Uses of CustomerAddress in com.retek.component.pend.impl
 

Methods in com.retek.component.pend.impl with parameters of type CustomerAddress
 boolean HighRiskZipImpl.matches(CustomerAddress custAddress)
           
 

Uses of CustomerAddress in com.retek.component.salesaudit
 

Methods in com.retek.component.salesaudit with parameters of type CustomerAddress
protected  void SalesAuditExportTestCase.assertCustomerElementContents(CustomerOrder order, CustomerAddress address, java.lang.String customerType, SaeCustomer customerElement)
           
 

Uses of CustomerAddress in com.retek.component.salesaudit.impl.remote.command
 

Methods in com.retek.component.salesaudit.impl.remote.command with parameters of type CustomerAddress
protected  SaeCustomer BaseTransactionConverter.createCustomerElement(Customer customer, CustomerAddress address, java.lang.String customerType)
           
 

Uses of CustomerAddress in com.retek.rcom.gui.screen.orderentry
 

Methods in com.retek.rcom.gui.screen.orderentry that return CustomerAddress
 CustomerAddress OrderEntryLineHandler.getLastOrderLineAddress()
           
 

Uses of CustomerAddress in com.retek.rcom.gui.screen.ordermain
 

Methods in com.retek.rcom.gui.screen.ordermain that return CustomerAddress
 CustomerAddress OrderMainLineHandler.getLastOrderLineAddress()
           
 CustomerAddress PartialLineDialogHandler.getLastOrderLineAddress()
           
 

Uses of CustomerAddress in com.retek.rcom.gui.wrapper
 

Methods in com.retek.rcom.gui.wrapper that return CustomerAddress
 CustomerAddress RcomOrderLine.getShipToAddress()
          Retrieves the ship to address of the order line.
 

Methods in com.retek.rcom.gui.wrapper with parameters of type CustomerAddress
 void RcomOrderLine.setShipToAddress(CustomerAddress address)
          Assigns a ship to address to an order line or partial line.
static void RcomAddressManager.validateShipTo(CustomerAddress address, Customer customer)
           
 



Copyright © 2004 Retek Inc. All Rights Reserved. - Generated at Fri, 10/22/2004 07:28