com.dynamicpdf.api.ImageResponse 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 an image response.
*/
public class ImageResponse extends JsonResponse {
private List content;
/**
* Initializes a new instance of the ImageResponse
class.
*/
public ImageResponse() {
super();
}
/**
* Initializes a new instance of the ImageResponse
class.
* @param jsonContent The image content of the response.
*/
public ImageResponse(String jsonContent) {
super(jsonContent);
//content = JsonConvert.DeserializeObject > (super.getJsonContent());
}
/**
* Gets a collection of ImageInformation
.
* @return A collection of ImageInformation
.
*/
public List getContent() {
return content;
}
/**
* Sets a collection of ImageInformation
.
* @param value A collection of ImageInformation
.
*/
private void setContent(List value) {
content = value;
}
}