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

com.dimajix.shaded.everit.schema.internal.URIReferenceFormatValidator Maven / Gradle / Ivy

There is a newer version: 1.2.0-synapse3.3-spark3.3-hadoop3.3
Show newest version
package com.dimajix.shaded.everit.schema.internal;

import static java.lang.String.format;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.Optional;

import com.dimajix.shaded.everit.schema.FormatValidator;

public class URIReferenceFormatValidator implements FormatValidator {

    @Override public Optional validate(String subject) {
        try {
            new URI(subject);
            return Optional.empty();
        } catch (URISyntaxException e) {
            return failure(subject);
        }
    }

    protected Optional failure(String subject) {
        return Optional.of(format("[%s] is not a valid URI reference", subject));
    }

    @Override public String formatName() {
        return "uri-reference";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy