Package net.caece.pri.hibernate

Examples of net.caece.pri.hibernate.FunAuth


            }

            SimpleTreeNode node = (SimpleTreeNode) treeItem.getValue();
            FunForm funForm = (FunForm) node.getData();

            FunAuth funAuth = new FunAuth();
            funAuth.setFun(funForm);
            funAuth.setAuth(authForm);
            if ("Y".equals(funForm.getBootFlag())) {
                funAuth.setOperations(sb.toString());
            }
            funAuth.setOperateBy(operateBy);
            faDao.create(funAuth);
        }

        refresheFunAuth(authForm);
    }
View Full Code Here


            Treeitem treeItem = (Treeitem) selectedFunAuthItr.next();
            SimpleTreeNode node = (SimpleTreeNode) treeItem.getValue();

            FunAuthForm faForm = (FunAuthForm) node.getData();

            FunAuth fa = new FunAuth();

            fa.setFunAuthId(faForm.getFunAuthId());
            fa.setOperateAt(faForm.getOperateAt());
            fa.setOperateBy(operateBy);

            faDao.update(fa);
            faDao.delete(fa);
        }
View Full Code Here

TOP

Related Classes of net.caece.pri.hibernate.FunAuth

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.