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

nl.vpro.persistence.DurationToLongConverter Maven / Gradle / Ivy

There is a newer version: 5.3.2
Show newest version
package nl.vpro.persistence;

import java.time.Duration;

import jakarta.persistence.AttributeConverter;
import jakarta.persistence.Converter;

/**
 * @author Michiel Meeuwissen
 * @since 0.47
 */
@Converter
public class DurationToLongConverter implements AttributeConverter {

    @Override
    public Long convertToDatabaseColumn(Duration duration) {
        return duration == null ? null : duration.toMillis();
    }

    @Override
    public Duration convertToEntityAttribute(Long timestamp) {
        return timestamp == null ? null : Duration.ofMillis(timestamp);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy