Package com.liferay.docs.guestbook.service.impl

Source Code of com.liferay.docs.guestbook.service.impl.GuestbookLocalServiceImpl

/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/

package com.liferay.docs.guestbook.service.impl;

import com.liferay.docs.guestbook.GuestbookNameException;
import com.liferay.docs.guestbook.model.Guestbook;
import com.liferay.docs.guestbook.service.base.GuestbookLocalServiceBaseImpl;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.model.User;
import com.liferay.portal.service.ServiceContext;

import java.util.Date;
import java.util.List;

/**
* The implementation of the guestbook local service.
*
* <p>
* All custom service methods should be put in this class. Whenever methods are
* added, rerun ServiceBuilder to copy their definitions into the
* {@link com.liferay.docs.guestbook.service.GuestbookLocalService} interface.
*
* <p>
* This is a local service. Methods of this service will not have security
* checks based on the propagated JAAS credentials because this service can only
* be accessed from within the same VM.
* </p>
*
* @author Rich Sezov
* @see com.liferay.docs.guestbook.service.base.GuestbookLocalServiceBaseImpl
* @see com.liferay.docs.guestbook.service.GuestbookLocalServiceUtil
*/
public class GuestbookLocalServiceImpl extends GuestbookLocalServiceBaseImpl {
  /*
   * NOTE FOR DEVELOPERS:
   *
   * Never reference this interface directly. Always use {@link
   * com.liferay.docs.guestbook.service.GuestbookLocalServiceUtil} to access
   * the guestbook local service.
   */
 
  public List<Guestbook> getGuestbooks (long groupId) throws SystemException {
    return guestbookPersistence.findByGroupId(groupId);
  }
 
  public List<Guestbook> getGuestbooks (long groupId, int start, int end) throws SystemException {
    return guestbookPersistence.findByGroupId(groupId, start, end);
  }
 
  public Guestbook addGuestbook(long userId, String name,
      ServiceContext serviceContext) throws SystemException, PortalException {
   
    long groupId = serviceContext.getScopeGroupId();
   
    User user = userPersistence.findByPrimaryKey(userId);
   
    Date now = new Date();
   
    validate(name);
   
    long guestbookId = counterLocalService.increment();
   
    Guestbook guestbook = guestbookPersistence.create(guestbookId);
   
    guestbook.setUuid(serviceContext.getUuid());
    guestbook.setGroupId(groupId);
    guestbook.setCompanyId(user.getCompanyId());
    guestbook.setUserName(user.getFullName());
    guestbook.setCreateDate(serviceContext.getCreateDate(now));
    guestbook.setModifiedDate(serviceContext.getModifiedDate(now));
    guestbook.setName(name);
    guestbook.setExpandoBridgeAttributes(serviceContext);
   
    guestbookPersistence.update(guestbook);
   
    return guestbook;
   
  }
 
  protected void validate (String name) throws PortalException {
    if (Validator.isNull(name)) {
      throw new GuestbookNameException();
    }
  }
 
}
TOP

Related Classes of com.liferay.docs.guestbook.service.impl.GuestbookLocalServiceImpl

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.