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

com.dynamicpdf.api.JsonResponse 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 base class for json response.
 */

public abstract class JsonResponse extends Response {

	private String jsonContent;

	JsonResponse() {
	}

	JsonResponse(String jsonContent) {
		this.jsonContent = jsonContent;
	}

	/**
	 * Gets the json content.
	 * @return The json content.
	 */
	public String getJsonContent() {
		return jsonContent;
	}

	/**
	 * Sets the json content.
	 * @param value The json content.
	 */
	private void setJsonContent(String value) {
		jsonContent = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy