Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for expiredTime (0.06 sec)

  1. BsAccessToken.java

    y("createdTime"); L164: this.createdTime = value; L165: } L166: L167: public Long getExpiredTime() { L168: checkSpecifiedProperty("expiredTime"); L169: return expiredTime; L170: } L171: L172: public void setExpiredTime(Long value) { L173: registerModifiedProperty("expiredTime"); L174: this.expiredTime = value; L175: } L176: L177: public String getName() { L178: checkSpecifiedProperty("name"); L179: return convertEmptyToNull(name);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.5K bytes
  2. AccessTokenService.java

    cb.query().setToken_Term(token); L99: }).map(accessToken -> { L100: final Set<String> permissionSet = new HashSet<>(); L101: final Long expiredTime = accessToken.getExpiredTime(); L102: if (expiredTime != null && expiredTime.longValue() > 0 L103: && expiredTime.longValue() < ComponentUtil.getSystemHelper().getCurrentTimeAsLong()) { L104: throw new InvalidAccessTokenException("invalid_token", L105: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.6K bytes
  3. BsCrawlingInfo.java

    y("createdTime"); L119: this.createdTime = value; L120: } L121: L122: public Long getExpiredTime() { L123: checkSpecifiedProperty("expiredTime"); L124: return expiredTime; L125: } L126: L127: public void setExpiredTime(Long value) { L128: registerModifiedProperty("expiredTime"); L129: this.expiredTime = value; L130: } L131: L132: public String getName() { L133: checkSpecifiedProperty("name"); L134: return convertEmptyToNull(name);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.3K bytes
  4. EditForm.java

    L37: @Size(max = 20) L38: public String sessionId; L39: L40: @Size(max = 20) L41: public String name; L42: L43: public String expiredTime; L44: L45: @ValidateTypeFailure L46: public Long createdTime; L47: L48: public void initialize() { L49: L50: id = null; L51: sessionId = null; L52: name = null; L53: expiredTime = null; L54: createdTime = null; L55: L56: } L57:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.4K bytes
  5. CrawlingInfoDbm.java

    "createdTime", null, null, Long.class, "createdTime", null, false, L126: false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false); L127: protected final ColumnInfo _columnExpiredTime = cci("expiredTime", "expiredTime", null, null, Long.class, "expiredTime", null, false, L128: false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false); L129: protected final ColumnInfo _columnName = cci("name", "name", null, null, String.class, "name",...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      8.7K bytes
  6. crawling_info.json

    L1:{ L2: "properties": { L3: "sessionId": { L4: "type": "keyword" L5: }, L6: "name": { L7: "type": "keyword" L8: }, L9: "expiredTime": { L10: "type": "long" L11: }, L12: "createdTime": { L13: "type": "long" L14: } L15: } L16:}...
    github.com/codelibs/fess/src/main/resources/fes...
    Thu Dec 02 13:14:56 UTC 2021
      246 bytes
  7. access_token.json

    "type": "keyword" L5: }, L6: "token": { L7: "type": "keyword" L8: }, L9: "permissions": { L10: "type": "keyword" L11: }, L12: "parameter_name" : { L13: "type": "keyword" L14: }, L15: "expiredTime": { L16: "type": "long" L17: }, L18: "createdBy": { L19: "type": "keyword" L20: }, L21: "createdTime": { L22: "type": "long" L23: }, L24: "updatedBy": { L25: "type": "keyword" L26: },...
    github.com/codelibs/fess/src/main/resources/fes...
    Thu Dec 02 13:14:56 UTC 2021
      529 bytes
  8. fess_config_access_token.json

    "mappings" : { L5: "access_token" : { L6: "properties" : { L7: "createdBy" : { L8: "type" : "keyword" L9: }, L10: "createdTime" : { L11: "type" : "long" L12: }, L13: "expiredTime" : { L14: "type" : "long" L15: }, L16: "name" : { L17: "type" : "keyword" L18: }, L19: "parameter_name" : { L20: "type" : "keyword" L21: }, L22: "permissions"...
    github.com/codelibs/fess/src/main/config/es/fes...
    Thu Dec 02 13:14:56 UTC 2021
      1.3K bytes
  9. CrawlingInfo.java

    L59: return crawlingInfoParamList; L60: } L61: L62: @Override L63: public String toString() { L64: return "CrawlingInfo [crawlingInfoParamList=" + crawlingInfoParamList + ", createdTime=" + createdTime + ", expiredTime=" L65: + expiredTime + ", name=" + name + ", sessionId=" + sessionId + ", docMeta=" + docMeta + "]"; L66: } L67:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.9K bytes
  10. BsCrawlingInfoCB.java

    columnId() { L176: doColumn("_id"); L177: } L178: L179: public void columnCreatedTime() { L180: doColumn("createdTime"); L181: } L182: L183: public void columnExpiredTime() { L184: doColumn("expiredTime"); L185: } L186: L187: public void columnName() { L188: doColumn("name"); L189: } L190: L191: public void columnSessionId() { L192: doColumn("sessionId"); L193: } L194: } L195:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.7K bytes
Back to top