Package org.eurekastreams.server.service.actions.strategies

Examples of org.eurekastreams.server.service.actions.strategies.ReflectiveUpdater


    {
        CreatePersonRequest createRequest = (CreatePersonRequest) inActionContext.getActionContext().getParams();
        Person inPerson = createRequest.getPerson();

        PersistResourceExecution<Person> persistResourceExecution = createPersonActionFactory.getCreatePersonAction(
                personMapper, new ReflectiveUpdater());

        log.debug("Adding to database: " + inPerson.getAccountId());

        Person person = (Person) new InlineExecutionStrategyExecutor().execute(persistResourceExecution,
                inPerson.getProperties(), inActionContext);
View Full Code Here

TOP

Related Classes of org.eurekastreams.server.service.actions.strategies.ReflectiveUpdater

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.