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

org.ameba.mapping.LocalDateTimeConverter Maven / Gradle / Ivy

There is a newer version: 4.1.0-jdk17
Show newest version
/*
 * Copyright 2015-2024 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.ameba.mapping;

import com.github.dozermapper.core.DozerConverter;

import java.time.LocalDateTime;

/**
 * A LocalDateTimeConverter is a Dozer converter to recognize java.time.LocalDateTime types. No conversion is applied,
 * but a type converter must be configured within Dozer, to accept Java 1.8 types. As soon as issue #172 https://github.com/DozerMapper/dozer/issues/172
 * is closed, this implementation can be deleted.
 *
 * @author Heiko Scherrer
 */
public class LocalDateTimeConverter extends DozerConverter {

    /**
     * {@inheritDoc}
     */
    public LocalDateTimeConverter() {
        super(LocalDateTime.class, LocalDateTime.class);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public LocalDateTime convertTo(LocalDateTime source, LocalDateTime destination) {
        return source;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public LocalDateTime convertFrom(LocalDateTime source, LocalDateTime destination) {
        return convertTo(source, destination);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy