com.azure.resourcemanager.storage.implementation.BlobServiceEncryptionStatusImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.storage.implementation;
import com.azure.resourcemanager.storage.models.EncryptionService;
import com.azure.resourcemanager.storage.models.EncryptionServices;
import com.azure.resourcemanager.storage.models.StorageService;
/** Implementation of StorageAccountEncryptionStatus for Blob service. */
class BlobServiceEncryptionStatusImpl extends StorageAccountEncryptionStatusImpl {
BlobServiceEncryptionStatusImpl(EncryptionServices encryptionServices) {
super(encryptionServices);
}
@Override
public StorageService storageService() {
return StorageService.BLOB;
}
@Override
protected EncryptionService encryptionService() {
if (super.encryptionServices == null) {
return null;
} else {
return super.encryptionServices.blob();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy