
com.windowsazure.samples.blob.data.BlobData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa4azure Show documentation
Show all versions of jpa4azure Show documentation
jpa4azure, implements a subset of the JPA specification using Azure Storage for pesisting beans. see http://jpa4azure.codeplex.com for more information.
package com.windowsazure.samples.blob.data;
public abstract class BlobData {
public String getCacheControl() {
return cacheControl;
}
public String getContentEncoding() {
return contentEncoding;
}
public String getContentLanguage() {
return contentLanguage;
}
public String getContentMd5() {
return contentMd5;
}
public abstract Integer GetContentLength();
public String getContentType() {
return contentType;
}
public abstract void decode(String serverData);
public abstract String encode();
protected String cacheControl;
protected String contentEncoding;
protected String contentLanguage;
protected String contentMd5;
protected String contentType;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy