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

com.foreach.imageserver.dto.ImageConvertResultDto Maven / Gradle / Ivy

The newest version!
package com.foreach.imageserver.dto;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.Collection;
import java.util.Map;

/**
 * Result object of an image conversion call
 *
 * @author Wouter Van Hecke
 * @since 5.0.0
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class ImageConvertResultDto
{
	/**
	 * The total number of transforms in this object
	 */
	private int total;

	/**
	 * A collection that contains all the pagenumbers / scenenumbers that were rendered
	 */
	private Collection pages;

	/**
	 * A collection with all the keys in this object
	 */
	private Collection keys;

	/**
	 * A collection of converted images
	 */
	private Map transforms;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy