Examples of Guestbook


Examples of com.liferay.docs.guestbook.model.Guestbook

  @Override
  @SuppressWarnings("unused")
  protected void performAction(Object object)
    throws PortalException, SystemException {
    Guestbook stagedModel = (Guestbook)object;

    StagedModelDataHandlerUtil.exportStagedModel(_portletDataContext,
      stagedModel);
  }
View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

   */
  @Override
  public Guestbook findByUuid_First(String uuid,
    OrderByComparator orderByComparator)
    throws NoSuchGuestbookException, SystemException {
    Guestbook guestbook = fetchByUuid_First(uuid, orderByComparator);

    if (guestbook != null) {
      return guestbook;
    }

View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

   */
  @Override
  public Guestbook findByUuid_Last(String uuid,
    OrderByComparator orderByComparator)
    throws NoSuchGuestbookException, SystemException {
    Guestbook guestbook = fetchByUuid_Last(uuid, orderByComparator);

    if (guestbook != null) {
      return guestbook;
    }

View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

   */
  @Override
  public Guestbook[] findByUuid_PrevAndNext(long guestbookId, String uuid,
    OrderByComparator orderByComparator)
    throws NoSuchGuestbookException, SystemException {
    Guestbook guestbook = findByPrimaryKey(guestbookId);

    Session session = null;

    try {
      session = openSession();
View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

   * @throws SystemException if a system exception occurred
   */
  @Override
  public Guestbook findByUUID_G(String uuid, long groupId)
    throws NoSuchGuestbookException, SystemException {
    Guestbook guestbook = fetchByUUID_G(uuid, groupId);

    if (guestbook == null) {
      StringBundler msg = new StringBundler(6);

      msg.append(_NO_SUCH_ENTITY_WITH_KEY);
View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

      result = FinderCacheUtil.getResult(FINDER_PATH_FETCH_BY_UUID_G,
          finderArgs, this);
    }

    if (result instanceof Guestbook) {
      Guestbook guestbook = (Guestbook)result;

      if (!Validator.equals(uuid, guestbook.getUuid()) ||
          (groupId != guestbook.getGroupId())) {
        result = null;
      }
    }

    if (result == null) {
      StringBundler query = new StringBundler(4);

      query.append(_SQL_SELECT_GUESTBOOK_WHERE);

      boolean bindUuid = false;

      if (uuid == null) {
        query.append(_FINDER_COLUMN_UUID_G_UUID_1);
      }
      else if (uuid.equals(StringPool.BLANK)) {
        query.append(_FINDER_COLUMN_UUID_G_UUID_3);
      }
      else {
        bindUuid = true;

        query.append(_FINDER_COLUMN_UUID_G_UUID_2);
      }

      query.append(_FINDER_COLUMN_UUID_G_GROUPID_2);

      String sql = query.toString();

      Session session = null;

      try {
        session = openSession();

        Query q = session.createQuery(sql);

        QueryPos qPos = QueryPos.getInstance(q);

        if (bindUuid) {
          qPos.add(uuid);
        }

        qPos.add(groupId);

        List<Guestbook> list = q.list();

        if (list.isEmpty()) {
          FinderCacheUtil.putResult(FINDER_PATH_FETCH_BY_UUID_G,
            finderArgs, list);
        }
        else {
          Guestbook guestbook = list.get(0);

          result = guestbook;

          cacheResult(guestbook);

          if ((guestbook.getUuid() == null) ||
              !guestbook.getUuid().equals(uuid) ||
              (guestbook.getGroupId() != groupId)) {
            FinderCacheUtil.putResult(FINDER_PATH_FETCH_BY_UUID_G,
              finderArgs, guestbook);
          }
        }
      }
View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

   * @throws SystemException if a system exception occurred
   */
  @Override
  public Guestbook removeByUUID_G(String uuid, long groupId)
    throws NoSuchGuestbookException, SystemException {
    Guestbook guestbook = findByUUID_G(uuid, groupId);

    return remove(guestbook);
  }
View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

   */
  @Override
  public Guestbook findByUuid_C_First(String uuid, long companyId,
    OrderByComparator orderByComparator)
    throws NoSuchGuestbookException, SystemException {
    Guestbook guestbook = fetchByUuid_C_First(uuid, companyId,
        orderByComparator);

    if (guestbook != null) {
      return guestbook;
    }
View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

   */
  @Override
  public Guestbook findByUuid_C_Last(String uuid, long companyId,
    OrderByComparator orderByComparator)
    throws NoSuchGuestbookException, SystemException {
    Guestbook guestbook = fetchByUuid_C_Last(uuid, companyId,
        orderByComparator);

    if (guestbook != null) {
      return guestbook;
    }
View Full Code Here

Examples of com.liferay.docs.guestbook.model.Guestbook

   */
  @Override
  public Guestbook[] findByUuid_C_PrevAndNext(long guestbookId, String uuid,
    long companyId, OrderByComparator orderByComparator)
    throws NoSuchGuestbookException, SystemException {
    Guestbook guestbook = findByPrimaryKey(guestbookId);

    Session session = null;

    try {
      session = openSession();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.