Package org.apache.isis.applib.services.background

Examples of org.apache.isis.applib.services.background.ActionInvocationMemento


    /**
     * Not API
     */
    ActionInvocationMemento newActionInvocationMemento(String mementoStr) {
        return new ActionInvocationMemento(mementoService, mementoStr);
    }
View Full Code Here


                    command.setStartedAt(Clock.getTimeAsJavaSqlTimestamp());
                    command.setExecutor(Executor.BACKGROUND);

                    final String memento = command.getMemento();
                    final ActionInvocationMemento aim = new ActionInvocationMemento(mementoService, memento);

                    final String actionId = aim.getActionId();

                    final Bookmark targetBookmark = aim.getTarget();
                    final Object targetObject = bookmarkService.lookup(targetBookmark);

                    final ObjectAdapter targetAdapter = adapterFor(targetObject);
                    final ObjectSpecification specification = targetAdapter.getSpecification();
View Full Code Here

TOP

Related Classes of org.apache.isis.applib.services.background.ActionInvocationMemento

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.