- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for expiredTime (0.06 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsCrawlingInfo.java
this.createdTime = value; } public Long getExpiredTime() { checkSpecifiedProperty("expiredTime"); return expiredTime; } public void setExpiredTime(Long value) { registerModifiedProperty("expiredTime"); this.expiredTime = value; } public String getName() { checkSpecifiedProperty("name");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsAccessToken.java
this.createdTime = value; } public Long getExpiredTime() { checkSpecifiedProperty("expiredTime"); return expiredTime; } public void setExpiredTime(Long value) { registerModifiedProperty("expiredTime"); this.expiredTime = value; } public String getName() { checkSpecifiedProperty("name");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
}).map(accessToken -> { final Set<String> permissionSet = new HashSet<>(); final Long expiredTime = accessToken.getExpiredTime(); if (expiredTime != null && expiredTime.longValue() > 0 && expiredTime.longValue() < ComponentUtil.getSystemHelper().getCurrentTimeAsLong()) { throw new InvalidAccessTokenException("invalid_token",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoDbm.java
false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnExpiredTime = cci("expiredTime", "expiredTime", null, null, Long.class, "expiredTime", null, false, false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.access_token/access_token.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 529 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfo.java
return crawlingInfoParamList; } @Override public String toString() { return "CrawlingInfo [crawlingInfoParamList=" + crawlingInfoParamList + ", createdTime=" + createdTime + ", expiredTime=" + expiredTime + ", name=" + name + ", sessionId=" + sessionId + ", docMeta=" + docMeta + "]"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
public String name; /** * The expiration time for the crawling session. * This field indicates when the crawling session should expire or be cleaned up. */ public String expiredTime; /** * The timestamp when this crawling session was created. * Stored as a long value representing milliseconds since epoch. */ @ValidateTypeFailure public Long createdTime;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.crawling_info/crawling_info.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 246 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsCrawlingInfoCB.java
doColumn("_id"); } public void columnCreatedTime() { doColumn("createdTime"); } public void columnExpiredTime() { doColumn("expiredTime"); } public void columnName() { doColumn("name"); } public void columnSessionId() { doColumn("sessionId"); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/config/es/fess_config_access_token.json
"access_token" : { "properties" : { "createdBy" : { "type" : "keyword" }, "createdTime" : { "type" : "long" }, "expiredTime" : { "type" : "long" }, "name" : { "type" : "keyword" }, "parameter_name" : { "type" : "keyword" },
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.3K bytes - Viewed (0)