Uses of Interface
com.elasticpath.domain.customer.CustomerGroup

Packages that use CustomerGroup
com.elasticpath.domain.customer   
com.elasticpath.domain.customer.impl   
com.elasticpath.service.customer   
com.elasticpath.service.customer.impl   
 

Uses of CustomerGroup in com.elasticpath.domain.customer
 

Methods in com.elasticpath.domain.customer with parameters of type CustomerGroup
 void Customer.addCustomerGroup(CustomerGroup customerGroup)
          Adds a CustomerGroup to the list of customertGroups.
 void Customer.removeCustomerGroup(CustomerGroup customerGroup)
          Removes an CustomerGroup from the list of customerGroups.
 

Uses of CustomerGroup in com.elasticpath.domain.customer.impl
 

Classes in com.elasticpath.domain.customer.impl that implement CustomerGroup
 class CustomerGroupImpl
          The default implementation of CustomerGroup.
 

Methods in com.elasticpath.domain.customer.impl with parameters of type CustomerGroup
 void CustomerImpl.addCustomerGroup(CustomerGroup customerGroup)
          Adds a CustomerGroup to the list of customerGroups.
 void CustomerImpl.removeCustomerGroup(CustomerGroup customerGroup)
          Removes a CustomerGroup from the list of customerGroups.
 

Uses of CustomerGroup in com.elasticpath.service.customer
 

Methods in com.elasticpath.service.customer that return CustomerGroup
 CustomerGroup CustomerGroupService.add(CustomerGroup customerGroup)
          Adds the given customerGroup.
 CustomerGroup CustomerGroupService.findByGroupName(java.lang.String groupName)
          Find the customer group with the given group name.
 CustomerGroup CustomerGroupService.get(long customerGroupUid)
          Get the customerGroup with the given UID.
 CustomerGroup CustomerGroupService.getDefaultGroup()
          Return the default customerGroup, namely, the group with name "PUBLIC".
 CustomerGroup CustomerGroupService.load(long customerGroupUid)
          Load the customerGroup with the given UID.
 

Methods in com.elasticpath.service.customer with parameters of type CustomerGroup
 CustomerGroup CustomerGroupService.add(CustomerGroup customerGroup)
          Adds the given customerGroup.
 boolean CustomerGroupService.groupExists(CustomerGroup customerGroup)
          Check if a different customer group with the given customer group's name exists exists or not.
 void CustomerGroupService.remove(CustomerGroup customerGroup)
          Delete the customerGroup.
 void CustomerGroupService.update(CustomerGroup customerGroup)
          Updates the given customerGroup.
 

Uses of CustomerGroup in com.elasticpath.service.customer.impl
 

Methods in com.elasticpath.service.customer.impl that return CustomerGroup
 CustomerGroup CustomerGroupServiceImpl.add(CustomerGroup customerGroup)
          Adds the given customerGroup.
 CustomerGroup CustomerGroupServiceImpl.findByGroupName(java.lang.String groupName)
          Find the customer group with the given group name.
 CustomerGroup CustomerGroupServiceImpl.get(long customerGroupUid)
          Get the customerGroup with the given UID.
 CustomerGroup CustomerGroupServiceImpl.getDefaultGroup()
          Return the deafalt customerGroup, namely, the group with name "PUBLIC".
 CustomerGroup CustomerGroupServiceImpl.load(long customerGroupUid)
          Load the customerGroup with the given UID.
 

Methods in com.elasticpath.service.customer.impl with parameters of type CustomerGroup
 CustomerGroup CustomerGroupServiceImpl.add(CustomerGroup customerGroup)
          Adds the given customerGroup.
 boolean CustomerGroupServiceImpl.groupExists(CustomerGroup customerGroup)
          Check if a different customer group with the given customer group's name exists exists or not.
 void CustomerGroupServiceImpl.remove(CustomerGroup customerGroup)
          Delete the customerGroup.
 void CustomerGroupServiceImpl.update(CustomerGroup customerGroup)
          Updates the given customerGroup.