Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for executeCommand (0.06 seconds)

  1. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            if (isTargetUser(username)) {
                executeCommand(deleteCommand, username, StringUtil.EMPTY);
            }
        }
    
        @Override
        public boolean changePassword(final String username, final String password) {
            if (isTargetUser(username) && StringUtil.isNotBlank(password)) {
                return executeCommand(updateCommand, username, password) == 0;
            }
            return true;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                                .replace("${mimetype}", mimeType != null ? mimeType : "")));
                    }
    
                    final Path outputPath2 = outputFile.toPath();
                    if (executeCommand(thumbnailId, cmdList) != 0) {
                        logger.warn("Failed to execute command for thumbnail ID: {}", thumbnailId);
                        try {
                            Files.deleteIfExists(outputPath2);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 16.6K bytes
    - Click Count (0)
Back to Top