Package com.nosester.portlet.eventlisting.model

Examples of com.nosester.portlet.eventlisting.model.Event


    Date now = new Date();

    long eventId = counterLocalService.increment(Event.class.getName());

    Event event = eventPersistence.create(eventId);

    event.setName(name);
    event.setDescription(description);

    Calendar dateCal = CalendarFactoryUtil.getCalendar(user.getTimeZone());
    dateCal.set(year, month, day, hour, minute);
    Date date = dateCal.getTime();
    event.setDate(date);

    event.setLocationId(locationId);

    event.setGroupId(groupId);
    event.setCompanyId(user.getCompanyId());
    event.setUserId(user.getUserId());
    event.setCreateDate(serviceContext.getCreateDate(now));
    event.setModifiedDate(serviceContext.getModifiedDate(now));

    super.addEvent(event);

    // Resources
View Full Code Here


  public void addEventResources(
      long eventId, boolean addGroupPermissions,
      boolean addGuestPermissions)
    throws PortalException, SystemException {

    Event event = eventPersistence.findByPrimaryKey(eventId);

    addEventResources(event, addGroupPermissions, addGuestPermissions);
  }
View Full Code Here

  public void addEventResources(
      long eventId, String[] groupPermissions, String[] guestPermissions)
    throws PortalException, SystemException {

    Event event = eventPersistence.findByPrimaryKey(eventId);

    addEventResources(event, groupPermissions, guestPermissions);
  }
View Full Code Here

  }

  public Event deleteEvent(long eventId)
    throws PortalException, SystemException {

    Event event = eventPersistence.findByPrimaryKey(eventId);

    return deleteEvent(event);
  }
View Full Code Here

    User user = userPersistence.findByPrimaryKey(userId);

    Date now = new Date();

    Event event = EventLocalServiceUtil.fetchEvent(eventId);

    event.setModifiedDate(serviceContext.getModifiedDate(now));
    event.setName(name);
    event.setDescription(description);

    Calendar dateCal = CalendarFactoryUtil.getCalendar(user.getTimeZone());
    dateCal.set(year, month, day, hour, minute);
    Date date = dateCal.getTime();
    event.setDate(date);

    event.setLocationId(locationId);

    super.updateEvent(event);

    return event;
  }
View Full Code Here

   */
  @Override
  public Event findByGroupId_First(long groupId,
    OrderByComparator orderByComparator)
    throws NoSuchEventException, SystemException {
    Event event = fetchByGroupId_First(groupId, orderByComparator);

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

View Full Code Here

   */
  @Override
  public Event findByGroupId_Last(long groupId,
    OrderByComparator orderByComparator)
    throws NoSuchEventException, SystemException {
    Event event = fetchByGroupId_Last(groupId, orderByComparator);

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

View Full Code Here

   */
  @Override
  public Event[] findByGroupId_PrevAndNext(long eventId, long groupId,
    OrderByComparator orderByComparator)
    throws NoSuchEventException, SystemException {
    Event event = findByPrimaryKey(eventId);

    Session session = null;

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

    throws NoSuchEventException, SystemException {
    if (!InlineSQLHelperUtil.isEnabled(groupId)) {
      return findByGroupId_PrevAndNext(eventId, groupId, orderByComparator);
    }

    Event event = findByPrimaryKey(eventId);

    Session session = null;

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

   * @param eventId the primary key for the new event
   * @return the new event
   */
  @Override
  public Event create(long eventId) {
    Event event = new EventImpl();

    event.setNew(true);
    event.setPrimaryKey(eventId);

    return event;
  }
View Full Code Here

TOP

Related Classes of com.nosester.portlet.eventlisting.model.Event

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.