Package com.springsource.insight.plugin.grails.GrailsControllerStateKeeper

Examples of com.springsource.insight.plugin.grails.GrailsControllerStateKeeper.State


        super();
    }

    @Override
    public void processNormalExit(Operation op, Object returnValue) {
        State state = GrailsControllerStateKeeper.getAndDestroyThreadLocalState();
        op.label(buildLabel(state))
                .sourceCodeLocation(buildSourceCodeLocation(state))
        ;

        OperationList actionParams = op.createList("actionParams");
View Full Code Here


        }
    }

    @Override
    protected void processAbnormalExit(Operation op, Throwable throwable) {
        State state = GrailsControllerStateKeeper.getAndDestroyThreadLocalState();
        op.label(buildLabel(state))
                .sourceCodeLocation(buildSourceCodeLocation(state))
        ;
    }
View Full Code Here

TOP

Related Classes of com.springsource.insight.plugin.grails.GrailsControllerStateKeeper.State

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.