org.everit.json.schema.internal.IPV4Validator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of everit-json-schema Show documentation
Show all versions of everit-json-schema Show documentation
Implementation of the JSON Schema Core Draft v4 specification built with the org.json API
package org.everit.json.schema.internal;
import org.apache.commons.validator.routines.InetAddressValidator;
import org.everit.json.schema.FormatValidator;
import java.util.Optional;
/**
* Implementation of the "ipv4" format value.
*/
public class IPV4Validator extends IPAddressValidator implements FormatValidator {
@Override
public Optional validate(final String subject) {
return InetAddressValidator.getInstance().isValidInet4Address(subject) ?
Optional.empty() :
Optional.of(String.format("[%s] is not a valid ipv4 address", subject));
}
@Override
public String formatName() {
return "ipv4";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy