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.business.comment;
35  
36  import java.io.Serializable;
37  
38  /**
39   *
40   * CommentNotificationConfig
41   *
42   */
43  public class CommentNotificationConfig implements Serializable
44  {
45      /**
46       * Variables declarations
47       */
48      private static final long serialVersionUID = -6494118423858717180L;
49  
50      private NotificationType _type;
51      private String _strSubject;
52      private String _strMessage;
53      private String _strSenderName;
54  
55      /**
56       * Enum to specify if the notification type of the comment
57       */
58      public enum NotificationType
59      {
60          CREATE,
61          UPDATE,
62          DELETE
63  
64      }
65  
66      /**
67       * Returns the Type
68       * 
69       * @return The Type
70       */
71      public NotificationType getType( )
72      {
73          return _type;
74      }
75  
76      /**
77       * Sets the Type
78       * 
79       * @param type
80       *            The Type
81       */
82      public void setType( NotificationType type )
83      {
84          _type = type;
85      }
86  
87      /**
88       *
89       * @return the subject of the message
90       */
91      public String getSubject( )
92      {
93          return _strSubject;
94      }
95  
96      /**
97       * set the subject of the message
98       * 
99       * @param subject
100      *            the subject of the message
101      */
102     public void setSubject( String subject )
103     {
104         _strSubject = subject;
105     }
106 
107     /**
108      *
109      * @return the message of the notification
110      */
111     public String getMessage( )
112     {
113         return _strMessage;
114     }
115 
116     /**
117      * set the message of the notification
118      * 
119      * @param message
120      *            the message of the notifictaion
121      */
122     public void setMessage( String message )
123     {
124         _strMessage = message;
125     }
126 
127     /**
128      *
129      * @return the sender name
130      */
131     public String getSenderName( )
132     {
133         return _strSenderName;
134     }
135 
136     /**
137      * set the sender name
138      * 
139      * @param senderName
140      *            the sender name
141      */
142     public void setSenderName( String senderName )
143     {
144         _strSenderName = senderName;
145     }
146 }