Package de.iritgo.aktera.configuration.preferences

Examples of de.iritgo.aktera.configuration.preferences.Preferences


   
    if (field.isComment())
    {
      input.setAttribute("desc", "Y");

      Preferences preferences = UserTools.getUserPreferences(req);

      if (preferences == null || preferences.getPowerUser() == null
              || ! preferences.getPowerUser().booleanValue())
      {
        if (outGroup != null)
        {
          outGroup.add(input);
        }
View Full Code Here


        themeName = "iritgong";
      }

      if (! systemConfigManager.getBool("gui", "disableThemeChange"))
      {
        Preferences preferences = (Preferences) UserTools.getUserEnvObject(req, "sessionPreferences");

        if (preferences != null)
        {
          themeName = preferences.getTheme();

          try
          {
            if (! persistentManager.create("aktera.Preferences").getValidValues("theme").containsKey(
                    themeName))
View Full Code Here

TOP

Related Classes of de.iritgo.aktera.configuration.preferences.Preferences

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.