blob: 55d966d38d266c4f40af237ac9d609346f91df06 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.syncope.common.rest.api;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.time.LocalDateTime;
import java.time.OffsetDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
import javax.ws.rs.ext.ParamConverter;
import javax.ws.rs.ext.ParamConverterProvider;
public class DateParamConverterProvider implements ParamConverterProvider {
protected static class OffsetDateTimeParamConverter implements ParamConverter<OffsetDateTime> {
@Override
public OffsetDateTime fromString(final String value) {
try {
return OffsetDateTime.parse(value, DateTimeFormatter.ISO_OFFSET_DATE_TIME);
} catch (DateTimeParseException e) {
throw new IllegalArgumentException("Unparsable date: " + value, e);
}
}
@Override
public String toString(final OffsetDateTime value) {
return DateTimeFormatter.ISO_OFFSET_DATE_TIME.format(value);
}
}
protected static class LocalDateTimeParamConverter implements ParamConverter<LocalDateTime> {
@Override
public LocalDateTime fromString(final String value) {
try {
return LocalDateTime.parse(value, DateTimeFormatter.ISO_LOCAL_DATE_TIME);
} catch (DateTimeParseException e) {
throw new IllegalArgumentException("Unparsable date: " + value, e);
}
}
@Override
public String toString(final LocalDateTime value) {
return DateTimeFormatter.ISO_LOCAL_DATE_TIME.format(value);
}
}
@Override
@SuppressWarnings("unchecked")
public <T> ParamConverter<T> getConverter(
final Class<T> rawType, final Type genericType, final Annotation[] annotations) {
if (OffsetDateTime.class.equals(rawType)) {
return (ParamConverter<T>) new OffsetDateTimeParamConverter();
}
if (LocalDateTime.class.equals(rawType)) {
return (ParamConverter<T>) new LocalDateTimeParamConverter();
}
return null;
}
}