com.azure.resourcemanager.storage.implementation.LegalHoldImpl 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.resources.fluentcore.model.implementation.WrapperImpl;
import com.azure.resourcemanager.storage.StorageManager;
import com.azure.resourcemanager.storage.models.LegalHold;
import com.azure.resourcemanager.storage.fluent.models.LegalHoldInner;
import java.util.List;
class LegalHoldImpl extends WrapperImpl implements LegalHold {
private final StorageManager manager;
LegalHoldImpl(LegalHoldInner inner, StorageManager manager) {
super(inner);
this.manager = manager;
}
@Override
public StorageManager manager() {
return this.manager;
}
@Override
public Boolean hasLegalHold() {
return this.innerModel().hasLegalHold();
}
@Override
public List tags() {
return this.innerModel().tags();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy