View Javadoc
1   /*
2    * Copyright (c) 2002-2018, Mairie de 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.modules.resource.business.workflow;
35  
36  /**
37   * Set appointment resource history
38   */
39  public class SetAppointmentResourceHistory
40  {
41      private int _nId;
42      private int _nIdHistory;
43      private int _nIdAppointment;
44      private String _strIdResource;
45      private int _nIdFormResourceType;
46  
47      /**
48       * Get the primary key of the update
49       * 
50       * @return The primary key of the update
51       */
52      public int getId( )
53      {
54          return _nId;
55      }
56  
57      /**
58       * Set the primary key
59       * 
60       * @param nId
61       *            The primary key
62       */
63      public void setId( int nId )
64      {
65          this._nId = nId;
66      }
67  
68      /**
69       * Get the id of the history
70       * 
71       * @return The id of the history
72       */
73      public int getIdHistory( )
74      {
75          return _nIdHistory;
76      }
77  
78      /**
79       * Set the id of the history
80       * 
81       * @param nIdHistory
82       *            The id of the history
83       */
84      public void setIdHistory( int nIdHistory )
85      {
86          this._nIdHistory = nIdHistory;
87      }
88  
89      /**
90       * Get the id of the appointment associated with this history
91       * 
92       * @return The id of the appointment associated with this history
93       */
94      public int getIdAppointment( )
95      {
96          return _nIdAppointment;
97      }
98  
99      /**
100      * Set the id of the appointment associated with this history
101      * 
102      * @param nIdAppointment
103      *            The id of the appointment associated with this history
104      */
105     public void setIdAppointment( int nIdAppointment )
106     {
107         this._nIdAppointment = nIdAppointment;
108     }
109 
110     /**
111      * Get the id of the resource set
112      * 
113      * @return The the id of the resource set
114      */
115     public String getIdResource( )
116     {
117         return _strIdResource;
118     }
119 
120     /**
121      * Set the id of the resource set
122      * 
123      * @param strIdResource
124      *            The id of the resource set
125      */
126     public void setIdResource( String strIdResource )
127     {
128         this._strIdResource = strIdResource;
129     }
130 
131     /**
132      * Get the id of the form resource type
133      * 
134      * @return The id of the form resource type
135      */
136     public int getIdFormResourceType( )
137     {
138         return _nIdFormResourceType;
139     }
140 
141     /**
142      * Set the id of the form resource type
143      * 
144      * @param nIdFormResourceType
145      *            The id of the form resource type
146      */
147     public void setIdFormResourceType( int nIdFormResourceType )
148     {
149         this._nIdFormResourceType = nIdFormResourceType;
150     }
151 }