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

com.alon.spring.crud.repository.specification.converter.DefaultConverter 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.repository.specification.converter;

public class DefaultConverter implements DecoderConverter {
    
    private static DefaultConverter INSTANCE;

    @Override
    public String convert(String value) {
        return value;
    }
    
    public static DefaultConverter getInstance() {
        if (INSTANCE == null)
            INSTANCE = new DefaultConverter();
        
        return INSTANCE;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy