This enables a fully typed map with its key type defined.
Map<String, Customer> map = Ebean.find(Customer.class) .select("id, name") .findMap("name", String.class);
Fixed in HEAD.