software.amazon.smithy.openapi.model.ExternalDocumentation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smithy-openapi Show documentation
Show all versions of smithy-openapi Show documentation
This module contains support for converting a Smithy model to OpenAPI.
/*
* Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package software.amazon.smithy.openapi.model;
import java.util.Optional;
import software.amazon.smithy.model.node.Node;
import software.amazon.smithy.model.node.ObjectNode;
import software.amazon.smithy.utils.SmithyBuilder;
import software.amazon.smithy.utils.ToSmithyBuilder;
public final class ExternalDocumentation extends Component implements ToSmithyBuilder {
private final String description;
private final String url;
private ExternalDocumentation(Builder builder) {
super(builder);
this.url = SmithyBuilder.requiredState("url", builder.url);
this.description = builder.description;
}
public static Builder builder() {
return new Builder();
}
public Optional getDescription() {
return Optional.ofNullable(description);
}
public String getUrl() {
return url;
}
@Override
public Builder toBuilder() {
return builder()
.extensions(getExtensions())
.description(description)
.url(url);
}
@Override
protected ObjectNode.Builder createNodeBuilder() {
return Node.objectNodeBuilder()
.withOptionalMember("description", getDescription().map(Node::from))
.withMember("url", url);
}
public static final class Builder extends Component.Builder {
private String description;
private String url;
private Builder() {}
@Override
public ExternalDocumentation build() {
return new ExternalDocumentation(this);
}
public Builder description(String description) {
this.description = description;
return this;
}
public Builder url(String url) {
this.url = url;
return this;
}
}
}