~ubuntu-branches/debian/jessie/ugene/jessie

« back to all changes in this revision

Viewing changes to src/include/U2Core/U2CrossDatabaseReferenceDbi.h

  • Committer: Package Import Robot
  • Author(s): Steffen Moeller
  • Date: 2011-11-02 13:29:07 UTC
  • mfrom: (1.2.1) (3.1.11 natty)
  • Revision ID: package-import@ubuntu.com-20111102132907-o34gwnt0uj5g6hen
Tags: 1.9.8+repack-1
* First release to Debian
  - added README.Debian
  - increased policy version to 3.9.2
  - added URLs for version control system
* Added debug package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * UGENE - Integrated Bioinformatics Tools.
 
3
 * Copyright (C) 2008-2011 UniPro <ugene@unipro.ru>
 
4
 * http://ugene.unipro.ru
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU General Public License
 
8
 * as published by the Free Software Foundation; either version 2
 
9
 * of the License, or (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
19
 * MA 02110-1301, USA.
 
20
 */
 
21
 
 
22
#ifndef _U2_CDR_DBI_H_
 
23
#define _U2_CDR_DBI_H_
 
24
 
 
25
#include <U2Core/U2Type.h>
 
26
#include <U2Core/U2Dbi.h>
 
27
 
 
28
namespace U2 {
 
29
 
 
30
 
 
31
class U2CORE_EXPORT U2CrossDatabaseReferenceDbi : public U2ChildDbi {
 
32
protected:
 
33
    U2CrossDatabaseReferenceDbi(U2Dbi* rootDbi) : U2ChildDbi(rootDbi){}
 
34
public:
 
35
    /**
 
36
        Adds new remote object to database.
 
37
        Sets local object id assigned to the new value
 
38
        Requires: U2DbiFeature_WriteCrossDatabaseReferences
 
39
    */
 
40
    virtual void createCrossReference(U2CrossDatabaseReference& reference, U2OpStatus& os) = 0;
 
41
 
 
42
    /**
 
43
        Loads remote object information from DB
 
44
        Requires: U2DbiFeature_ReadCrossDatabaseReferences
 
45
    */
 
46
    virtual U2CrossDatabaseReference getCrossReference(const U2DataId& objectId, U2OpStatus& os) = 0;
 
47
 
 
48
    /**
 
49
        Updates all fields of cross database reference object
 
50
        Requires: U2DbiFeature_WriteCrossDatabaseReferences
 
51
    */
 
52
    virtual void updateCrossReference(const U2CrossDatabaseReference& reference, U2OpStatus& os) = 0;
 
53
};
 
54
 
 
55
} //namespace
 
56
 
 
57
#endif