com.dynamicpdf.api.PdfTextResponse 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;
import java.util.List;
/**
* Represents the pdf text response.
*/
public class PdfTextResponse extends JsonResponse {
private List content;
/**
* Initializes a new instance of the PdfTextResponse
class.
*/
public PdfTextResponse() {
super();
}
/**
* Initializes a new instance of the PdfResponse
class.
* @param jsonContent The json content
*/
public PdfTextResponse(String jsonContent) {
super(jsonContent);
}
/**
* Gets the collection of PdfContent.
* @return The collection of PdfContent.
*/
public List getContent() {
return content;
}
private void setContent(List value) {
content = value;
}
}