- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for Type (0.04 sec)
-
src/main/java/org/codelibs/fess/storage/StorageClientFactory.java
// Get explicit type or auto-detect final String typeStr = fessConfig.getStorageType(); final StorageType type; if (StringUtil.isBlank(typeStr) || "auto".equalsIgnoreCase(typeStr)) { type = detectStorageType(endpoint); if (logger.isDebugEnabled()) { logger.debug("Auto-detected storage type: {} for endpoint: {}", type, endpoint); } } else {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
// Authentication Type Constants // ============================================================ /** Basic authentication type identifier. */ public static final String BASIC = "BASIC"; /** Digest authentication type identifier. */ public static final String DIGEST = "DIGEST"; /** NTLM authentication type identifier. */ public static final String NTLM = "NTLM";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0) -
pom.xml
<!-- Add libs --> <data> <type>directory</type> <src>${project.build.directory}/tomcat-lib</src> <mapper> <type>perm</type> <prefix>${packaging.fess.lib.dir}/classes</prefix> <user>${packaging.fess.user}</user> <group>${packaging.fess.group}</group> </mapper> </data> <data> <type>files</type> <paths>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 49.4K bytes - Viewed (0) -
dbflute.xml
<target name="mydbflute.check"> <condition property="mydbflute.exists"> <available file="${mydbflute.dir}" type="dir" /> </condition> </target> <target name="download.dbflute" depends="mydbflute.check" unless="mydbflute.exists"> <mkdir dir="${mydbflute.dir}" /> <get dest="${target.dir}/mydbflute.zip">
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 999 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
logger.debug("member={}", memberOf); } String memberType = (String) memberOf.get("@odata.type"); if (memberType == null) { logger.warn("@odata.type is null: {}", memberOf); continue; } memberType = memberType.toLowerCase(Locale.ENGLISH);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/StorageClient.java
* * @param objectName the name/path for the object * @param inputStream the input stream of data to upload * @param size the size of the data in bytes * @param contentType the MIME type of the content */ void uploadObject(String objectName, InputStream inputStream, long size, String contentType); /** * Downloads an object from storage. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Creates a search role string. * * @param type The type of the role. * @param name The name of the role. * @return The search role string. */ protected String createSearchRole(final String type, final String name) { final String value = type + ComponentUtil.getFessConfig().getCanonicalLdapName(name); if (logger.isDebugEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: State */ public static final String LABELS_STATE = "{labels.state}"; /** The key of the message: Employee Type */ public static final String LABELS_user_employeeType = "{labels.user_employeeType}"; /** The key of the message: Employee Type */ public static final String LABELS_EMPLOYEE_TYPE = "{labels.employeeType}"; /** The key of the message: Facsimile Telephone Number */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 156.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
*/ public class CharMappingFile extends DictionaryFile<CharMappingItem> { /** Logger instance for this class. */ private static final Logger logger = LogManager.getLogger(CharMappingFile.class); /** Type identifier for character mapping dictionaries. */ private static final String MAPPING = "mapping"; /** List of character mapping items loaded from the mapping file. */ List<CharMappingItem> mappingItemList;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* with Identity Providers such as Okta, Azure AD, OneLogin, etc.</p> * * <h2>Required Configuration</h2> * <p>Add the following properties to {@code system.properties}:</p> * <pre> * # Enable SAML SSO * sso.type=saml * * # Identity Provider settings (obtain from your IdP) * saml.idp.entityid=http://www.okta.com/xxxxx * saml.idp.single_sign_on_service.url=https://your-domain.okta.com/app/xxxxx/sso/saml
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 20.2K bytes - Viewed (3)