public AccountServiceProxyImpl(AccountCreationService accountCreationService, AccountAuthenticationService accountAuthenticationService, AccountLookupService accountLookupService) {
    this.accountCreationService = accountCreationService;
    this.accountAuthenticationService = accountAuthenticationService;
    this.accountLookupService = accountLookupService;
 }
 public AccountAuthenticationServiceImpl(Cache<Guid, Account> accountCache, Cache<string, Guid> accessTokenCache, AccountProcessorFactory accountProcessorFactory, AccountLookupService accountLookupService) {
    this.accountCache = accountCache;
    this.accessTokenCache = accessTokenCache;
    this.accountProcessorFactory = accountProcessorFactory;
    this.accountLookupService = accountLookupService;
 }