mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-7000: ListSnapshotPolicy should list by policyid. Introduce updateSnapshotPolicy command
(cherry picked from commit fce21439facea267d958d8939059ba65afb3578a)
This commit is contained in:
parent
06d3043954
commit
80ef915fd5
@ -29,6 +29,7 @@ import com.cloud.network.vpc.NetworkACL;
|
|||||||
import com.cloud.network.vpc.NetworkACLItem;
|
import com.cloud.network.vpc.NetworkACLItem;
|
||||||
import com.cloud.network.Site2SiteVpnConnection;
|
import com.cloud.network.Site2SiteVpnConnection;
|
||||||
import com.cloud.server.ResourceTag;
|
import com.cloud.server.ResourceTag;
|
||||||
|
import com.cloud.storage.snapshot.SnapshotPolicy;
|
||||||
import com.cloud.vm.ConsoleProxy;
|
import com.cloud.vm.ConsoleProxy;
|
||||||
import com.cloud.vm.SecondaryStorageVm;
|
import com.cloud.vm.SecondaryStorageVm;
|
||||||
import org.apache.cloudstack.config.Configuration;
|
import org.apache.cloudstack.config.Configuration;
|
||||||
@ -630,9 +631,9 @@ public class EventTypes {
|
|||||||
// Snapshots
|
// Snapshots
|
||||||
entityEventDetails.put(EVENT_SNAPSHOT_CREATE, Snapshot.class);
|
entityEventDetails.put(EVENT_SNAPSHOT_CREATE, Snapshot.class);
|
||||||
entityEventDetails.put(EVENT_SNAPSHOT_DELETE, Snapshot.class);
|
entityEventDetails.put(EVENT_SNAPSHOT_DELETE, Snapshot.class);
|
||||||
entityEventDetails.put(EVENT_SNAPSHOT_POLICY_CREATE, Snapshot.class);
|
entityEventDetails.put(EVENT_SNAPSHOT_POLICY_CREATE, SnapshotPolicy.class);
|
||||||
entityEventDetails.put(EVENT_SNAPSHOT_POLICY_UPDATE, Snapshot.class);
|
entityEventDetails.put(EVENT_SNAPSHOT_POLICY_UPDATE, SnapshotPolicy.class);
|
||||||
entityEventDetails.put(EVENT_SNAPSHOT_POLICY_DELETE, Snapshot.class);
|
entityEventDetails.put(EVENT_SNAPSHOT_POLICY_DELETE, SnapshotPolicy.class);
|
||||||
|
|
||||||
// ISO
|
// ISO
|
||||||
entityEventDetails.put(EVENT_ISO_CREATE, "Iso");
|
entityEventDetails.put(EVENT_ISO_CREATE, "Iso");
|
||||||
|
|||||||
@ -29,6 +29,7 @@ import com.cloud.storage.Snapshot;
|
|||||||
import com.cloud.storage.Volume;
|
import com.cloud.storage.Volume;
|
||||||
import com.cloud.user.Account;
|
import com.cloud.user.Account;
|
||||||
import com.cloud.utils.Pair;
|
import com.cloud.utils.Pair;
|
||||||
|
import org.apache.cloudstack.api.command.user.snapshot.UpdateSnapshotPolicyCmd;
|
||||||
|
|
||||||
public interface SnapshotApiService {
|
public interface SnapshotApiService {
|
||||||
|
|
||||||
@ -106,4 +107,6 @@ public interface SnapshotApiService {
|
|||||||
Long getHostIdForSnapshotOperation(Volume vol);
|
Long getHostIdForSnapshotOperation(Volume vol);
|
||||||
|
|
||||||
boolean revertSnapshot(Long snapshotId);
|
boolean revertSnapshot(Long snapshotId);
|
||||||
|
|
||||||
|
SnapshotPolicy updateSnapshotPolicy(UpdateSnapshotPolicyCmd updateSnapshotPolicyCmd);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -44,9 +44,12 @@ public class ListSnapshotPoliciesCmd extends BaseListCmd {
|
|||||||
//////////////// API parameters /////////////////////
|
//////////////// API parameters /////////////////////
|
||||||
/////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////
|
||||||
|
|
||||||
@Parameter(name = ApiConstants.VOLUME_ID, type = CommandType.UUID, entityType = VolumeResponse.class, required = true, description = "the ID of the disk volume")
|
@Parameter(name = ApiConstants.VOLUME_ID, type = CommandType.UUID, entityType = VolumeResponse.class, description = "the ID of the disk volume")
|
||||||
private Long volumeId;
|
private Long volumeId;
|
||||||
|
|
||||||
|
@Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType = SnapshotPolicyResponse.class, description = "the ID of the snapshot policy")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
@Parameter(name = ApiConstants.FOR_DISPLAY, type = CommandType.BOOLEAN, description = "list resources by display flag; only ROOT admin is eligible to pass this parameter", since = "4.4", authorized = {RoleType.Admin})
|
@Parameter(name = ApiConstants.FOR_DISPLAY, type = CommandType.BOOLEAN, description = "list resources by display flag; only ROOT admin is eligible to pass this parameter", since = "4.4", authorized = {RoleType.Admin})
|
||||||
private Boolean display;
|
private Boolean display;
|
||||||
|
|
||||||
@ -66,6 +69,9 @@ public class ListSnapshotPoliciesCmd extends BaseListCmd {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
/////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////
|
||||||
/////////////// API Implementation///////////////////
|
/////////////// API Implementation///////////////////
|
||||||
/////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////
|
||||||
|
|||||||
@ -0,0 +1,133 @@
|
|||||||
|
package org.apache.cloudstack.api.command.user.snapshot;
|
||||||
|
|
||||||
|
// Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
// or more contributor license agreements. See the NOTICE file
|
||||||
|
// distributed with this work for additional information
|
||||||
|
// regarding copyright ownership. The ASF licenses this file
|
||||||
|
// to you under the Apache License, Version 2.0 (the
|
||||||
|
// "License"); you may not use this file except in compliance
|
||||||
|
// with the License. You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing,
|
||||||
|
// software distributed under the License is distributed on an
|
||||||
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
// KIND, either express or implied. See the License for the
|
||||||
|
// specific language governing permissions and limitations
|
||||||
|
// under the License.
|
||||||
|
|
||||||
|
import com.cloud.event.EventTypes;
|
||||||
|
import com.cloud.exception.InvalidParameterValueException;
|
||||||
|
import com.cloud.storage.Volume;
|
||||||
|
import com.cloud.storage.snapshot.SnapshotPolicy;
|
||||||
|
import org.apache.cloudstack.acl.RoleType;
|
||||||
|
import org.apache.cloudstack.acl.SecurityChecker;
|
||||||
|
import org.apache.cloudstack.api.ACL;
|
||||||
|
import org.apache.cloudstack.api.APICommand;
|
||||||
|
import org.apache.cloudstack.api.ApiConstants;
|
||||||
|
import org.apache.cloudstack.api.ApiErrorCode;
|
||||||
|
import org.apache.cloudstack.api.BaseAsyncCustomIdCmd;
|
||||||
|
import org.apache.cloudstack.api.Parameter;
|
||||||
|
import org.apache.cloudstack.api.ResponseObject;
|
||||||
|
import org.apache.cloudstack.api.ServerApiException;
|
||||||
|
import org.apache.cloudstack.api.response.SnapshotPolicyResponse;
|
||||||
|
import org.apache.cloudstack.context.CallContext;
|
||||||
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
|
|
||||||
|
@APICommand(name = "updateSnapshotPolicy", description = "Updates the snapshot policy.", responseObject = SnapshotPolicyResponse.class, responseView = ResponseObject.ResponseView.Restricted, entityType = {Volume.class},
|
||||||
|
requestHasSensitiveInfo = false, responseHasSensitiveInfo = false)
|
||||||
|
public class UpdateSnapshotPolicyCmd extends BaseAsyncCustomIdCmd {
|
||||||
|
public static final Logger s_logger = Logger.getLogger(UpdateSnapshotPolicyCmd.class.getName());
|
||||||
|
private static final String s_name = "updatesnapshotpolicyresponse";
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////
|
||||||
|
//////////////// API parameters /////////////////////
|
||||||
|
/////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@ACL(accessType = SecurityChecker.AccessType.OperateEntry)
|
||||||
|
@Parameter(name= ApiConstants.ID, type=CommandType.UUID, entityType=SnapshotPolicyResponse.class, description="the ID of the snapshot policy")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@Parameter(name = ApiConstants.FOR_DISPLAY,
|
||||||
|
type = CommandType.BOOLEAN,
|
||||||
|
description = "an optional field, whether to the display the snapshot policy to the end user or not.",
|
||||||
|
since = "4.4",
|
||||||
|
authorized = {RoleType.Admin})
|
||||||
|
private Boolean display;
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////
|
||||||
|
/////////////////// Accessors ///////////////////////
|
||||||
|
/////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
public Long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getDisplay() {
|
||||||
|
return display;
|
||||||
|
}
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////
|
||||||
|
/////////////// API Implementation///////////////////
|
||||||
|
/////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getCommandName() {
|
||||||
|
return s_name;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Long getInstanceId() {
|
||||||
|
return getId();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public long getEntityOwnerId() {
|
||||||
|
|
||||||
|
SnapshotPolicy policy = _entityMgr.findById(SnapshotPolicy.class, getId());
|
||||||
|
if (policy == null) {
|
||||||
|
throw new InvalidParameterValueException("Invalid snapshot policy id was provided");
|
||||||
|
}
|
||||||
|
Volume volume = _responseGenerator.findVolumeById(policy.getVolumeId());
|
||||||
|
if (volume == null) {
|
||||||
|
throw new InvalidParameterValueException("Snapshot policy's volume id doesnt exist");
|
||||||
|
}else{
|
||||||
|
return volume.getAccountId();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getEventType() {
|
||||||
|
return EventTypes.EVENT_SNAPSHOT_POLICY_UPDATE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getEventDescription() {
|
||||||
|
StringBuilder desc = new StringBuilder("Updating snapshot policy: ");
|
||||||
|
desc.append(getId());
|
||||||
|
return desc.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void execute() {
|
||||||
|
CallContext.current().setEventDetails("SnapshotPolicy Id: " + getId());
|
||||||
|
SnapshotPolicy result = _snapshotService.updateSnapshotPolicy(this);
|
||||||
|
if (result != null) {
|
||||||
|
SnapshotPolicyResponse response = _responseGenerator.createSnapshotPolicyResponse(result);
|
||||||
|
response.setResponseName(getCommandName());
|
||||||
|
this.setResponseObject(response);
|
||||||
|
} else {
|
||||||
|
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to update snapshot policy");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void checkUuid() {
|
||||||
|
if (getCustomId() != null) {
|
||||||
|
_uuidMgr.checkUuid(getCustomId(), SnapshotPolicy.class);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -79,6 +79,7 @@ createSnapshot=15
|
|||||||
listSnapshots=15
|
listSnapshots=15
|
||||||
deleteSnapshot=15
|
deleteSnapshot=15
|
||||||
createSnapshotPolicy=15
|
createSnapshotPolicy=15
|
||||||
|
updateSnapshotPolicy=15
|
||||||
deleteSnapshotPolicies=15
|
deleteSnapshotPolicies=15
|
||||||
listSnapshotPolicies=15
|
listSnapshotPolicies=15
|
||||||
revertSnapshot=15
|
revertSnapshot=15
|
||||||
|
|||||||
@ -41,4 +41,6 @@ public interface SnapshotPolicyDao extends GenericDao<SnapshotPolicyVO, Long> {
|
|||||||
List<SnapshotPolicyVO> listActivePolicies();
|
List<SnapshotPolicyVO> listActivePolicies();
|
||||||
|
|
||||||
SnapshotPolicyVO findOneByVolume(long volumeId);
|
SnapshotPolicyVO findOneByVolume(long volumeId);
|
||||||
|
|
||||||
|
Pair<List<SnapshotPolicyVO>, Integer> listAndCountById(long id, boolean display, Filter filter);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -36,6 +36,7 @@ public class SnapshotPolicyDaoImpl extends GenericDaoBase<SnapshotPolicyVO, Long
|
|||||||
private final SearchBuilder<SnapshotPolicyVO> VolumeIdSearch;
|
private final SearchBuilder<SnapshotPolicyVO> VolumeIdSearch;
|
||||||
private final SearchBuilder<SnapshotPolicyVO> VolumeIdIntervalSearch;
|
private final SearchBuilder<SnapshotPolicyVO> VolumeIdIntervalSearch;
|
||||||
private final SearchBuilder<SnapshotPolicyVO> ActivePolicySearch;
|
private final SearchBuilder<SnapshotPolicyVO> ActivePolicySearch;
|
||||||
|
private final SearchBuilder<SnapshotPolicyVO> SnapshotPolicySearch;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SnapshotPolicyVO findOneByVolumeInterval(long volumeId, IntervalType intvType) {
|
public SnapshotPolicyVO findOneByVolumeInterval(long volumeId, IntervalType intvType) {
|
||||||
@ -79,6 +80,14 @@ public class SnapshotPolicyDaoImpl extends GenericDaoBase<SnapshotPolicyVO, Long
|
|||||||
return searchAndCount(sc, filter);
|
return searchAndCount(sc, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Pair<List<SnapshotPolicyVO>, Integer> listAndCountById(long id, boolean display, Filter filter){
|
||||||
|
SearchCriteria<SnapshotPolicyVO> sc = SnapshotPolicySearch.create();
|
||||||
|
sc.setParameters("id", id);
|
||||||
|
sc.setParameters("display", display);
|
||||||
|
return searchAndCount(sc, filter);
|
||||||
|
}
|
||||||
|
|
||||||
protected SnapshotPolicyDaoImpl() {
|
protected SnapshotPolicyDaoImpl() {
|
||||||
VolumeIdSearch = createSearchBuilder();
|
VolumeIdSearch = createSearchBuilder();
|
||||||
VolumeIdSearch.and("volumeId", VolumeIdSearch.entity().getVolumeId(), SearchCriteria.Op.EQ);
|
VolumeIdSearch.and("volumeId", VolumeIdSearch.entity().getVolumeId(), SearchCriteria.Op.EQ);
|
||||||
@ -94,6 +103,11 @@ public class SnapshotPolicyDaoImpl extends GenericDaoBase<SnapshotPolicyVO, Long
|
|||||||
ActivePolicySearch = createSearchBuilder();
|
ActivePolicySearch = createSearchBuilder();
|
||||||
ActivePolicySearch.and("active", ActivePolicySearch.entity().isActive(), SearchCriteria.Op.EQ);
|
ActivePolicySearch.and("active", ActivePolicySearch.entity().isActive(), SearchCriteria.Op.EQ);
|
||||||
ActivePolicySearch.done();
|
ActivePolicySearch.done();
|
||||||
|
|
||||||
|
SnapshotPolicySearch = createSearchBuilder();
|
||||||
|
SnapshotPolicySearch.and("id", SnapshotPolicySearch.entity().getId(), SearchCriteria.Op.EQ);
|
||||||
|
SnapshotPolicySearch.and("display", SnapshotPolicySearch.entity().isDisplay(), SearchCriteria.Op.EQ);
|
||||||
|
SnapshotPolicySearch.done();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@ -1251,6 +1251,7 @@ public class ApiResponseHelper implements ResponseGenerator {
|
|||||||
return ApiDBUtils.findVolumeById(volumeId);
|
return ApiDBUtils.findVolumeById(volumeId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Account findAccountByNameDomain(String accountName, Long domainId) {
|
public Account findAccountByNameDomain(String accountName, Long domainId) {
|
||||||
return ApiDBUtils.findAccountByNameDomain(accountName, domainId);
|
return ApiDBUtils.findAccountByNameDomain(accountName, domainId);
|
||||||
|
|||||||
@ -37,6 +37,7 @@ import javax.crypto.spec.SecretKeySpec;
|
|||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import javax.naming.ConfigurationException;
|
import javax.naming.ConfigurationException;
|
||||||
|
|
||||||
|
import org.apache.cloudstack.api.command.user.snapshot.UpdateSnapshotPolicyCmd;
|
||||||
import org.apache.commons.codec.binary.Base64;
|
import org.apache.commons.codec.binary.Base64;
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
@ -2771,8 +2772,9 @@ public class ManagementServerImpl extends ManagerBase implements ManagementServe
|
|||||||
cmdList.add(RevokeSecurityGroupEgressCmd.class);
|
cmdList.add(RevokeSecurityGroupEgressCmd.class);
|
||||||
cmdList.add(RevokeSecurityGroupIngressCmd.class);
|
cmdList.add(RevokeSecurityGroupIngressCmd.class);
|
||||||
cmdList.add(CreateSnapshotCmd.class);
|
cmdList.add(CreateSnapshotCmd.class);
|
||||||
cmdList.add(CreateSnapshotPolicyCmd.class);
|
|
||||||
cmdList.add(DeleteSnapshotCmd.class);
|
cmdList.add(DeleteSnapshotCmd.class);
|
||||||
|
cmdList.add(CreateSnapshotPolicyCmd.class);
|
||||||
|
cmdList.add(UpdateSnapshotPolicyCmd.class);
|
||||||
cmdList.add(DeleteSnapshotPoliciesCmd.class);
|
cmdList.add(DeleteSnapshotPoliciesCmd.class);
|
||||||
cmdList.add(ListSnapshotPoliciesCmd.class);
|
cmdList.add(ListSnapshotPoliciesCmd.class);
|
||||||
cmdList.add(ListSnapshotsCmd.class);
|
cmdList.add(ListSnapshotsCmd.class);
|
||||||
|
|||||||
@ -26,6 +26,7 @@ import javax.ejb.Local;
|
|||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import javax.naming.ConfigurationException;
|
import javax.naming.ConfigurationException;
|
||||||
|
|
||||||
|
import org.apache.cloudstack.api.command.user.snapshot.UpdateSnapshotPolicyCmd;
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@ -271,6 +272,27 @@ public class SnapshotManagerImpl extends ManagerBase implements SnapshotManager,
|
|||||||
return snapshotStrategy.revertSnapshot(snapshotId);
|
return snapshotStrategy.revertSnapshot(snapshotId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@ActionEvent(eventType = EventTypes.EVENT_SNAPSHOT_POLICY_UPDATE, eventDescription = "updating snapshot policy", async = true)
|
||||||
|
public SnapshotPolicy updateSnapshotPolicy(UpdateSnapshotPolicyCmd cmd) {
|
||||||
|
|
||||||
|
Long id = cmd.getId();
|
||||||
|
String customUUID = cmd.getCustomId();
|
||||||
|
Boolean display = cmd.getDisplay();
|
||||||
|
|
||||||
|
SnapshotPolicyVO policyVO = _snapshotPolicyDao.findById(id);
|
||||||
|
if(display != null)
|
||||||
|
policyVO.setDisplay(display);
|
||||||
|
|
||||||
|
if(customUUID != null)
|
||||||
|
policyVO.setUuid(customUUID);
|
||||||
|
|
||||||
|
_snapshotPolicyDao.update(id, policyVO);
|
||||||
|
|
||||||
|
return policyVO;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@DB
|
@DB
|
||||||
@ActionEvent(eventType = EventTypes.EVENT_SNAPSHOT_CREATE, eventDescription = "creating snapshot", async = true)
|
@ActionEvent(eventType = EventTypes.EVENT_SNAPSHOT_CREATE, eventDescription = "creating snapshot", async = true)
|
||||||
@ -723,12 +745,24 @@ public class SnapshotManagerImpl extends ManagerBase implements SnapshotManager,
|
|||||||
public Pair<List<? extends SnapshotPolicy>, Integer> listPoliciesforVolume(ListSnapshotPoliciesCmd cmd) {
|
public Pair<List<? extends SnapshotPolicy>, Integer> listPoliciesforVolume(ListSnapshotPoliciesCmd cmd) {
|
||||||
Long volumeId = cmd.getVolumeId();
|
Long volumeId = cmd.getVolumeId();
|
||||||
boolean display = cmd.isDisplay();
|
boolean display = cmd.isDisplay();
|
||||||
|
Long id = cmd.getId();
|
||||||
|
Pair<List<SnapshotPolicyVO>, Integer> result = null;
|
||||||
|
// TODO - Have a better way of doing this.
|
||||||
|
if(id != null){
|
||||||
|
result = _snapshotPolicyDao.listAndCountById(id, display, null);
|
||||||
|
if(result != null && result.first() != null && !result.first().isEmpty()){
|
||||||
|
SnapshotPolicyVO snapshotPolicy = result.first().get(0);
|
||||||
|
volumeId = snapshotPolicy.getId();
|
||||||
|
}
|
||||||
|
}
|
||||||
VolumeVO volume = _volsDao.findById(volumeId);
|
VolumeVO volume = _volsDao.findById(volumeId);
|
||||||
if (volume == null) {
|
if (volume == null) {
|
||||||
throw new InvalidParameterValueException("Unable to find a volume with id " + volumeId);
|
throw new InvalidParameterValueException("Unable to find a volume with id " + volumeId);
|
||||||
}
|
}
|
||||||
_accountMgr.checkAccess(CallContext.current().getCallingAccount(), null, true, volume);
|
_accountMgr.checkAccess(CallContext.current().getCallingAccount(), null, true, volume);
|
||||||
Pair<List<SnapshotPolicyVO>, Integer> result = _snapshotPolicyDao.listAndCountByVolumeId(volumeId, display);
|
if(result != null)
|
||||||
|
return new Pair<List<? extends SnapshotPolicy>, Integer>(result.first(), result.second());
|
||||||
|
result = _snapshotPolicyDao.listAndCountByVolumeId(volumeId, display);
|
||||||
return new Pair<List<? extends SnapshotPolicy>, Integer>(result.first(), result.second());
|
return new Pair<List<? extends SnapshotPolicy>, Integer>(result.first(), result.second());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user