I\'m trying to make use of the Star Rating component from PrimeFaces. However, it does not allow you to pass in parameters. That makes it impossible for me to do a lookup
I finally figured out how to do this...
Then, in my action class, I'm able to get the value for selectedObj by doing this...
String selectedObjID = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("selectedObj");
Piece of cake!