use of com.zimbra.soap.admin.type.VolumeInfo in project zm-mailbox by Zimbra.
the class VolumeCLI method getCurrentVolumes.
private void getCurrentVolumes() throws SoapFaultException, IOException, ServiceException, HttpException {
GetAllVolumesRequest req = new GetAllVolumesRequest();
auth(auth);
GetAllVolumesResponse all = JaxbUtil.elementToJaxb(getTransport().invokeWithoutSession(JaxbUtil.jaxbToElement(req)));
for (VolumeInfo vol : all.getVolumes()) {
if (vol.isCurrent()) {
print(vol);
}
}
}
use of com.zimbra.soap.admin.type.VolumeInfo in project zm-mailbox by Zimbra.
the class ModifyVolume method handle.
private ModifyVolumeResponse handle(ModifyVolumeRequest req, Map<String, Object> ctx) throws ServiceException {
ZimbraSoapContext zsc = getZimbraSoapContext(ctx);
checkRight(zsc, ctx, Provisioning.getInstance().getLocalServer(), Admin.R_manageVolume);
VolumeManager mgr = VolumeManager.getInstance();
Volume.Builder builder = Volume.builder(mgr.getVolume(req.getId()));
VolumeInfo vol = req.getVolume();
if (vol == null) {
throw ServiceException.INVALID_REQUEST("must specify a volume Element", null);
}
StoreManager storeManager = StoreManager.getInstance();
if (storeManager.supports(StoreManager.StoreFeature.CUSTOM_STORE_API, String.valueOf(vol.getId()))) {
throw ServiceException.INVALID_REQUEST("Operation unsupported, use zxsuite to edit this volume", null);
}
if (vol.getType() > 0) {
builder.setType(vol.getType());
}
if (vol.getName() != null) {
builder.setName(vol.getName());
}
if (vol.getRootPath() != null) {
builder.setPath(vol.getRootPath(), true);
}
if (vol.getCompressBlobs() != null) {
builder.setCompressBlobs(vol.getCompressBlobs());
}
if (vol.getCompressionThreshold() > 0) {
builder.setCompressionThreshold(vol.getCompressionThreshold());
}
mgr.update(builder.build());
return new ModifyVolumeResponse();
}
Aggregations