You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Anthony Turner edited this page Apr 27, 2020
·
1 revision
About Provider Configurations
When using either an Application Lifecycle Provider or a Rekeyable Object Provider, an Administrator can configure the Provider using a class containing the various options available to the Provider and descriptions as to their purposes.
The Provider Configuration is a powerful way to present configuration options to a user in a consistent user interface without the developer of the Provider having to ever touch a UI component.
Example Class
publicclassMyProviderConfiguration:AuthJanitorProviderConfiguration{publicenumSampleEnum{[Description("Red")]RedColor,[Description("Green")]GreenColor,[Description("Blue")]BlueColor}[DisplayName("String Array")][Description("Example Comma-Delimited List")]publicstring[]StringArray{get;set;}[DisplayName("Example Integer")][Description("This renders in a numeric HTML control!")]publicintInteger{get;set;}[DisplayName("Example Enumeration")][Description("This describes some colors.")]publicSampleEnumEnumeration{get;set;}}