Class Request


  • public class Request
    extends java.lang.Object
    Request that contains start an end date.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.Date begin
      The start date.
      protected java.util.Date end
      The end date.
    • Constructor Summary

      Constructors 
      Constructor Description
      Request()
      Create a request.
      Request​(java.util.Date begin, java.util.Date end)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Date getBegin()
      Get the begin.
      java.util.Date getEnd()
      Get the end.
      void setBegin​(java.util.Date begin)
      Set the begin.
      void setEnd​(java.util.Date end)
      Set the end.
      • Methods inherited from class java.lang.Object

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

      • begin

        protected java.util.Date begin
        The start date.
      • end

        protected java.util.Date end
        The end date.
    • Constructor Detail

      • Request

        public Request()
        Create a request.
      • Request

        public Request​(java.util.Date begin,
                       java.util.Date end)
        Parameters:
        begin -
        end -
    • Method Detail

      • getBegin

        public java.util.Date getBegin()
        Get the begin.
        Returns:
        the begin.
      • setBegin

        public void setBegin​(java.util.Date begin)
        Set the begin.
        Parameters:
        begin - The begin to set.
      • getEnd

        public java.util.Date getEnd()
        Get the end.
        Returns:
        the end.
      • setEnd

        public void setEnd​(java.util.Date end)
        Set the end.
        Parameters:
        end - The end to set.