* Action handler called when the enable or disable action is clicked.
*
* @param event
*/
public void setActive(final ActionEvent event) {
UIActionLink link = (UIActionLink) event.getComponent();
Map<String, String> params = link.getParameterMap();
String id = params.get(PARAM_ID);
String active = params.get(PARAM_ACTIVE);
final Boolean activeFlag = Boolean.parseBoolean(active);
final FacesContext fc = FacesContext.getCurrentInstance();