com.alon.spring.crud.resource.dto.InputDtoConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-crud-base Show documentation
Show all versions of spring-crud-base Show documentation
Projeto base para criação de serviços e recusos de CRUD com Spring Data JPA.
package com.alon.spring.crud.resource.dto;
/**
*
* @param Input to be converted
* @param Result of conversion
*/
public interface InputDtoConverter {
public R convert(I input);
}