com.dynamicpdf.api.JsonResponse 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 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;
}
}