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

io.edurt.datacap.service.converter.PropertiesConverter Maven / Gradle / Ivy

There is a newer version: 2024.4.0
Show newest version
package io.edurt.datacap.service.converter;

import io.edurt.datacap.common.utils.JsonUtils;

import javax.persistence.AttributeConverter;

import java.util.Properties;

public class PropertiesConverter
        implements AttributeConverter
{
    @Override
    public String convertToDatabaseColumn(Properties properties)
    {
        return JsonUtils.toJSON(properties);
    }

    @Override
    public Properties convertToEntityAttribute(String s)
    {
        return JsonUtils.toProperties(s);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy