package io.dropwizard.jersey.jsr310;

import io.dropwizard.jersey.params.AbstractParam;

import javax.annotation.Nullable;
import java.time.Instant;

A parameter encapsulating instant values in milliseconds. All non-parsable values will return a 400 Bad Request response.
See Also:
/** * A parameter encapsulating instant values in milliseconds. All non-parsable * values will return a {@code 400 Bad Request} response. * * @see Instant */
public class InstantParam extends AbstractParam<Instant> { public InstantParam(@Nullable final String input) { super(input); } @Override protected Instant parse(@Nullable final String input) throws Exception { return Instant.ofEpochMilli(Long.parseLong(input)); } }