Examples of closeAllSessions()


Examples of org.jahia.services.content.JCRSessionFactory.closeAllSessions()

            try {
              this.postExecution(ctx);
            } finally {
              sessionFactory.setCurrentUser(null);
              sessionFactory.setCurrentLocale(null);
              sessionFactory.closeAllSessions();
            }
        }
    }

    public abstract void executeJahiaJob(JobExecutionContext jobExecutionContext)
View Full Code Here

Examples of org.jahia.services.content.JCRSessionFactory.closeAllSessions()

    JCRSessionWrapper englishLiveSession;

    private void getCleanSession() throws Exception {
        String defaultLanguage = site.getDefaultLanguage();
        JCRSessionFactory sessionFactory = JCRSessionFactory.getInstance();
        sessionFactory.closeAllSessions();
        englishEditSession = sessionFactory.getCurrentUserSession(Constants.EDIT_WORKSPACE, Locale.ENGLISH,
                LanguageCodeConverters.languageCodeToLocale(defaultLanguage));
        englishLiveSession = sessionFactory.getCurrentUserSession(Constants.LIVE_WORKSPACE, Locale.ENGLISH,
                LanguageCodeConverters.languageCodeToLocale(defaultLanguage));
    }
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.