forked from loafle/openapi-generator-original
44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
package {{apiPackage}};
|
|
|
|
import com.sun.jersey.core.spi.component.ComponentContext;
|
|
import com.sun.jersey.spi.inject.Injectable;
|
|
import com.sun.jersey.spi.inject.PerRequestTypeInjectableProvider;
|
|
|
|
import javax.ws.rs.QueryParam;
|
|
import javax.ws.rs.WebApplicationException;
|
|
import javax.ws.rs.core.Context;
|
|
import javax.ws.rs.core.Response;
|
|
import javax.ws.rs.core.Response.Status;
|
|
import javax.ws.rs.core.UriInfo;
|
|
import javax.ws.rs.ext.Provider;
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
@Provider
|
|
public class LocalDateTimeProvider extends PerRequestTypeInjectableProvider<QueryParam, LocalDateTime> {
|
|
private final UriInfo uriInfo;
|
|
|
|
public LocalDateTimeProvider(@Context UriInfo uriInfo) {
|
|
super(LocalDateTime.class);
|
|
this.uriInfo = uriInfo;
|
|
}
|
|
|
|
@Override
|
|
public Injectable<LocalDateTime> getInjectable(final ComponentContext cc, final QueryParam a) {
|
|
return new Injectable<LocalDateTime>() {
|
|
@Override
|
|
public LocalDateTime getValue() {
|
|
final List<String> values = uriInfo.getQueryParameters().get(a.value());
|
|
|
|
if (values == null || values.isEmpty())
|
|
return null;
|
|
if (values.size() > 1) {
|
|
throw new WebApplicationException(Response.status(Status.BAD_REQUEST).
|
|
entity(a.value() + " cannot contain multiple values").build());
|
|
}
|
|
|
|
return LocalDateTime.parse(values.get(0));
|
|
}
|
|
};
|
|
}
|
|
} |