*/
public Serializable execute(final PrincipalActionContext inActionContext) throws ExecutionException
{
Long ssIdToInsert = (Long) inActionContext.getParams();
PersonBlockedSuggestion blockedSuggestion = new PersonBlockedSuggestion(ssIdToInsert, inActionContext
.getPrincipal().getId());
insertMapper.execute(new PersistenceRequest<PersonBlockedSuggestion>(blockedSuggestion));
return null;
}