-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ldap context is created every login fixed caching of ldap users
- Loading branch information
1 parent
d54c629
commit 52e3f44
Showing
57 changed files
with
1,214 additions
and
705 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
base/src/main/java/com/instaclustr/cassandra/ldap/auth/CassandraPasswordRetriever.java
This file was deleted.
Oops, something went wrong.
5 changes: 1 addition & 4 deletions
5
...assandra/ldap/auth/PasswordRetriever.java → ...dra/ldap/auth/CassandraUserRetriever.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
package com.instaclustr.cassandra.ldap.auth; | ||
|
||
import com.instaclustr.cassandra.ldap.User; | ||
import org.apache.cassandra.exceptions.ConfigurationException; | ||
import org.apache.cassandra.service.ClientState; | ||
|
||
public interface PasswordRetriever | ||
public interface CassandraUserRetriever extends UserRetriever | ||
{ | ||
|
||
void init(ClientState clientState) throws ConfigurationException; | ||
|
||
String retrieveHashedPassword(User user); | ||
} |
Oops, something went wrong.