Package com.liferay.portal.service.persistence

Examples of com.liferay.portal.service.persistence.UserActionableDynamicQuery


    expandoBridge.setAttribute(attributeName, Boolean.TRUE, false);

    CompanyLocalServiceUtil.updateCompany(company);

    ActionableDynamicQuery actionableDynamicQuery =
      new UserActionableDynamicQuery() {

      @Override
      protected void addCriteria(DynamicQuery dynamicQuery) {
        Property property = PropertyFactoryUtil.forName("createDate");

        dynamicQuery.add(property.eqProperty("modifiedDate"));
      }

      @Override
      protected void performAction(Object object)
        throws PortalException, SystemException {

        User user = (User)object;

        user.setModifiedDate(new Date());
        user.setLanguageId(PortletPropsValues.COMPANY_DEFAULT_LOCALE);
        user.setTimeZoneId(
          PortletPropsValues.COMPANY_DEFAULT_TIME_ZONE);

        UserLocalServiceUtil.updateUser(user);
      }

    };

    actionableDynamicQuery.setCompanyId(companyId);

    actionableDynamicQuery.performActions();
  }
View Full Code Here

TOP

Related Classes of com.liferay.portal.service.persistence.UserActionableDynamicQuery

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.