/**
  * Creates a new operation that may be used to search for entries in a local backend of the
  * Directory Server.
  *
  * @param search The operation to process.
  */
 public LocalBackendSearchOperation(SearchOperation search) {
   super(search);
   LocalBackendWorkflowElement.attachLocalOperation(search, this);
 }
 /**
  * Creates a new operation that may be used to bind where the bound user entry is stored in a
  * local backend of the Directory Server.
  *
  * @param bind The operation to enhance.
  */
 public LocalBackendBindOperation(BindOperation bind) {
   super(bind);
   LocalBackendWorkflowElement.attachLocalOperation(bind, this);
 }