Uses of Interface
org.openxma.dsl.reference.model.Customer

Packages that use Customer
org.openxma.dsl.reference.dao   
org.openxma.dsl.reference.dao.impl   
org.openxma.dsl.reference.model   
org.openxma.dsl.reference.model.impl   
org.openxma.dsl.reference.service   
org.openxma.dsl.reference.service.impl   
org.openxma.dsl.reference.xma.web   
 

Uses of Customer in org.openxma.dsl.reference.dao
 

Methods in org.openxma.dsl.reference.dao that return Customer
 Customer CustomerDao.create()
          Factory method to create an empty CustomerDao entity with an already assigned identifier.
 Customer CustomerDao.create(Address invoiceAddress, Address deliveryAddress, java.lang.String customerFirstName, java.lang.String customerLastName, java.lang.String emailAddress, java.util.Date customerBirthDate)
          Factory method to create an empty CustomerDao taking all not null attributes.
 Customer CustomerDao.createAndSave(Address invoiceAddress, Address deliveryAddress, java.lang.String customerFirstName, java.lang.String customerLastName, java.lang.String emailAddress, java.util.Date customerBirthDate)
          Factory method to create and save an empty CustomerDao taking all not null attributes.
 Customer CustomerDao.findByFirstOrLastNameJoinOrder(java.lang.String firstName, java.lang.String lastName, StateAndDateQuery stateAndDateQuery)
          Execute a query based on the given attributes.
 Customer CustomerDao.loadByCustomerNk(java.lang.String customerFirstName, java.lang.String customerLastName, java.util.Date customerBirthDate)
          Return the persistent instance of the Customer entity class with the given natural identifier or null if not found.
 Customer CustomerDao.loadByCustomerUkEmail(java.lang.String emailAddress)
          Return the persistent instance of the Customer entity class with the given unique-key or null if not found.
 

Methods in org.openxma.dsl.reference.dao that return types with arguments of type Customer
 java.util.List<Customer> CustomerDao.findAllByEmailAdressOrBirthDate(java.lang.String emailAddress, java.util.Date birthDate)
          Execute a query based on the given attributes.
 java.util.List<Customer> CustomerDao.findAllByFirstNameAndLastName(java.lang.String firstName, java.lang.String lastName)
          Execute a query based on the given attributes.
 java.util.List<Customer> CustomerDao.findAllByLastNameJoinOrdersDate(java.lang.String lastName, java.util.Date ordersPlacementDate)
          Execute a query based on the given attributes.
 java.util.List<Customer> CustomerDao.findByNamedQueryCustomerLastName(java.lang.String lastName)
           
 

Methods in org.openxma.dsl.reference.dao with parameters of type Customer
 Order OrderDao.create(Customer customer, OrderNumber orderOrderNumber, java.lang.String storeId, java.util.Date placementDate, java.lang.String orderState, java.lang.Double totalAmount)
          Factory method to create an empty OrderDao taking all not null attributes.
 Order OrderDao.createAndSave(Customer customer, OrderNumber orderOrderNumber, java.lang.String storeId, java.util.Date placementDate, java.lang.String orderState, java.lang.Double totalAmount)
          Factory method to create and save an empty OrderDao taking all not null attributes.
 Order OrderDao.loadByOrderUkOrderNumber(Customer customer, OrderNumber orderOrderNumber)
          Return the persistent instance of the Order entity class with the given unique-key or null if not found.
 

Uses of Customer in org.openxma.dsl.reference.dao.impl
 

