hi.
can i get resultType in this @Override Method?
@Component
public class CustomUserEntityManager
extends AbstractManager
implements UserIdentityManager {
…
@Override
public List<User> findUserByQueryCriteria(UserQueryImpl query, Page page) {
//for example ->query.getResultType();
}
i use identityService in program and use singleResult(). but my result return list with two objects ,that throw exception.
i need check it in this method.
Thanks.