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