org.ldaptive.beans.spring.convert.StringToZonedDateTimeConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ldaptive-beans Show documentation
Show all versions of ldaptive-beans Show documentation
Mapping, persistence, and code generation API for reading and writing POJOs to an LDAP directory
The newest version!
/* See LICENSE for licensing and NOTICE for copyright. */
package org.ldaptive.beans.spring.convert;
import java.time.ZonedDateTime;
import org.ldaptive.transcode.GeneralizedTimeValueTranscoder;
import org.springframework.core.convert.converter.Converter;
/**
* Convert a String to a {@link ZonedDateTime}.
*
* @author Middleware Services
*/
public class StringToZonedDateTimeConverter implements Converter
{
@Override
public ZonedDateTime convert(final String s)
{
final GeneralizedTimeValueTranscoder transcoder = new GeneralizedTimeValueTranscoder();
return transcoder.decodeStringValue(s);
}
}