Methods in org.openxma.dsl.reference.dao.impl that return Customer
 Customer CustomerDaoImpl.create()
           
 Customer CustomerDaoImpl.create(Address invoiceAddress, Address deliveryAddress, java.lang.String customerFirstName, java.lang.String customerLastName, java.lang.String emailAddress, java.util.Date customerBirthDate)
           
 Customer CustomerDaoImpl.createAndSave(Address invoiceAddress, Address deliveryAddress, java.lang.String customerFirstName, java.lang.String customerLastName, java.lang.String emailAddress, java.util.Date customerBirthDate)
           
 Customer CustomerDaoImpl.createEntity(java.lang.Object context)
           
 Customer CustomerDaoImpl.findByFirstOrLastNameJoinOrder(java.lang.String firstName, java.lang.String lastName, StateAndDateQuery stateAndDateQuery)
           
 Customer CustomerDaoImpl.loadByCustomerNk(java.lang.String customerFirstName, java.lang.String customerLastName, java.util.Date customerBirthDate)
           
 Customer CustomerDaoImpl.loadByCustomerUkEmail(java.lang.String emailAddress)
           
 

Methods in org.openxma.dsl.reference.dao.impl that return types with arguments of type Customer
 java.util.List<Customer> CustomerDaoImpl.findAllByEmailAdressOrBirthDate(java.lang.String emailAddress, java.util.Date birthDate)
           
 java.util.List<Customer> CustomerDaoImpl.findAllByFirstNameAndLastName(java.lang.String firstName, java.lang.String lastName)
           
 java.util.List<Customer> CustomerDaoImpl.findAllByLastNameJoinOrdersDate(java.lang.String lastName, java.util.Date ordersPlacementDate)
           
 java.util.List<Customer> CustomerDaoImpl.findByNamedQueryCustomerLastName(java.lang.String lastName)
           
 

Methods in org.openxma.dsl.reference.dao.impl with parameters of type Customer
 Order AbstractOrderDaoImpl.create(Customer customer, OrderNumber orderOrderNumber, java.lang.String storeId, java.util.Date placementDate, java.lang.String orderState, java.lang.Double totalAmount)
           
 Order AbstractOrderDaoImpl.createAndSave(Customer customer, OrderNumber orderOrderNumber, java.lang.String storeId, java.util.Date placementDate, java.lang.String orderState, java.lang.Double totalAmount)
           
 Order AbstractOrderDaoImpl.loadByOrderUkOrderNumber(Customer customer, OrderNumber orderOrderNumber)
           
 

Uses of Customer in org.openxma.dsl.reference.model
 

Subinterfaces of Customer in org.openxma.dsl.reference.model
 interface PrivateCustomer
           
 

Methods in org.openxma.dsl.reference.model that return Customer
 Customer Order.getCustomer()
           
 

Methods in org.openxma.dsl.reference.model with parameters of type Customer
 void Order.setCustomer(Customer customer)
           
 

Uses of Customer in org.openxma.dsl.reference.model.impl
 

Classes in org.openxma.dsl.reference.model.impl that implement Customer
 class AbstractCustomerImpl
           
 class CustomerImpl
           
 class PrivateCustomerImpl
           
 

Methods in org.openxma.dsl.reference.model.impl that return Customer
 Customer OrderImpl.getCustomer()
           
 

Methods in org.openxma.dsl.reference.model.impl with parameters of type Customer
 void OrderImpl.setCustomer(Customer customer)
           
 

Uses of Customer in org.openxma.dsl.reference.service
 

Methods in org.openxma.dsl.reference.service that return types with arguments of type Customer
 java.util.List<Customer> CustomerService.findByNamedQueryCustomerLastName(java.lang.String lastName)
           
 

Uses of Customer in org.openxma.dsl.reference.service.impl
 

Methods in org.openxma.dsl.reference.service.impl that return types with arguments of type Customer
 java.util.List<Customer> CustomerServiceImpl.findByNamedQueryCustomerLastName(java.lang.String lastName)
           
 

Uses of Customer in org.openxma.dsl.reference.xma.web
 

Methods in org.openxma.dsl.reference.xma.web that return Customer
protected  Customer TestDataLoader.newCustomer(Address invoiceAddress, CustomerDao customerDao, java.lang.String lastName)
           
 



Copyright © 2010. All Rights Reserved.