- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for AuthenticationChain (0.12 sec)
-
src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.auth.chain; import org.codelibs.fess.es.user.exentity.User; public interface AuthenticationChain { void update(User user); void delete(User user); boolean changePassword(String username, String password); User load(User user);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 899 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/AuthenticationManager.java
public User load(final User user) { User u = user; for (final AuthenticationChain chain : chains) { u = chain.load(u); } return u; } public void addChain(final AuthenticationChain chain) { chains = ArrayUtils.addAll(chains, chain); } protected StreamOf<AuthenticationChain> chains() { return stream(chains); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/LdapChain.java
*/ package org.codelibs.fess.auth.chain; import org.codelibs.fess.es.user.exentity.User; import org.codelibs.fess.util.ComponentUtil; public class LdapChain implements AuthenticationChain { @Override public void update(final User user) { ComponentUtil.getLdapManager().insert(user); } @Override public void delete(final User user) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.codelibs.fess.es.user.exentity.User; import org.codelibs.fess.exception.CommandExecutionException; public class CommandChain implements AuthenticationChain { private static final Logger logger = LogManager.getLogger(CommandChain.class); protected File workingDirectory = null; protected int maxOutputLine = 1000;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0)