public CFSecurityCursor openSecFormCursorAll(CFSecurityAuthorization Authorization) {
   String sql =
       getSqlSelectSecFormBuff()
           + ((schema.isSystemUser(Authorization))
               ? ""
               : (" WHERE sfrm.ClusterId = " + Authorization.getSecClusterId()))
           + "ORDER BY "
           + "sfrm.ClusterId ASC"
           + ", "
           + "sfrm.SecFormId ASC";
   CFFreeSwitchCursor cursor = new CFFreeSwitchMySqlCursor(Authorization, schema, sql);
   return (cursor);
 }