View Javadoc
1   /*
2    * Copyright (c) 2002-2022, City of Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.appointment.service.lock;
35  
36  import java.util.concurrent.Callable;
37  
38  import fr.paris.lutece.plugins.appointment.business.slot.Slot;
39  import fr.paris.lutece.plugins.appointment.service.SlotSafeService;
40  
41  /**
42   * Timer Task for a slot (Manage a lock the time the user fill the form
43   * 
44   * @author Laurent Payen
45   *
46   */
47  public final class SlotEditTask implements Callable<Slot>
48  {
49  
50      /**
51       * Potentially number of places taken
52       */
53      private int _nbPlacesTaken;
54  
55      /**
56       * Id of the slot on which the user is taking an appointment
57       */
58      private int _idSlot;
59  
60      public SlotEditTask( int nIdSlot, int nbPlacesTaken )
61      {
62          _idSlot = nIdSlot;
63          _nbPlacesTaken = nbPlacesTaken;
64      }
65  
66      @Override
67      public Slot call( )
68      {
69          return SlotSafeService.incrementPotentialRemainingPlaces( this );
70  
71      }
72  
73      /**
74       * Get the number of places potentially taken
75       * 
76       * @return the number of places
77       */
78      public int getNbPlacesTaken( )
79      {
80          return _nbPlacesTaken;
81      }
82  
83      /**
84       * Set the number of places potentially taken
85       * 
86       * @param nbPlacesTaken
87       */
88      public void setNbPlacesTaken( int nbPlacesTaken )
89      {
90          this._nbPlacesTaken = nbPlacesTaken;
91      }
92  
93      /**
94       * Get the id of the slot
95       * 
96       * @return the id of the slot
97       */
98      public int getIdSlot( )
99      {
100         return _idSlot;
101     }
102 
103     /**
104      * Set the id of the slot
105      * 
106      * @param nIdSlot
107      *            the id of the slot
108      */
109     public void setIdSlot( int nIdSlot )
110     {
111         this._idSlot = nIdSlot;
112     }
113 }