JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Directory Server Enterprise Edition Developer's Guide 11 g Release 1 (11.1.1.5.0)
search filter icon
search icon

Document Information

Preface

Part I Directory Server Plug-In API Guide

1.  Before You Start Writing Plug-Ins

2.  Changes to the Plug-In API Since Directory Server 5.2

3.  Getting Started With Directory Server Plug-Ins

4.  Working With Entries Using Plug-Ins

5.  Extending Client Request Handling Using Plug-Ins

6.  Handling Authentication Using Plug-Ins

7.  Performing Internal Operations With Plug-Ins

8.  Writing Entry Store and Entry Fetch Plug-Ins

9.  Writing Extended Operation Plug-Ins

10.  Writing Matching Rule Plug-Ins

11.  Writing Password Storage Scheme Plug-Ins

12.  Writing Password Quality Check Plug-Ins

13.  Writing Computed Attribute Plug-Ins

Part II Directory Server Plug-In API Reference

14.  Data Type and Structure Reference

15.  Function Reference, Part I

16.  Function Reference, Part II

17.  Parameter Block Reference

Parameter Categories

Access Log

Add

Backend Information

Bind

Compare

Connection Information

Delete

Directory Configuration Information

Extended Operations

Internal Operations

Modify

Operation Information

Plug-In Registration

Password Verification

Post-Operation Entry Access

Startup and Shutdown

Extended Operations

Internal Postoperation

Internal Preoperation

Entry Storage and Retrieval

Matching Rules

Postoperation

Preoperation

One-Way and Reversible Password Storage

Rename (Modify RDN)

Results

Search

A.  NameFinder Application

Prerequisite Software

Deploying NameFinder

Configuring NameFinder to Access Your Directory

Customizing NameFinder

Index

Operation Information

The following parameters allow you to access information about the current operation through the parameter block.

Table 17-13 Operation Information Parameters

Parameter ID
Data Type
Description
SLAPI_CONTROLS_ARG
LDAPControl **
Array of controls passed before the operation is created.
SLAPI_IS_INTERNAL_OPERATION
int
Whether the operation originated internally, or as the result of a client request.
  • 0 client request.

  • 1 internal operation.

SLAPI_IS_REPLICATED_OPERATION
int
Whether the operation is part of replication with another server.
  • 0 false.

  • 1 true.

SLAPI_OPERATION
Slapi_Operation *
Operation currently in progress.
SLAPI_OPERATION_ID
int
Identifier for the operation.
SLAPI_OPERATION_MSGID
long
Message identifier for the operation.
SLAPI_OPINITIATED_TIME
time_t
Time when the server began processing the operation.
SLAPI_REQCONTROLS
LDAPControl **
Array of controls specified in the request.
SLAPI_REQUESTOR_DN
char *
DN of the user requesting the operation.
SLAPI_REQUESTOR_ISROOT
int
Whether the bind DN of the user requesting the operation corresponds to the root DN, the value of nsslapd-rootdn on cn=config for the instance.
  • 0 false.

  • 1 true.

SLAPI_TARGET_DN
char *
DN to which the operation applies.