org.javaswift.joss.client.impl.ContainerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joss Show documentation
Show all versions of joss Show documentation
Java Client library for OpenStack Storage (Swift)
package org.javaswift.joss.client.impl;
import org.javaswift.joss.client.core.AbstractContainer;
import org.javaswift.joss.model.StoredObject;
public class ContainerImpl extends AbstractContainer {
public ContainerImpl(AccountImpl account, String name, boolean allowCaching) {
super(account, name, allowCaching);
}
@Override
public StoredObject getObject(String objectName) {
return new StoredObjectImpl(this, objectName, isAllowCaching());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy