Package org.eurekastreams.server.domain

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

Related Classes of org.eurekastreams.server.domain.PersonBlockedSuggestion

Copyright © 2018 www.massapicom. 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.