mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
* Add method to ldap connection interface * Move to interface wrapper Co-authored-by: Robert <17119716+robmonte@users.noreply.github.com>
This commit is contained in:
parent
81c1c3778b
commit
38bb6eae78
1 changed files with 5 additions and 0 deletions
|
|
@ -28,3 +28,8 @@ type PagingConnection interface {
|
|||
Connection
|
||||
SearchWithPaging(searchRequest *ldap.SearchRequest, pagingSize uint32) (*ldap.SearchResult, error)
|
||||
}
|
||||
|
||||
type PasswordModifyConnection interface {
|
||||
Connection
|
||||
PasswordModify(passwordModifyRequest *ldap.PasswordModifyRequest) (*ldap.PasswordModifyResult, error)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue