- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for copyBeanToNewBean (0.19 sec)
-
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: Sat Dec 20 08:55:33 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/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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java
// PUT /api/admin/role/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final RolePager pager = copyBeanToNewBean(body, RolePager.class); final List<Role> list = roleService.getRoleList(pager); return asJson(Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7K 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: Sat Dec 20 09:19:18 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/keymatch/ApiAdminKeymatchAction.java
// PUT /api/admin/keymatch/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final KeyMatchPager pager = copyBeanToNewBean(body, KeyMatchPager.class); final List<KeyMatch> list = keyMatchService.getKeyMatchList(pager); return asJson(Registered: Sat Dec 20 09:19:18 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/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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
// PUT /api/admin/crawlinginfo/logs @Execute public JsonResponse<ApiResult> logs(final SearchBody body) { validateApi(body, messages -> {}); final CrawlingInfoPager pager = copyBeanToNewBean(body, CrawlingInfoPager.class); final List<CrawlingInfo> list = crawlingInfoService.getCrawlingInfoList(pager);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
*/ @Execute public JsonResponse<ApiResult> logs(final SearchBody body) { validateApi(body, messages -> {}); final FailureUrlPager pager = copyBeanToNewBean(body, FailureUrlPager.class); final List<FailureUrl> list = failureUrlService.getFailureUrlList(pager);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
// PUT /api/admin/labeltype/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final LabelTypePager pager = copyBeanToNewBean(body, LabelTypePager.class); final List<LabelType> list = labelTypeService.getLabelTypeList(pager); return asJson(Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0)