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

com.windowsazure.samples.internal.web.XmlHttpResult 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.

The newest version!
package com.windowsazure.samples.internal.web;

import com.windowsazure.samples.HttpStatusCode;


public class XmlHttpResult extends HttpResult {
	
	public XmlHttpResult(HttpMethod method, HttpStatusCode statusCode, HttpHeader headers, String body) {
		super(method, statusCode, headers, body);
	}
	
	public XmlHttpResult getEmptyResult() {
		return new XmlHttpResult(getMethod(), getStatusCode(), getHeaders(), null);
	}
	
	public String getXmlString() {
		return xmlString;
	}
	
	public void setXmlString(String xmlString) {
		this.xmlString = xmlString;
	}
	
	private String xmlString;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy