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

io.dropwizard.jersey.jsr310.ZoneIdParam Maven / Gradle / Ivy

package io.dropwizard.jersey.jsr310;

import io.dropwizard.jersey.params.AbstractParam;
import org.checkerframework.checker.nullness.qual.Nullable;

import java.time.ZoneId;

/**
 * A parameter encapsulating time-zone IDs, such as Europe/Paris.
 * All non-parsable values will return a {@code 400 Bad Request} response.
 *
 * @see ZoneId
 */
public class ZoneIdParam extends AbstractParam {
    public ZoneIdParam(@Nullable final String input) {
        super(input);
    }

    @Override
    protected ZoneId parse(@Nullable final String input) throws Exception {
        return ZoneId.of(input);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy