com.alon.spring.crud.repository.specification.converter.DefaultConverter 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.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.alon.spring.crud.repository.specification.converter;
/**
*
* @author paulo
*/
public class DefaultConverter implements DecoderConverter {
private static DefaultConverter INSTANCE;
@Override
public String convert(String value) throws Throwable {
return value;
}
public static DefaultConverter getInstance() {
if (INSTANCE == null)
INSTANCE = new DefaultConverter();
return INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy