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

com.dynamicpdf.api.XmlResponse Maven / Gradle / Ivy

Go to download

A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy