Changes made to support Bulk Load.

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3255 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
hardya
2008-01-15 18:45:58 +00:00
parent 7365f2a567
commit 13c9c0ca97
54 changed files with 18856 additions and 16715 deletions

View File

@@ -32,7 +32,7 @@ Perform user authentication and login An authenticated login for an expired pass
<TR><TD VALIGN="TOP" CLASS="TYPE_ITEM">
<A HREF="#get_hash">get_hash</A>&nbsp;&nbsp;
</TD><TD CLASS="DESC_TEXT" WIDTH=95%>
Generate a hash from the given username and password
</TD></TR>
<TR><TD VALIGN="TOP" CLASS="TYPE_ITEM">
<A HREF="#valid_user2">valid_user2</A>&nbsp;&nbsp;
@@ -63,6 +63,21 @@ Authenticates the given username and password
<A HREF="#new_password">new_password</A>&nbsp;&nbsp;
</TD><TD CLASS="DESC_TEXT" WIDTH=95%>
</TD></TR>
<TR><TD VALIGN="TOP" CLASS="TYPE_ITEM">
<A HREF="#other_user_password">other_user_password</A>&nbsp;&nbsp;
</TD><TD CLASS="DESC_TEXT" WIDTH=95%>
</TD></TR>
<TR><TD VALIGN="TOP" CLASS="TYPE_ITEM">
<A HREF="#get_user_status">get_user_status</A>&nbsp;&nbsp;
</TD><TD CLASS="DESC_TEXT" WIDTH=95%>
</TD></TR>
<TR><TD VALIGN="TOP" CLASS="TYPE_ITEM">
<A HREF="#set_user_status">set_user_status</A>&nbsp;&nbsp;
</TD><TD CLASS="DESC_TEXT" WIDTH=95%>
Updates the user status
</TD></TR>
<TR><TD VALIGN="TOP" CLASS="TYPE_ITEM">
<A HREF="#page_authorization">page_authorization</A>&nbsp;&nbsp;
@@ -143,6 +158,13 @@ FUNCTION get_hash(p_username IN VARCHAR2
,p_password IN VARCHAR2) RETURN VARCHAR2
</PRE>
<P CLASS="DESC_TEXT">
Generate a hash from the given username and password<br>
&nbsp;<br>
The system does not record users passwords 'in the plain', instead we recordThe resultant hash is recorded as the username 'password hash'<br>
<BR>
</P>
<HR>
<A NAME="valid_user2"></A>
<P CLASS="TYPE_TITLE">
@@ -257,6 +279,41 @@ PROCEDURE new_password(p_username IN VARCHAR2
</PRE>
<HR>
<A NAME="other_user_password"></A>
<P CLASS="TYPE_TITLE">
other_user_password
</P>
<PRE CLASS="DECL_TEXT">
PROCEDURE other_user_password(p_prty_id IN NUMBER
,p_username IN VARCHAR2
,p_password IN VARCHAR2)
</PRE>
<HR>
<A NAME="get_user_status"></A>
<P CLASS="TYPE_TITLE">
get_user_status
</P>
<PRE CLASS="DECL_TEXT">
FUNCTION get_user_status(p_username IN VARCHAR2) RETURN VARCHAR2
</PRE>
<HR>
<A NAME="set_user_status"></A>
<P CLASS="TYPE_TITLE">
set_user_status
</P>
<PRE CLASS="DECL_TEXT">
PROCEDURE set_user_status(p_username IN VARCHAR2
,p_status IN VARCHAR2)
</PRE>
<P CLASS="DESC_TEXT">
Updates the user status<br>
<BR>
</P>
<HR>
<A NAME="page_authorization"></A>
<P CLASS="TYPE_TITLE">
page_authorization