Package edu.bellevue.its.migration.gui.frames.security

Examples of edu.bellevue.its.migration.gui.frames.security.SecurityOverviewFrame


    private void mnuSecurityViewRequestsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuSecurityViewRequestsActionPerformed
        // TODO add your handling code here:
        if (AppHelper.userHasRole("Security") || AppHelper.userHasRole("Admin"))
        {
            SecurityOverviewFrame sof = new SecurityOverviewFrame();
            MainApp.getDesktop().add(sof);
            sof.setVisible(true);
        }
    }//GEN-LAST:event_mnuSecurityViewRequestsActionPerformed
View Full Code Here

TOP

Related Classes of edu.bellevue.its.migration.gui.frames.security.SecurityOverviewFrame

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.