public ShoppingApplication()
{
singletons.add(new CustomerResource());
HashMap<String, String> userSecretMap = new HashMap<String, String>();
userSecretMap.put("bburke", "geheim");
singletons.add(new OneTimePasswordAuthenticator(userSecretMap));
singletons.add(new PerDayAuthorizer());
}