org.osgl.storage.impl.FileObject 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 FileObject extends StorageObject {
FileObject(String key, FileSystemService fileSystemService) {
super(key, fileSystemService);
}
}