public CFSecurityCursor openHostNodeCursorAll(CFSecurityAuthorization Authorization) {
   String sql =
       getSqlSelectHostNodeBuff()
           + ((schema.isSystemUser(Authorization))
               ? ""
               : (" WHERE hsnd.ClusterId = " + Authorization.getSecClusterId()))
           + "ORDER BY "
           + "hsnd.ClusterId ASC"
           + ", "
           + "hsnd.HostNodeId ASC";
   CFSecurityCursor cursor = new CFSecurityPgSqlCursor(Authorization, schema, sql);
   return (cursor);
 }