- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 129 for Token (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java
* for API endpoints including authentication, message handling, and access control. * * This class extends FessBaseAction and provides specialized behavior for API requests, * including token-based authentication and JSON response handling. */ public abstract class FessApiAction extends FessBaseAction { /** * Default constructor. */ public FessApiAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.boost_document_rule_boost_expr=Boost Expression labels.boost_document_rule_sort_order=Sort Order labels.access_token_configuration=Access Token labels.access_token_title_details=Access Token labels.access_token_list_name=Name labels.access_token_name=Name labels.access_token_token=Token labels.access_token_expires=Expires labels.access_token_parameter_name=Parameter Name labels.access_token_updated_time=Created Date
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/AccessTokenHelper.java
/** * Generate the access token. * @return The access token. */ public String generateAccessToken() { return RandomStringUtils.random(ComponentUtil.getFessConfig().getApiAccessTokenLengthAsInteger(), 0, 0, true, true, null, random); } /** * Get the access token from the request. * @param request The request. * @return The access token. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.access_token/access_token.json
{ "properties": { "name": { "type": "keyword" }, "token": { "type": "keyword" }, "permissions": { "type": "keyword" }, "parameter_name" : { "type": "keyword" }, "expiredTime": { "type": "long" }, "createdBy": { "type": "keyword" }, "createdTime": { "type": "long" },
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 529 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
// Test constructor with whitespace in type String type = " Bearer Token "; String message = "Whitespace in token type"; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message); assertEquals(" Bearer Token ", exception.getType()); assertEquals(message, exception.getMessage()); assertNull(exception.getCause());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
.github/workflows/scorecard.yml
runs-on: ubuntu-latest permissions: # Needed to upload the results to code-scanning dashboard. security-events: write # Needed to publish results and get a badge (see publish_results below). id-token: write # Uncomment the permissions below if installing in a private repository. # contents: read # actions: read steps: - name: "Checkout code"
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
* * @return The value of the string. */ public String getStringValue() { return sval; } /** * Advances to the next token. * * @return The type of the token. */ public int nextToken() { initVal(); if (processEOF()) { return ttype; } if (processWhitespace()) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji_details.jsp
<tr> <th style="width: 25%"><la:message key="labels.dict_kuromoji_token"/></th> <td>${f:h(token)}<la:hidden property="token"/></td> </tr> <tr> <th><la:message key="labels.dict_kuromoji_segmentation"/></th>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji_edit.jsp
<label for="token" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.dict_kuromoji_token"/></label> <div class="col-sm-9"> <la:errors property="token"/> <la:text styleId="token" property="token" styleClass="form-control"/>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
throw new SsoLoginException("could not validate nonce", e); } } /** * Obtains an access token using a refresh token. * @param refreshToken The refresh token to use for token acquisition. * @return The authentication result containing the access token. */ public IAuthenticationResult getAccessToken(final String refreshToken) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0)