Package cli_fmw.login

Examples of cli_fmw.login.UserInfoAbstract


        }

        disturbServerTimer = new Timer(ClipsServerConstants.DISTURB_SERVER_PERIOD_MS, disturbListener);
        disturbServerTimer.start();
        try {
            UserInfoAbstract user = UserInfoAbstract.get();
            initPanelMenuAndToolbar(user.getPanels());
            constantTitle = makeTitle();
            this.setTitle(constantTitle);
        } catch (Exception ex) {
            MessageBox.showException(ex);
        }
View Full Code Here


    StateSaver.attachTo(this);
    }

    protected String makeTitle() throws Exception {
            UserInfoAbstract user = UserInfoAbstract.get();
            String u = user.getUserName();
            String s = u
                    + (user.isSuperUser() ? " [СУПЕР-ПОЛЬЗОВАТЕЛЬ] " : " ");
            return s;
    }
View Full Code Here

    }
    return null;
  }

   protected void fastAddLoadedItem(ITEMCLASS item) throws ClipsException{
        UserInfoAbstract userinfo = UserInfoAbstract.get();
        if(item.isVisible() || (userinfo != null && userinfo.canUseHiddenDirectoryItems())) {
            sortedItems.add(item);
            if (titleMap == null) {
                titleMap = new HashMap<String, ITEMCLASS>();
            }
            titleMap.put(item.getTitle(), item);
View Full Code Here

TOP

Related Classes of cli_fmw.login.UserInfoAbstract

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.