- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for expiredTime (0.16 sec)
-
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.3K 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
@Size(max = 20) public String sessionId; @Size(max = 20) public String name; public String expiredTime; @ValidateTypeFailure public Long createdTime; public void initialize() { id = null; sessionId = null; name = null; expiredTime = null; createdTime = null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.crawling_info/crawling_info.json
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 246 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.access_token/access_token.json
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 529 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.9K 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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.3K bytes - Viewed (0) -
src/main/config/es/fess_config_crawling_info.json
{ "fess_config.crawling_info" : { "aliases" : { }, "mappings" : { "crawling_info" : { "properties" : { "createdTime" : { "type" : "long" }, "expiredTime" : { "type" : "long" }, "name" : { "type" : "keyword" }, "sessionId" : { "type" : "keyword" } } } },
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 756 bytes - Viewed (0)