jcs_odf.create_credential

on-site-related topic PL/SQL API jcs_odf.create_credential

Summary

Create a credential.

Specification

Copy
procedure create_credential(partition in varchar2,
protocol in varchar2,
system in varchar2,
username in varchar2,
description in varchar2 default const.def_str,
application_partition in varchar2 default const.def_str,
application_name in varchar2 default const.def_str,
comment_text in varchar2 default const.def_str,
password in varchar2 default const.def_str,
password_plain in varchar2 default const.def_str,
logical_user in varchar2 default const.def_str)

Parameters

  • partition - the Partition of the credential
  • protocol - the protocol of the credential This defines for which 'service' the credential is meant
  • system - the host or domain for the credential
  • username - the user for which this credential is meant
  • description - a description for the credential
  • application_partition - the Partition of the application the credential belongs to
  • application_name - the name of the application the credential belongs to
  • comment_text - a comment with the credential
  • password - the (encoded) password for this credential
  • password_plain - the (plain) password for this credential
  • logical_user - the logical user for this credential

When password and password_plain are both filled in, the encoded version is simply ignored

See Also