Operation-Specific Configuration Parameters

The following is a list of operation-specific configuration parameters for SailPoint Web Services.

Note
For more information on operation-specific configurations, refer to Connector Operation Configuration.

Operation Rules

Web Services uses the following operation rules:

  • Web Service Before Operation Rule

  • Web Service After Operation Rule

The Before Operation and After Operation rules provide a mechanism to implement custom code agnostic to the Web Service. If the code generates any sensitive information that would be used by the connector for the operation, then the sensitive values must be added to the LogContext to prevent them from being included in the logs.

For more information, refer to Web Services Before/After Operation Rule.

Use the following code to add the sensitive values generated by the rules to the LogContext:

Copy
{code}
import connector.common.logging.LogContext;
...
LogContext.addSensitiveValue("secret-value");
{code}

For more information on Web Services Before/After Operation Rule, refer to Web Services Before/After Operation Rule.

Saving Parameters in Web Services Connector

The Web Services Connector can permanently store the values for application objects. Configure the connector to save the parameters using the connectorStateMap in the Before and After Operation rules in the Web Service Connector. The following are examples of Before and After Operation rules.