org.osgl.storage.impl.AzureObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osgl-storage Show documentation
Show all versions of osgl-storage Show documentation
A simple storage service supports plugin varieties of implementations including Amazon S3
package org.osgl.storage.impl;
class AzureObject extends StorageObject {
AzureObject(String key, AzureService azureService) {
super(key, azureService);
}
}