Examples of VolumeVO


Examples of com.cloud.storage.VolumeVO

        return this.snapshotDao.persist(snapshotVO);
    }

    private VolumeVO createVolume(Long templateId, long dataStoreId) {

        VolumeVO volume = new VolumeVO(Volume.Type.DATADISK, UUID.randomUUID().toString(), this.dcId, 1L, 1L, 1L, 1000, 0L, 0L, "");
        volume.setDataCenterId(this.dcId);
        volume.setPoolId(dataStoreId);
        volume = volumeDao.persist(volume);
        return volume;
    }
View Full Code Here

Examples of org.apache.cloudstack.storage.volume.db.VolumeVO

        return false;
    }

    @Override
    public VolumeEntity allocateVolumeInDb(long size, VolumeType type, String volName, Long templateId) {
        VolumeVO vo = volDao.allocVolume(size, type, volName, templateId);
        return new VolumeEntityImpl(VolumeObject.getVolumeObject(null, vo), this);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.