Interface CommerceCustomerSupportService
-
- All Known Implementing Classes:
DefaultCommerceCustomerSupportService,DefaultCommerceCustomerSupportService
public interface CommerceCustomerSupportServiceThe interface defines methods to access information about Customer Support (Assisted Service) mode.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserModelgetAgent()Returns Agent if Customer Support mode is on.UserModelgetEmulatedCustomer()Returns Emulated Customer if Customer Support mode is on and any Customer is emulated.booleanisCustomerSupportAgentActive()Returns true if Customer Support mode is on (Customer Support Agent is active).
-
-
-
Method Detail
-
isCustomerSupportAgentActive
boolean isCustomerSupportAgentActive()
Returns true if Customer Support mode is on (Customer Support Agent is active).- Returns:
- boolean
-
getEmulatedCustomer
UserModel getEmulatedCustomer()
Returns Emulated Customer if Customer Support mode is on and any Customer is emulated.- Returns:
- UserModel
-
getAgent
UserModel getAgent()
Returns Agent if Customer Support mode is on.- Returns:
- UserModel
-
-