com.dynamicpdf.api.XmlResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamicpdf-api Show documentation
Show all versions of dynamicpdf-api Show documentation
A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.
package com.dynamicpdf.api;
/**
* Represents the xml response.
*/
public class XmlResponse extends Response {
private String content;
/**
* Initializes a new instance of the XmlResponse
class.
*/
public XmlResponse() {
}
/**
* Initializes a new instance of the XmlResponse
class.
*
* @param xmlContent The xml content of the response.
*/
public XmlResponse(String xmlContent) {
content = xmlContent;
}
/**
* Gets the xml content.
* @return The xml content.
*/
public String getContent() {
return content;
}
private void setContent(String value) {
content = value;
}
}