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.portal.service.search;
35  
36  import java.util.Date;
37  import java.util.List;
38  
39  /**
40   * SearchResult
41   */
42  public class SearchResult
43  {
44      // Variables declarations
45      private String _strId;
46      private Date _date;
47      private String _strUrl;
48      private String _strTitle;
49      private String _strSummary;
50      private String _strType;
51      private List<String> _listRoles;
52  
53      /**
54       * Returns the Id
55       *
56       * @return The Id
57       */
58      public String getId( )
59      {
60          return _strId;
61      }
62  
63      /**
64       * Sets the Id
65       *
66       * @param strId
67       *            The Id
68       */
69      public void setId( String strId )
70      {
71          _strId = strId;
72      }
73  
74      /**
75       * Returns the Date
76       *
77       * @return The Date
78       */
79      public Date getDate( )
80      {
81          return _date;
82      }
83  
84      /**
85       * Sets the Date
86       *
87       * @param date
88       *            The Date
89       */
90      public void setDate( Date date )
91      {
92          _date = date;
93      }
94  
95      /**
96       * Returns the Url
97       *
98       * @return The Url
99       */
100     public String getUrl( )
101     {
102         return _strUrl;
103     }
104 
105     /**
106      * Sets the Url
107      *
108      * @param strUrl
109      *            The Url
110      */
111     public void setUrl( String strUrl )
112     {
113         _strUrl = strUrl;
114     }
115 
116     /**
117      * Returns the Title
118      *
119      * @return The Title
120      */
121     public String getTitle( )
122     {
123         return _strTitle;
124     }
125 
126     /**
127      * Sets the Title
128      *
129      * @param strTitle
130      *            The Title
131      */
132     public void setTitle( String strTitle )
133     {
134         _strTitle = strTitle;
135     }
136 
137     /**
138      * Returns the Summary
139      *
140      * @return The Summary
141      */
142     public String getSummary( )
143     {
144         return _strSummary;
145     }
146 
147     /**
148      * Sets the Summary
149      *
150      * @param strSummary
151      *            The Summary
152      */
153     public void setSummary( String strSummary )
154     {
155         _strSummary = strSummary;
156     }
157 
158     /**
159      * Returns the Type
160      *
161      * @return The Type
162      */
163     public String getType( )
164     {
165         return _strType;
166     }
167 
168     /**
169      * Sets the Type
170      *
171      * @param strType
172      *            The Type
173      */
174     public void setType( String strType )
175     {
176         _strType = strType;
177     }
178 
179     /**
180      * Return the list of roles
181      * 
182      * @return the list of roles
183      */
184     public List<String> getRoles( )
185     {
186         return _listRoles;
187     }
188 
189     /**
190      * Sets the list of roles
191      * 
192      * @param listRoles
193      *            the list of roles
194      */
195     public void setRole( List<String> listRoles )
196     {
197         _listRoles = listRoles;
198     }
199 }