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