.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Determines if the configuration is valid.

A valid configuration is one that is ready to be used by the connector: it is complete (all the required properties have been given values) and the property values are well-formed (are in the expected range, have the expected format, etc.)

Implementations of this method should not connect to the resource in an attempt to validate the configuration. For example, implementations should not attempt to check that a host of the specified name exists by making a connection to it. Such checks can be performed in the implementation of the Test()()()() method.

Namespace: Org.IdentityConnectors.Framework.Spi
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
void Validate()

Exceptions

ExceptionCondition
System..::..Exceptioniff the configuration is not valid. Implementations are encouraged to throw the most specific exception available. When no specific exception is available, implementations can throw ConfigurationException.

See Also