1213141516171819
private Set<Object> singletons = new HashSet(); private Set<Class<?>> empty = new HashSet(); public BankApplication() { // ADD YOUR RESTFUL RESOURCES HERE this.singletons.add(new Hello()); this.singletons.add(new TotalBalance()); }