DEVCON 2026    |    2-5 November 2026 – QEII Centre – London, UK    |    Register now! 

Blogs

Searching entities through custom attribute value.

Sushil Patidar
Sushil Patidar
أقل من قراءة دقيقة

If you need to search Users who has particular custom attribute value .Using liferay expando API ,this can be acheived easly as follows.

String attrValue ="IT";
 
String attributeName ="user-department-name";
 
String tableName = ExpandoTableConstants.DEFAULT_TABLE_NAME;
 
long classNameId = ClassNameLocalServiceUtil.getClassNameId(User.class);
 
 
List<ExpandoValue> expandoValues =ExpandoValueLocalServiceUtil.getColumnValues(companyId, classNameId, tableName, attributeName, attrValue, -1,-1);
 
 
for(ExpandoValue expandoValue:expandoValues)
 
  try {
      long userId = expandoValue.getClassPK();
      User user  =UserLocalServiceUtil.getUser(userId);
  }
  catch(NoSuchUserException nsue) {
 
   _log.error("No Such User Exist");
  }
}
 

 

تعليقات الصفحة

Related Assets...

لا توجد نتائج

More Blog Entries...

Ben Turner
سبتمبر ٠٢, ٢٠٢٦
David H Nebinger
أغسطس ١٨, ٢٠٢٦
David H Nebinger
أغسطس ١٦, ٢٠٢٦