如何以键作为对象和值作为Arraylist返回Hashmap?

// what to replace XXX with as a return type?"
public XXX getStoreResult() {
    HashMap<Object, List<Dashboard>> map = new HashMap<>();
    // how to return the map?
}

I have HashMap defined with key as object and value as Arraylist of type Dashboard.How to return the map? Also I want to fetch it in servlet and forward it to JSP page? How to do so?