Authentication authentication = new TokenAuthentication(token);
return new Authenticate(authentication);
}
public Authenticate withAccessKey(String accessKey, String secretKey) {
Authentication authentication = new AccessKey(accessKey, secretKey);
return new Authenticate(authentication);
}