本文整理了Java中org.ovirt.engine.core.common.businessentities.Quota.getThresholdClusterPercentage
方法的一些代码示例,展示了Quota.getThresholdClusterPercentage
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Quota.getThresholdClusterPercentage
方法的具体详情如下:
包路径:org.ovirt.engine.core.common.businessentities.Quota
类名称:Quota
方法名:getThresholdClusterPercentage
暂无
代码示例来源:origin: oVirt/ovirt-engine
private MapSqlParameterSource createQuotaMetaDataParameterMapper(Quota quota) {
return createQuotaIdParameterMapper(quota.getId()).addValue("storage_pool_id", quota.getStoragePoolId())
.addValue("quota_name", quota.getQuotaName())
.addValue("description", quota.getDescription())
.addValue("threshold_cluster_percentage", quota.getThresholdClusterPercentage())
.addValue("threshold_storage_percentage", quota.getThresholdStoragePercentage())
.addValue("grace_cluster_percentage", quota.getGraceClusterPercentage())
.addValue("grace_storage_percentage", quota.getGraceStoragePercentage())
.addValue("is_default", quota.isDefault());
}
代码示例来源:origin: oVirt/ovirt-engine
qModel.getThresholdCluster().setEntity(outer_quota.getThresholdClusterPercentage());
qModel.getGraceStorage().setEntity(outer_quota.getGraceStoragePercentage());
qModel.getThresholdStorage().setEntity(outer_quota.getThresholdStoragePercentage());
代码示例来源:origin: oVirt/ovirt-engine
@Mapping(from = org.ovirt.engine.core.common.businessentities.Quota.class, to = Quota.class)
public static Quota map(org.ovirt.engine.core.common.businessentities.Quota template, Quota model) {
Quota ret = (model==null) ? new Quota() : model;
if (template.getId()!=null) {
ret.setId(template.getId().toString());
}
if (template.getQuotaName()!=null) {
ret.setName(template.getQuotaName());
}
if (template.getDescription()!=null) {
ret.setDescription(template.getDescription());
}
if (template.getStoragePoolId()!=null) {
if (ret.getDataCenter()==null) {
ret.setDataCenter(new DataCenter());
}
ret.getDataCenter().setId(template.getStoragePoolId().toString());
}
ret.setClusterHardLimitPct(template.getGraceClusterPercentage());
ret.setStorageHardLimitPct(template.getGraceStoragePercentage());
ret.setClusterSoftLimitPct(template.getThresholdClusterPercentage());
ret.setStorageSoftLimitPct(template.getThresholdStoragePercentage());
return ret;
}
内容来源于网络,如有侵权,请联系作者删除!