
io.muserver.openapi.LicenseObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mu-server Show documentation
Show all versions of mu-server Show documentation
A simple but powerful web server framework
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 LicenseObjectBuilder
*/
public class LicenseObject implements JsonWriter {
private final String name;
private final URI url;
LicenseObject(String name, URI url) {
notNull("name", name);
this.name = name;
this.url = url;
}
@Override
public void writeJson(Writer writer) throws IOException {
writer.write('{');
boolean isFirst = true;
isFirst = append(writer, "name", name, isFirst);
isFirst = append(writer, "url", url, isFirst);
writer.write('}');
}
/**
* @return the value described by {@link LicenseObjectBuilder#withName}
*/
public String name() {
return name;
}
/**
@return the value described by {@link LicenseObjectBuilder#withUrl}
*/
public URI url() {
return url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy