- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for type (0.26 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) -
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/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/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/oic/OpenIdConnectAuthenticator.java
// Handle array type attributes.put(name, parseArray(jsonParser)); } else if (jsonParser.getCurrentToken() == JsonToken.START_OBJECT) { // Handle nested object type attributes.put(name, parseObject(jsonParser)); } else { // Handle primitive types (string, number, boolean, etc.)Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 16.5K 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) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
* @param docIds Array of document IDs to retrieve * @param fields Array of field names to include in the results * @param userBean Optional user information for permission checking * @param searchRequestType Type of search request for role-based access control * @return List of document data maps */ public List<Map<String, Object>> getDocumentListByDocIds(final String[] docIds, final String[] fields,Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0)