001// license-header java merge-point 002// 003// Attention: Generated code! Do not modify by hand! 004// Generated by: SpringDao.vsl in andromda-spring-cartridge. 005// 006package fr.ifremer.adagio.core.dao.referential; 007 008/* 009 * #%L 010 * SIH-Adagio :: Core for Allegro 011 * $Id:$ 012 * $HeadURL:$ 013 * %% 014 * Copyright (C) 2012 - 2014 Ifremer 015 * %% 016 * This program is free software: you can redistribute it and/or modify 017 * it under the terms of the GNU Affero General Public License as published by 018 * the Free Software Foundation, either version 3 of the License, or 019 * (at your option) any later version. 020 * 021 * This program is distributed in the hope that it will be useful, 022 * but WITHOUT ANY WARRANTY; without even the implied warranty of 023 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 024 * GNU General Public License for more details. 025 * 026 * You should have received a copy of the GNU Affero General Public License 027 * along with this program. If not, see <http://www.gnu.org/licenses/>. 028 * #L% 029 */ 030 031import fr.ifremer.adagio.core.dao.Search; 032import java.sql.Timestamp; 033import java.util.Collection; 034import java.util.Set; 035import org.andromda.spring.PaginationResult; 036 037/** 038 * Instrument servant à une analyse. 039 * Par exemple : 040 * - Ichtyomètre 041 * - Pied à coulisse 042 * @see AnalysisInstrument 043 */ 044public interface AnalysisInstrumentDao 045{ 046 /** 047 * This constant is used as a transformation flag; entities can be converted automatically into value objects 048 * or other types, different methods in a class implementing this interface support this feature: look for 049 * an <code>int</code> parameter called <code>transform</code>. 050 * <p> 051 * This specific flag denotes no transformation will occur. 052 */ 053 public static final int TRANSFORM_NONE = 0; 054 055 056 /** 057 * Transforms the given results to a collection of {@link AnalysisInstrument} 058 * instances (this is useful when the returned results contains a row of data and you want just entities only). 059 * 060 * @param results the query results. 061 */ 062 public void toEntities(final Collection<?> results); 063 064 /** 065 * Gets an instance of AnalysisInstrument from the persistent store. 066 * @param id 067 * @return AnalysisInstrument 068 */ 069 public AnalysisInstrument get(Integer id); 070 071 /** 072 * <p> 073 * Does the same thing as {@link #get(Integer)} with an 074 * additional flag called <code>transform</code>. If this flag is set to <code>TRANSFORM_NONE</code> then 075 * the returned entity will <strong>NOT</strong> be transformed. If this flag is any of the other constants 076 * defined in this class then the result <strong>WILL BE</strong> passed through an operation which can 077 * optionally transform the entity (into a value object for example). By default, transformation does 078 * not occur. 079 * </p> 080 * 081 * @param transform flag to determine transformation type. 082 * @param id the identifier of the entity to get. 083 * @return either the entity or the object transformed from the entity. 084 */ 085 public Object get(int transform, Integer id); 086 087 /** 088 * Loads an instance of AnalysisInstrument from the persistent store. 089 * @param id 090 * @return AnalysisInstrument 091 */ 092 public AnalysisInstrument load(Integer id); 093 094 /** 095 * <p> 096 * Does the same thing as {@link #load(Integer)} with an 097 * additional flag called <code>transform</code>. If this flag is set to <code>TRANSFORM_NONE</code> then 098 * the returned entity will <strong>NOT</strong> be transformed. If this flag is any of the other constants 099 * defined in this class then the result <strong>WILL BE</strong> passed through an operation which can 100 * optionally transform the entity (into a value object for example). By default, transformation does 101 * not occur. 102 * </p> 103 * 104 * @param transform flag to determine transformation type. 105 * @param id the identifier of the entity to load. 106 * @return either the entity or the object transformed from the entity. 107 */ 108 public Object load(int transform, Integer id); 109 110 /** 111 * Loads all entities of type {@link AnalysisInstrument}. 112 * 113 * @return the loaded entities. 114 */ 115 public Collection<AnalysisInstrument> loadAll(); 116 117 /** 118 * <p> 119 * Does the same thing as {@link #loadAll()} with an 120 * additional flag called <code>transform</code>. If this flag is set to <code>TRANSFORM_NONE</code> then 121 * the returned entity will <strong>NOT</strong> be transformed. If this flag is any of the other constants 122 * defined here then the result <strong>WILL BE</strong> passed through an operation which can optionally 123 * transform the entity (into a value object for example). By default, transformation does 124 * not occur. 125 * </p> 126 * 127 * @param transform the flag indicating what transformation to use. 128 * @return the loaded entities. 129 */ 130 public Collection<?> loadAll(final int transform); 131 132 /** 133 * <p> 134 * Does the same thing as {@link #loadAll()} with an 135 * additional two arguments called <code>pageNumber</code> and <code>pageSize</code>. The <code>pageNumber</code> 136 * argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the 137 * page retrieved. 138 * </p> 139 * 140 * @param pageNumber the page number to retrieve when paging results. 141 * @param pageSize the size of the page to retrieve when paging results. 142 * @return the loaded entities. 143 */ 144 public Collection<?> loadAll(final int pageNumber, final int pageSize); 145 146 /** 147 * <p> 148 * Does the same thing as {@link #loadAll(int)} with an 149 * additional two arguments called <code>pageNumber</code> and <code>pageSize</code>. The <code>pageNumber</code> 150 * argument allows you to specify the page number when you are paging the results and the pageSize allows you to specify the size of the 151 * page retrieved. 152 * </p> 153 * 154 * @param transform the flag indicating what transformation to use. 155 * @param pageNumber the page number to retrieve when paging results. 156 * @param pageSize the size of the page to retrieve when paging results. 157 * @return the loaded entities. 158 */ 159 public Collection<?> loadAll(final int transform, final int pageNumber, final int pageSize); 160 161 /** 162 * Creates an instance of AnalysisInstrument and adds it to the persistent store. 163 * @param analysisInstrument 164 * @return AnalysisInstrument 165 */ 166 public AnalysisInstrument create(AnalysisInstrument analysisInstrument); 167 168 /** 169 * <p> 170 * Does the same thing as {@link #create(AnalysisInstrument)} with an 171 * additional flag called <code>transform</code>. If this flag is set to <code>TRANSFORM_NONE</code> then 172 * the returned entity will <strong>NOT</strong> be transformed. If this flag is any of the other constants 173 * defined here then the result <strong>WILL BE</strong> passed through an operation which can optionally 174 * transform the entity (into a value object for example). By default, transformation does 175 * not occur. 176 * </p> 177 * @param transform 178 * @param analysisInstrument 179 * @return Object 180 */ 181 public Object create(int transform, AnalysisInstrument analysisInstrument); 182 183 /** 184 * Creates a new instance of AnalysisInstrument and adds 185 * from the passed in <code>entities</code> collection 186 * 187 * @param entities the collection of AnalysisInstrument 188 * instances to create. 189 * 190 * @return the created instances. 191 */ 192 public Collection<AnalysisInstrument> create(Collection<AnalysisInstrument> entities); 193 194 /** 195 * <p> 196 * Does the same thing as {@link #create(AnalysisInstrument)} with an 197 * additional flag called <code>transform</code>. If this flag is set to <code>TRANSFORM_NONE</code> then 198 * the returned entity will <strong>NOT</strong> be transformed. If this flag is any of the other constants 199 * defined here then the result <strong>WILL BE</strong> passed through an operation which can optionally 200 * transform the entities (into value objects for example). By default, transformation does 201 * not occur. 202 * </p> 203 * @param transform 204 * @param entities 205 * @return Collection 206 */ 207 public Collection<?> create(int transform, Collection<AnalysisInstrument> entities); 208 209 /** 210 * <p> 211 * Creates a new <code>AnalysisInstrument</code> 212 * instance from <strong>all</strong> attributes and adds it to 213 * the persistent store. 214 * </p> 215 * @param name 216 * @param description 217 * @param updateDate 218 * @return AnalysisInstrument 219 */ 220 public AnalysisInstrument create( 221 String name, 222 String description, 223 Timestamp updateDate); 224 225 /** 226 * <p> 227 * Does the same thing as {@link #create(String, String, Timestamp)} with an 228 * additional flag called <code>transform</code>. If this flag is set to <code>TRANSFORM_NONE</code> then 229 * the returned entity will <strong>NOT</strong> be transformed. If this flag is any of the other constants 230 * defined here then the result <strong>WILL BE</strong> passed through an operation which can optionally 231 * transform the entity (into a value object for example). By default, transformation does 232 * not occur. 233 * </p> 234 * @param transform 235 * @param name 236 * @param description 237 * @param updateDate 238 * @return AnalysisInstrument 239 */ 240 public Object create( 241 int transform, 242 String name, 243 String description, 244 Timestamp updateDate); 245 246 /** 247 * <p> 248 * Creates a new <code>AnalysisInstrument</code> 249 * instance from only <strong>required</strong> properties (attributes 250 * and association ends) and adds it to the persistent store. 251 * </p> 252 * @param name 253 * @param status 254 * @return AnalysisInstrument 255 */ 256 public AnalysisInstrument create( 257 String name, 258 Status status); 259 260 /** 261 * <p> 262 * Does the same thing as {@link #create(String)} with an 263 * additional flag called <code>transform</code>. If this flag is set to <code>TRANSFORM_NONE</code> then 264 * the returned entity will <strong>NOT</strong> be transformed. If this flag is any of the other constants 265 * defined here then the result <strong>WILL BE</strong> passed through an operation which can optionally 266 * transform the entity (into a value object for example). By default, transformation does 267 * not occur. 268 * </p> 269 * @param transform flag to determine transformation type. 270 * @param name 271 * @param status 272 * @return Object 273 */ 274 public Object create( 275 int transform, 276 String name, 277 Status status); 278 279 /** 280 * Updates the <code>analysisInstrument</code> instance in the persistent store. 281 * @param analysisInstrument 282 */ 283 public void update(AnalysisInstrument analysisInstrument); 284 285 /** 286 * Updates all instances in the <code>entities</code> collection in the persistent store. 287 * @param entities 288 */ 289 public void update(Collection<AnalysisInstrument> entities); 290 291 /** 292 * Removes the instance of AnalysisInstrument from the persistent store. 293 * @param analysisInstrument 294 */ 295 public void remove(AnalysisInstrument analysisInstrument); 296 297 /** 298 * Removes the instance of AnalysisInstrument having the given 299 * <code>identifier</code> from the persistent store. 300 * @param id 301 */ 302 public void remove(Integer id); 303 304 /** 305 * Removes all entities in the given <code>entities</code> collection. 306 * @param entities 307 */ 308 public void remove(Collection<AnalysisInstrument> entities); 309 310 311 /** 312 * Does the same thing as {@link #search(int, Search)} but with an 313 * additional two flags called <code>pageNumber</code> and <code>pageSize</code>. These flags allow you to 314 * limit your data to a specified page number and size. 315 * 316 * @param transform the transformation flag. 317 * @param pageNumber the page number in the data to retrieve 318 * @param pageSize the size of the page to retrieve. 319 * @param search the search object which provides the search parameters and pagination specification. 320 * @return any found results from the search wrapped in a {@link PaginationResult} instance. 321 */ 322 public PaginationResult search(final int transform, final int pageNumber, final int pageSize, final Search search); 323 324 /** 325 * Does the same thing as {@link #search(Search)} but with an 326 * additional two flags called <code>pageNumber</code> and <code>pageSize</code>. These flags allow you to 327 * limit your data to a specified page number and size. 328 * 329 * @param pageNumber the page number in the data to retrieve 330 * @param pageSize the size of the page to retrieve. 331 * @param search the search object which provides the search parameters and pagination specification. 332 * @return any found results from the search wrapped in a {@link PaginationResult} instance. 333 */ 334 public PaginationResult search(final int pageNumber, final int pageSize, final Search search); 335 336 /** 337 * Does the same thing as {@link #search(Search)} but with an 338 * additional flag called <code>transform</code>. If this flag is set to <code>TRANSFORM_NONE</code> then 339 * finder results will <strong>NOT</strong> be transformed during retrieval. 340 * If this flag is any of the other constants defined here 341 * then results <strong>WILL BE</strong> passed through an operation which can optionally 342 * transform the entities (into value objects for example). By default, transformation does 343 * not occur. 344 * 345 * @param transform the transformation flag. 346 * @param search the search object which provides the search parameters and pagination specification. 347 * @return any found results from the search. 348 */ 349 public Set<?> search(final int transform, final Search search); 350 351 /** 352 * Performs a search using the parameters specified in the given <code>search</code> object. 353 * 354 * @param search the search object which provides the search parameters and pagination specification. 355 * @return any found results from the search. 356 */ 357 public Set<AnalysisInstrument> search(final Search search); 358 359 /** 360 * Allows transformation of entities into value objects 361 * (or something else for that matter), when the <code>transform</code> 362 * flag is set to one of the constants defined in <code>fr.ifremer.adagio.core.dao.referential.AnalysisInstrumentDao</code>, please note 363 * that the {@link #TRANSFORM_NONE} constant denotes no transformation, so the entity itself 364 * will be returned. 365 * 366 * If the integer argument value is unknown {@link #TRANSFORM_NONE} is assumed. 367 * 368 * @param transform one of the constants declared in {@link fr.ifremer.adagio.core.dao.referential.AnalysisInstrumentDao} 369 * @param entity an entity that was found 370 * @return the transformed entity (i.e. new value object, etc) 371 * @see #transformEntities(int,Collection) 372 */ 373 public Object transformEntity(final int transform, final AnalysisInstrument entity); 374 375 /** 376 * Transforms a collection of entities using the 377 * {@link #transformEntity(int,AnalysisInstrument)} 378 * method. This method does not instantiate a new collection. 379 * <p> 380 * This method is to be used internally only. 381 * 382 * @param transform one of the constants declared in <code>fr.ifremer.adagio.core.dao.referential.AnalysisInstrumentDao</code> 383 * @param entities the collection of entities to transform 384 * @see #transformEntity(int,AnalysisInstrument) 385 */ 386 public void transformEntities(final int transform, final Collection<?> entities); 387 388 // spring-dao merge-point 389}