- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 535 for Store (0.09 sec)
-
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
}).createPageNumberList()); return keyMatchList; } public OptionalEntity<KeyMatch> getKeyMatch(final String id) { return keyMatchBhv.selectByPK(id); } public void store(final KeyMatch keyMatch) { keyMatchBhv.insertOrUpdate(keyMatch, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final KeyMatch keyMatch) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} public OptionalEntity<ProtwordsItem> getProtwordsItem(final String dictId, final long id) { return getProtwordsFile(dictId).map(file -> file.get(id).get()); } public void store(final String dictId, final ProtwordsItem protwordsItem) { getProtwordsFile(dictId).ifPresent(file -> { if (protwordsItem.getId() == 0) { file.insert(protwordsItem); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
} public OptionalEntity<StemmerOverrideItem> getStemmerOverrideItem(final String dictId, final long id) { return getStemmerOverrideFile(dictId).map(file -> file.get(id).get()); } public void store(final String dictId, final StemmerOverrideItem stemmerOvberrideItem) { getStemmerOverrideFile(dictId).ifPresent(file -> { if (stemmerOvberrideItem.getId() == 0) { file.insert(stemmerOvberrideItem);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
validate(form, messages -> {}, this::asEditHtml); verifyToken(this::asEditHtml); createProtwordsItem(form, this::asEditHtml).ifPresent(entity -> { protwordsService.store(form.dictId, entity); saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); }).orElse(() -> throwValidationError(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL), this::asEditHtml));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
validate(form, messages -> {}, this::asEditHtml); verifyToken(this::asEditHtml); getFileConfig(form).ifPresent(entity -> { try { fileConfigService.store(entity); saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); } catch (final Exception e) { logger.warn("Failed to process a request.", e);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
validate(form, messages -> {}, this::asEditHtml); verifyToken(this::asEditHtml); getWebConfig(form).ifPresent(entity -> { try { webConfigService.store(entity); saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); } catch (final Exception e) { logger.warn("Failed to process a request.", e);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.2K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
return fileAuthenticationList; } public OptionalEntity<FileAuthentication> getFileAuthentication(final String id) { return fileAuthenticationBhv.selectByPK(id); } public void store(final FileAuthentication fileAuthentication) { fileAuthentication.setParameters(ParameterUtil.encrypt(fileAuthentication.getParameters())); fileAuthenticationBhv.insertOrUpdate(fileAuthentication, op -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleTypeService.java
}).createPageNumberList()); return roleTypeList; } public OptionalEntity<RoleType> getRoleType(final String id) { return roleTypeBhv.selectByPK(id); } public void store(final RoleType roleType) { roleTypeBhv.insertOrUpdate(roleType, op -> { op.setRefreshPolicy(Constants.TRUE); }); } public void delete(final RoleType roleType) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
} public OptionalEntity<StopwordsItem> getStopwordsItem(final String dictId, final long id) { return getStopwordsFile(dictId).map(file -> file.get(id).get()); } public void store(final String dictId, final StopwordsItem stopwordsItem) { getStopwordsFile(dictId).ifPresent(file -> { if (stopwordsItem.getId() == 0) { file.insert(stopwordsItem); } else {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.1K bytes - Viewed (0)