Issue OPENDJ-262: Implement pass through authentication (PTA)
Add new properties for configuring password caching (fix mock cfg in unit tests).
| | |
| | | { |
| | | return mappedSearchBindPasswordProperty; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public long getCachedPasswordMaxAge() |
| | | { |
| | | return 86400; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public long getCachedPasswordMinAge() |
| | | { |
| | | return 10; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public String getCachedPasswordStorageScheme() |
| | | { |
| | | return null; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public DN getCachedPasswordStorageSchemeDN() |
| | | { |
| | | return null; |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public boolean isUsePasswordCaching() |
| | | { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | |