Package org.apache.isis.viewer.html.crumb

Examples of org.apache.isis.viewer.html.crumb.Crumb.changeContext()


    public Request changeContext(final int id) {
        while (crumbs.size() - 1 > id) {
            crumbs.pop();
        }
        final Crumb c = crumbs.lastElement();
        return c.changeContext();
    }


   
    // ////////////////////////////////////////////////////
View Full Code Here


            endTask(task);
        }

        // REVIEW does this take us back to the right object?
        final Crumb crumb = crumbs.get(crumbs.size() - 1);
        return crumb.changeContext();
    }

    private boolean isTask() {
        final int index = crumbs.size() - 1;
        return index >= 0 && crumbs.get(index) instanceof TaskCrumb;
View Full Code Here

            endTask(task);
        }

        // REVIEW does this take us back to the right object?
        final Crumb crumb = crumbs.get(crumbs.size() - 1);
        return crumb.changeContext();
    }

    public void invalidate() {
        isValid = false;
    }
View Full Code Here

    public Request changeContext(final int id) {
        while (crumbs.size() - 1 > id) {
            crumbs.pop();
        }
        final Crumb c = crumbs.lastElement();
        return c.changeContext();
    }

    public void setSession(final AuthenticationSession currentSession) {
        this.session = currentSession;
    }
View Full Code Here

            endTask(task);
        }

        // REVIEW does this take us back to the right object?
        final Crumb crumb = crumbs.get(crumbs.size() - 1);
        return crumb.changeContext();
    }

    public void invalidate() {
        isValid = false;
    }
View Full Code Here

    public Request changeContext(final int id) {
        while (crumbs.size() - 1 > id) {
            crumbs.pop();
        }
        final Crumb c = crumbs.lastElement();
        return c.changeContext();
    }

    public void setSession(final AuthenticationSession currentSession) {
        this.session = currentSession;
    }
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.