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

io.muserver.openapi.ExternalDocumentationObject Maven / Gradle / Ivy

The newest version!
package io.muserver.openapi;

import java.io.IOException;
import java.io.Writer;
import java.net.URI;

import static io.muserver.Mutils.notNull;
import static io.muserver.openapi.Jsonizer.append;

/**
 * @see ExternalDocumentationObjectBuilder
 */
public class ExternalDocumentationObject implements JsonWriter {
    private final String description;
    private final URI url;

    ExternalDocumentationObject(String description, URI url) {
        notNull("url", url);
        this.description = description;
        this.url = url;
    }

    @Override
    public void writeJson(Writer writer) throws IOException {
        writer.write('{');
        boolean isFirst = true;
        isFirst = append(writer, "description", description, isFirst);
        isFirst = append(writer, "url", url, isFirst);
        writer.write('}');
    }

    /**
     * @return the value described by {@link ExternalDocumentationObjectBuilder#withDescription}
     */
    public String description() {
        return description;
    }

    /**
      @return the value described by {@link ExternalDocumentationObjectBuilder#withUrl}
     */
    public URI url() {
        return url;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy