Package org.apache.cloudstack.storage.snapshot.db

Examples of org.apache.cloudstack.storage.snapshot.db.SnapshotVO


    ObjectInDataStoreManager objMap;
    @Inject
    DataStoreManager storeMgr;
    @Override
    public SnapshotInfo getSnapshot(long snapshotId, DataStore store) {
        SnapshotVO snapshot = snapshotDao.findById(snapshotId);
        ObjectInDataStoreVO obj = objMap.findObject(snapshotId, DataObjectType.SNAPSHOT, store.getId(), store.getRole());
        SnapshotObject so = new SnapshotObject(snapshot, store);
        return so;
    }
View Full Code Here

TOP

Related Classes of org.apache.cloudstack.storage.snapshot.db.SnapshotVO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.