ucUAGenerateHTML

Purpose

This display is used on the user account administration screen.

Applies To

User Account Display

Signature

public boolean ucUAGenerateHTML( 
               String mode, 
               StringBuffer html, 
               FormParameters fp,
               SecurityUser su,
               HttpServletRequest request,
               HttpServletResponse response,
               Connection dbconn,
               SesameSession session,
               int tabIndex) throws Exception 

Notes

Example

public boolean ucUAGenerateHTML (String mode,
                                     StringBuffer html,
                                     FormParameters fp,
                                     SecurityUser su,
                                     HttpServletRequest request,
                                     HttpServletResponse response,
                                     Connection dbconn,
                                     SesameSession session,
                                     int tabIndex)
    throws Exception {
        Z.log.writeToLog(Z.log.DEBUG, "tabIndex is + " + tabIndex);

        if (tabIndex == 0)
        {
  
     // getQuickAssignHtml generates the HTML code for displaying the QuickAssign tab:
     // instructions at the top and a list of 10 user fields to select users for.
     
            String tabHtml = getQuickAssignHtml(mode, fp, dbconn, session, su);
            Z.log.writeToLog(Z.log.DEBUG, "tabHtml: " + tabHtml);
            html.append(tabHtml);
        }
        return true;
    }