Hi,
I'm trying to develop crowd add-on and to use Active Objects library. Crowd version is 4.3.0
But when I use find function of AO the function is not work well. I want some advice for using. I'll attach the find function code to review.
Thank you.
public List<InactiveSettingDTO> getAdminConfig(){
List<InactiveSettingDTO> settingDTOList = new ArrayList<>();
InactiveSettingAO[] settingAO = ao.find(InactiveSettingAO.class, Query.select());
if(settingAO.length > 0){
for(InactiveSettingAO setting: settingAO){
settingDTOList.add(InactiveSettingDTO.fromAO(setting));
logger.info("settingDTOList.get(0).getLastActivity(): "+settingDTOList.get(0).getLastActivity());
return settingDTOList;
}
}
return null;
}
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.