com.ibm.itim.script.extensions.model

Interface ModelScriptInterface

    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static java.lang.String LOGICAL_CONTEXT
      Represents the current container context for the script.
      static java.lang.String ROOT_DN
      Holds the root, or tenant's, DN to provide context to the script.
      static java.lang.String SERVICEPROFILE_CONTEXT
      Represents the current type of service that is part of the script's context.
    • Field Detail

      • ROOT_DN

        static final java.lang.String ROOT_DN
        Holds the root, or tenant's, DN to provide context to the script. The value of this property must be a DistinguishedName.
        See Also:
        Constant Field Values
      • LOGICAL_CONTEXT

        static final java.lang.String LOGICAL_CONTEXT
        Represents the current container context for the script. This property is used when performing searches where the logical context is assumed. Without this property, those context assumed searches will not be available, but this may be an acceptable configuration depending on the context of the script. The value of the property must be a DirectoryObjectEntity.
        See Also:
        Constant Field Values
      • SERVICEPROFILE_CONTEXT

        static final java.lang.String SERVICEPROFILE_CONTEXT
        Represents the current type of service that is part of the script's context. This property is optional and is only needed to enable the search operations that do not require a profile for context as a convenience to the script writer.
        See Also:
        Constant Field Values
    • Method Detail

      • getRootDN

        java.lang.Object getRootDN()
        TODO comments
        Returns:
        Object value.
      • getLogicalContext

        java.lang.Object getLogicalContext()
        TODO comments
        Returns:
        Object value.
      • getServiceProfileContext

        java.lang.String getServiceProfileContext()
        This property is optional (can return null). See SERVICEPREFILE_CONTEXT for more information. TODO comments
        Returns:
        String or null value.