iKnowBase


Package IKB_AUTH_API


Method Summary
 VARCHAR2 CREATE_ACTIVATION_TOKEN(P_USER_REFERENCE IN OT_USERREFERENCE, P_CREATED_BY_REFERENCE IN OT_USERREFERENCE, P_VALID_TO IN DATE, P_USER_TAG IN VARCHAR2, P_DESCRIPTION IN VARCHAR2)
           Create a token with user account activation privileges valid until token expires or used successfully.
 VARCHAR2 CREATE_LOGIN_TOKEN(P_USER_REFERENCE IN OT_USERREFERENCE, P_CREATED_BY_REFERENCE IN OT_USERREFERENCE, P_VALID_TO IN DATE, P_USER_TAG IN VARCHAR2, P_DESCRIPTION IN VARCHAR2)
           Create a token with login privileges valid until token expires.

Method Detail

CREATE_ACTIVATION_TOKEN

public VARCHAR2 CREATE_ACTIVATION_TOKEN(P_USER_REFERENCE IN OT_USERREFERENCE, 
P_CREATED_BY_REFERENCE IN OT_USERREFERENCE,
P_VALID_TO IN DATE,
P_USER_TAG IN VARCHAR2,
P_DESCRIPTION IN VARCHAR2)
Create a token with user account activation privileges valid until token expires or used successfully.
Parameters:
P_USER_REFERENCE - User account the token will be mapped to.
P_CREATED_BY_REFERENCE - User account that creates the token.
P_VALID_TO - Date (and time) the token will expire.
P_USER_TAG - Optional tag that can be associated with the token.
P_DESCRIPTION - Optional description that can be associated with the token.
Returns:
The generated token identifier


CREATE_LOGIN_TOKEN

public VARCHAR2 CREATE_LOGIN_TOKEN(P_USER_REFERENCE IN OT_USERREFERENCE, 
P_CREATED_BY_REFERENCE IN OT_USERREFERENCE,
P_VALID_TO IN DATE,
P_USER_TAG IN VARCHAR2,
P_DESCRIPTION IN VARCHAR2)
Create a token with login privileges valid until token expires.
Parameters:
P_USER_REFERENCE - User account the token will be mapped to.
P_CREATED_BY_REFERENCE - User account that creates the token.
P_VALID_TO - Date (and time) the token will expire.
P_USER_TAG - Optional tag that can be associated with the token.
P_DESCRIPTION - Optional description that can be associated with the token.
Returns:
The generated token identifier


iKnowBase