source: DASISH/t5.6/backend/annotator-backend/trunk/annotator-backend/src/main/java/eu/dasish/annotation/backend/dao/CachedRepresentationDao.java @ 3916

Last change on this file since 3916 was 3916, checked in by olhsha, 11 years ago

updating cached ... BLOB needs to be deugged

File size: 2.0 KB
Line 
1/*
2 * Copyright (C) 2013 DASISH
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17 */
18package eu.dasish.annotation.backend.dao;
19
20import eu.dasish.annotation.schema.CachedRepresentationInfo;
21import java.io.InputStream;
22
23/**
24 *
25 * @author olhsha
26 */
27public interface CachedRepresentationDao extends ResourceDao{
28   
29   
30    /** GETTERS
31     *
32     */
33 
34    /**
35     *
36     * @param internalID
37     * @return the object of the class "CachedRepresentationInfo"  with the internal id "internalID".
38     */
39    public CachedRepresentationInfo getCachedRepresentationInfo(Number internalID);
40   
41   
42    /**
43     *
44     * @param internalID
45     * @return the Blob of the cached representation  with the internal id "internalID".
46     */
47    public InputStream getCachedRepresentationBlob(Number internalID);
48 
49    /**
50     * ADDERS
51     */
52   
53     /**
54     *
55     * @param cachedInfo
56     * @param cachedBlob
57     * @return the internal ID of the just added "cached", or null if the cached representation is not added for some reason.
58     */
59    public Number addCachedRepresentation(CachedRepresentationInfo cachedInfo, InputStream cachedBlob);
60   
61   
62   /**
63    * DELETERS
64    */
65    /**
66     *
67     * @param internalID
68     * @return  # deleted rows on the table "cached_representation".
69     */
70    public  int deleteCachedRepresentation(Number internalID);
71   
72   
73   
74}
Note: See TracBrowser for help on using the repository browser.