~ubuntu-branches/debian/sid/opennebula/sid

« back to all changes in this revision

Viewing changes to include/RequestManagerUpdateTemplate.h

  • Committer: Package Import Robot
  • Author(s): Damien Raude-Morvan
  • Date: 2012-05-11 19:27:43 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120511192743-lnz8gog5uxzmx2f3
Tags: 3.4.1-1
* New upstream release:
  - d/patches/default_conf.diff: Drop, transfert manager is now handled
    on a datasatore basis.
  - d/patches/genisoimage.diff: Merged upstream.
  - d/patches/oneacct-system-wide-installation.patch: Merged upstream.
  - Refresh others patches.
  - Update *.install files.
* Improve OCCI Self-Service UI integration:
  - Install into /usr/share/opennebula/occi/.
  - occi_system_jquery.diff: Use system wide jquery/jqueryui.
  - Add Recommends: libjs-jquery, libjs-jquery-ui for opennebula package.
* Add Suggests: ruby-uuidtools for econe-server.
* Install more manpages from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
    ~UserUpdateTemplate(){};
135
135
};
136
136
 
 
137
/* ------------------------------------------------------------------------- */
 
138
/* ------------------------------------------------------------------------- */
 
139
 
 
140
class DatastoreUpdateTemplate : public RequestManagerUpdateTemplate
 
141
{
 
142
public:
 
143
    DatastoreUpdateTemplate():
 
144
        RequestManagerUpdateTemplate("DatastoreUpdateTemplate",
 
145
                                     "Updates a datastore template")
 
146
    {
 
147
        Nebula& nd  = Nebula::instance();
 
148
        pool        = nd.get_dspool();
 
149
        auth_object = PoolObjectSQL::DATASTORE;
 
150
    };
 
151
 
 
152
    ~DatastoreUpdateTemplate(){};
 
153
};
 
154
 
137
155
/* -------------------------------------------------------------------------- */
138
156
/* -------------------------------------------------------------------------- */
139
157
/* -------------------------------------------------------------------------- */