Package net.caece.pri.hibernate.vo

Examples of net.caece.pri.hibernate.vo.AuthForm


    public void doFunAuth() {
        switchToFunAuth = true;

        objListbox = (Listbox) getFellow("objListbox");
        if (objListbox.getSelectedItem() != null) {
            AuthForm authForm = (AuthForm) objListbox.getSelectedItem().getValue();
            this.refresheFunAuth(authForm);
        }
    }
View Full Code Here


    public void doDataAuth() {
        switchToFunAuth = false;

        objListbox = (Listbox) getFellow("objListbox");
        if (objListbox.getSelectedItem() != null) {
            AuthForm authForm = (AuthForm) objListbox.getSelectedItem().getValue();
            this.refreshDataAuth(authForm);
        }
    }
View Full Code Here

    public void query() {
    }

    public void dataAuth() {
        objListbox = (Listbox) getFellow("objListbox");
        AuthForm authForm = (AuthForm) objListbox.getSelectedItem().getValue();

        Tree orgObjTree = (Tree) getFellow("orgObjTree");
        Set selectedOrgs = orgObjTree.getSelectedItems();

        DataAuthDao daDao = new DataAuthDao();
View Full Code Here

            daDao.update(da);
            daDao.delete(da);
        }

        objListbox = (Listbox) getFellow("objListbox");
        AuthForm authForm = (AuthForm) objListbox.getSelectedItem().getValue();

        refreshDataAuth(authForm);
    }
View Full Code Here

        refreshDataAuth(authForm);
    }

    public void funAuth() {
        objListbox = (Listbox) getFellow("objListbox");
        AuthForm authForm = (AuthForm) objListbox.getSelectedItem().getValue();

        Tree funObjTree = (Tree) getFellow("funObjTree");
        Set selectedFuns = funObjTree.getSelectedItems();

        FunAuthDao faDao = new FunAuthDao();
View Full Code Here

            faDao.update(fa);
            faDao.delete(fa);
        }

        objListbox = (Listbox) getFellow("objListbox");
        AuthForm authForm = (AuthForm) objListbox.getSelectedItem().getValue();

        refresheFunAuth(authForm);
    }
View Full Code Here

    public void select() {
        super.select();

        objListbox = (Listbox) getFellow("objListbox");
        AuthForm authForm = (AuthForm) objListbox.getSelectedItem().getValue();

        if (switchToFunAuth) {
            refresheFunAuth(authForm);
        } else {
            refreshDataAuth(authForm);
View Full Code Here

        Listbox authListbox = (Listbox) getFellow("auth");
        Iterator authItr = authListbox.getItems().iterator();
        while (authItr.hasNext()) {
            Listitem item = (Listitem) authItr.next();
            AuthForm authForm = (AuthForm) item.getValue();
            if (authForm.getAuthId().toString().equals(obj.getAuthId().toString())) {
                authListbox.setSelectedItem(item);
            }
        }

        Datebox validAfterDate = (Datebox) getFellow("validAfterDate");
View Full Code Here

TOP

Related Classes of net.caece.pri.hibernate.vo.AuthForm

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.