Show / Hide Table of Contents

Class AppExtensionFormFillAppApp

This extension provides attributes for Form-Fill facet of App

Inheritance
object
AppExtensionFormFillAppApp
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class AppExtensionFormFillAppApp

Properties

Configuration

Declaration
[JsonProperty(PropertyName = "configuration")]
public string Configuration { get; set; }
Property Value
Type Description
string

FormFill Application Configuration CLOB which has to be maintained in Form-Fill APP for legacy code to do Form-Fill injection
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

FormCredMethod

Declaration
[JsonProperty(PropertyName = "formCredMethod")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AppExtensionFormFillAppApp.FormCredMethodEnum? FormCredMethod { get; set; }
Property Value
Type Description
AppExtensionFormFillAppApp.FormCredMethodEnum?

Indicates how FormFill obtains the username and password of the account that FormFill will use to sign into the target App.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

FormCredentialSharingGroupID

Declaration
[JsonProperty(PropertyName = "formCredentialSharingGroupID")]
public string FormCredentialSharingGroupID { get; set; }
Property Value
Type Description
string

Credential Sharing Group to which this form-fill application belongs.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

FormFillUrlMatch

Declaration
[JsonProperty(PropertyName = "formFillUrlMatch")]
public List<AppFormFillUrlMatch> FormFillUrlMatch { get; set; }
Property Value
Type Description
List<AppFormFillUrlMatch>

A list of application-formURLs that FormFill should match against any formUrl that the user-specifies when signing in to the target service. Each item in the list also indicates how FormFill should interpret that formUrl.
SCIM++ Properties:

  • idcsCompositeKey: [formUrl]
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none

FormType

Declaration
[JsonProperty(PropertyName = "formType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AppExtensionFormFillAppApp.FormTypeEnum? FormType { get; set; }
Property Value
Type Description
AppExtensionFormFillAppApp.FormTypeEnum?

Type of the FormFill application like WebApplication, MainFrameApplication, WindowsApplication. Initially, we will support only WebApplication.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

RevealPasswordOnForm

Declaration
[JsonProperty(PropertyName = "revealPasswordOnForm")]
public bool? RevealPasswordOnForm { get; set; }
Property Value
Type Description
bool?

If true, indicates that system is allowed to show the password in plain-text for this account after re-authentication.
SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

SyncFromTemplate

Declaration
[JsonProperty(PropertyName = "syncFromTemplate")]
public bool? SyncFromTemplate { get; set; }
Property Value
Type Description
bool?

If true, indicates that each of the Form-Fill-related attributes that can be inherited from the template actually will be inherited from the template. If false, indicates that the AppTemplate on which this App is based has disabled inheritance for these Form-Fill-related attributes.
Added In: 17.4.2
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

UserNameFormExpression

Declaration
[JsonProperty(PropertyName = "userNameFormExpression")]
public string UserNameFormExpression { get; set; }
Property Value
Type Description
string

Indicates the custom expression, which can combine concat and substring operations with literals and with any attribute of the Oracle Identity Cloud Service User
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

UserNameFormTemplate

Declaration
[JsonProperty(PropertyName = "userNameFormTemplate")]
public string UserNameFormTemplate { get; set; }
Property Value
Type Description
string

Format for generating a username. This value can be Username or Email Address; any other value will be treated as a custom expression. A custom expression may combine 'concat' and 'substring' operations with literals and with any attribute of the Oracle Identity Cloud Service user.
SCIM++ Properties:

  • caseExact: false
  • idcsPii: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top