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

se.fortnox.reactivewizard.jaxrs.params.deserializing.IntegerNotNullDeserializer Maven / Gradle / Ivy

There is a newer version: 24.6.0
Show newest version
package se.fortnox.reactivewizard.jaxrs.params.deserializing;

/**
 * Deserializes integers, not allowing null.
 */
public class IntegerNotNullDeserializer extends NumberNotNullDeserializer {
    public IntegerNotNullDeserializer() {
        super(Integer::parseInt, "invalid.int");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy