Examples of dropCache()


Examples of de.innovationgate.webgate.api.WGContent.dropCache()

            throw new HttpErrorException(java.net.HttpURLConnection.HTTP_FORBIDDEN, "Browsing not allowed in database '" + path.getDatabaseKey() + "'", path.getDatabaseKey());
        }

        // Drop cache if requested by url param
        if (request.getQueryString() != null && request.getQueryString().toLowerCase().indexOf("dropcache") != -1 && isAdminLoggedIn(request)) {
            content.dropCache();
        }

        // Personalize
        TMLUserProfile tmlUserProfile = null;
        try {
View Full Code Here

Examples of de.innovationgate.webgate.api.WGUserProfile.dropCache()

            // Drop cache so we can be sure to be up-to-date with the backend
            // database
            // (Since backend changes - maybe from other cluster nodes - are not
            // registered for user profiles)
            userProfile.dropCache();

            session.setAttribute(SESSION_PROFILENAME_INDIVIDUALDB + database.getDbReference(), userProfile.getName());
            TMLUserProfile tmlProfile = new TMLUserProfile(userProfile, getCore());
            request.setAttribute(WGACore.ATTRIB_PROFILE + database.getDbReference(), tmlProfile);
            this.registerSession(userProfile, request, session, created);
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.