Package org.jboss.seam.wiki.core.action.prefs

Examples of org.jboss.seam.wiki.core.action.prefs.DocumentEditorPreferences


            protected void beforeRequest() {
                setParameter("documentId", "6");
            }

            protected void renderResponse() throws Exception {
                DocumentEditorPreferences docEditorPrefs = Preferences.instance().get(DocumentEditorPreferences.class);
                assert !docEditorPrefs.getMinorRevisionEnabled();
            }

        }.run();


        // Logout and check system setting, should still be true
        logout();

        new NonFacesRequest("/docDisplay_d.xhtml") {

            protected void beforeRequest() {
                setParameter("documentId", "6");
            }

            protected void renderResponse() throws Exception {
                DocumentEditorPreferences docEditorPrefs = Preferences.instance().get(DocumentEditorPreferences.class);
                assert docEditorPrefs.getMinorRevisionEnabled();
            }

        }.run();

    }
View Full Code Here

TOP

Related Classes of org.jboss.seam.wiki.core.action.prefs.DocumentEditorPreferences

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.