- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for copyBeanToNewBean (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
* This is a utility method that wraps BeanUtil.copyBeanToNewBean. * * @param <T> the type of the destination class * @param src the source bean object * @param destClass the class of the destination bean * @return a new instance of the destination class with copied properties */ protected static <T> T copyBeanToNewBean(final Object src, final Class<T> destClass) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
// PUT /api/admin/user/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final UserPager pager = copyBeanToNewBean(body, UserPager.class); final List<User> list = userService.getUserList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
// PUT /api/admin/relatedquery/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final RelatedQueryPager pager = copyBeanToNewBean(body, RelatedQueryPager.class); final List<RelatedQuery> list = relatedQueryService.getRelatedQueryList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
* @param destClass The type of the destination Bean. Must not be {@literal null}. * @return The newly copied Bean. */ public static <T> T copyBeanToNewBean(final Object src, final Class<T> destClass) { return copyBeanToNewBean(src, destClass, DEFAULT_OPTIONS); } /** * Copies the source Bean to a new instance of the destination Bean and returns it. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
@Execute public JsonResponse<ApiResult> get$settings(final String dictId, final SearchBody body) { body.dictId = dictId; validateApi(body, messages -> {}); final KuromojiPager pager = copyBeanToNewBean(body, KuromojiPager.class); return asJson(new ApiResult.ApiConfigsResponse<EditBody>().settings(kuromojiService.getKuromojiList(body.dictId, pager) .stream()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
@Execute public JsonResponse<ApiResult> get$settings(final String dictId, final SearchBody body) { body.dictId = dictId; validateApi(body, messages -> {}); final ProtwordsPager pager = copyBeanToNewBean(body, ProtwordsPager.class); return asJson(new ApiResult.ApiConfigsResponse<EditBody>().settings(protwordsService.getProtwordsList(body.dictId, pager) .stream()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
*/ @Execute public JsonResponse<ApiResult> logs(final SearchBody body) { validateApi(body, messages -> {}); final JobLogPager pager = copyBeanToNewBean(body, JobLogPager.class); final List<JobLog> list = jobLogService.getJobLogList(pager);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
*/ @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final DuplicateHostPager pager = copyBeanToNewBean(body, DuplicateHostPager.class); final List<DuplicateHost> list = duplicateHostService.getDuplicateHostList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java
*/ @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final PathMapPager pager = copyBeanToNewBean(body, PathMapPager.class); final List<PathMapping> list = pathMappingService.getPathMappingList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java
*/ @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final RelatedContentPager pager = copyBeanToNewBean(body, RelatedContentPager.class); final List<RelatedContent> list = relatedContentService.getRelatedContentList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0)