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

com.alon.spring.crud.resource.dto.EntityOutputConverter Maven / Gradle / Ivy

Go to download

Projeto base para criação de serviços e recusos de CRUD com Spring Data JPA.

There is a newer version: 3.0.0
Show newest version
package com.alon.spring.crud.resource.dto;

import org.springframework.stereotype.Component;

import com.alon.spring.crud.model.BaseEntity;

@Component
public class EntityOutputConverter implements OutputDtoConverter {

    @Override
    public I convert(I data) {
        return data;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy