Class Schedule


  • public class Schedule
    extends java.lang.Object
    A schedule.
    Since:
    4.0.10
    Version:
    $Revision: 18916 $ $Date: 2016-05-22 15:25:34 -0300 (Sun, 22 May 2016) $
    • Constructor Summary

      Constructors 
      Constructor Description
      Schedule()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Returns the display description for this schedule.
      java.util.Date getEndDateTime()
      Returns the endDateTime.
      java.lang.String getId()
      Returns the id.
      java.util.Set<lumis.service.resourcescheduler.Resource> getResources()
      Returns the resources.
      java.lang.String getRoomId()
      Returns the roomId
      java.util.Date getStartDateTime()
      Returns the startDateTime.
      java.lang.String getTitle()
      Returns the title.
      void setDescription​(java.lang.String description)
      Sets the display description for this schedule.
      void setEndDateTime​(java.util.Date endDateTime)
      Sets the endDateTime.
      void setId​(java.lang.String id)
      Sets the id.
      void setResources​(java.util.Set<lumis.service.resourcescheduler.Resource> resources)
      Sets the resources.
      void setRoomId​(java.lang.String roomId)
      Sets the roomId.
      void setStartDateTime​(java.util.Date startDateTime)
      Sets the startDateTime.
      void setTitle​(java.lang.String title)
      Sets the title code.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Schedule

        public Schedule()
    • Method Detail

      • getId

        public java.lang.String getId()
        Returns the id.
        Returns:
        the id
        Since:
        4.0.10
      • setId

        public void setId​(java.lang.String id)
        Sets the id.
        Parameters:
        id - the id value to set
        Since:
        4.0.10
      • getTitle

        public java.lang.String getTitle()
        Returns the title.
        Returns:
        the title
        Since:
        4.0.10
        See Also:
        java.util.Title#toString()
      • setTitle

        public void setTitle​(java.lang.String title)
        Sets the title code.
        Parameters:
        title - the title value to set
        Since:
        4.0.10
        See Also:
        java.util.Title#toString()
      • getDescription

        public java.lang.String getDescription()
        Returns the display description for this schedule.
        Returns:
        this schedule's display description.
        Since:
        4.0.10
      • setDescription

        public void setDescription​(java.lang.String description)
        Sets the display description for this schedule.
        Parameters:
        description - this title's display description.
        Since:
        4.0.10
      • getRoomId

        public java.lang.String getRoomId()
        Returns the roomId
        Returns:
        the roomId
        Since:
        4.0.10
      • setRoomId

        public void setRoomId​(java.lang.String roomId)
        Sets the roomId.
        Parameters:
        roomId - the roomId value to set
        Since:
        4.0.10
      • getEndDateTime

        public java.util.Date getEndDateTime()
        Returns the endDateTime.
        Returns:
        the endDateTime
        Since:
        4.0.10
      • setEndDateTime

        public void setEndDateTime​(java.util.Date endDateTime)
        Sets the endDateTime.
        Parameters:
        endDateTime - the endDateTime value to set.
        Since:
        4.0.10
      • getStartDateTime

        public java.util.Date getStartDateTime()
        Returns the startDateTime.
        Returns:
        the startDateTime
        Since:
        4.0.10
      • setStartDateTime

        public void setStartDateTime​(java.util.Date startDateTime)
        Sets the startDateTime.
        Parameters:
        startDateTime - the startDateTime value to set.
        Since:
        4.0.10
      • getResources

        public java.util.Set<lumis.service.resourcescheduler.Resource> getResources()
        Returns the resources.
        Returns:
        the resources
        Since:
        4.0.10
      • setResources

        public void setResources​(java.util.Set<lumis.service.resourcescheduler.Resource> resources)
        Sets the resources.
        Parameters:
        resources - the resources value to set.
        Since:
        4.0.10