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

com.windowsazure.samples.blob.BlockStatus 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;

public enum BlockStatus {
	COMMITTED("CommittedBlocks"),
	UNCOMMITTED("UncommittedBlocks");
	
	public String getXmlNodeName() {
		return xmlNodeName;
	}
	
	private BlockStatus(String xmlNodeName) {
		this.xmlNodeName = xmlNodeName;
	}
	
	private String xmlNodeName;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy