Examples of PersonBlockedSuggestion


Examples of org.eurekastreams.server.domain.PersonBlockedSuggestion

     */
    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;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.