String layoutId, String userId, OrderByComparator obc)
    throws NoSuchPortletPreferencesException, SystemException {
    List list = findByL_U(layoutId, userId, 0, 1, obc);
    if (list.size() == 0) {
      throw new NoSuchPortletPreferencesException();
    }
    else {
      return (com.liferay.portal.model.PortletPreferences)list.get(0);
    }
  }