All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.windowsazure.samples.blob.data.BlobData Maven / Gradle / Ivy

Go to download

jpa4azure, implements a subset of the JPA specification using Azure Storage for pesisting beans. see http://jpa4azure.codeplex.com for more information.

There is a newer version: 0.7
Show newest version
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