software.aws.awsprototypingsdk.openapigateway.SmithyServiceName Maven / Gradle / Ivy
Show all versions of open-api-gateway Show documentation
package software.aws.awsprototypingsdk.openapigateway;
/**
* (experimental) Represents a fully qualified name of a Smithy service.
*
* @see https://awslabs.github.io/smithy/2.0/spec/service-types.html
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.82.0 (build 2d2ddd7)", date = "2023-08-15T05:38:04.790Z")
@software.amazon.jsii.Jsii(module = software.aws.awsprototypingsdk.openapigateway.$Module.class, fqn = "@aws-prototyping-sdk/open-api-gateway.SmithyServiceName")
@software.amazon.jsii.Jsii.Proxy(SmithyServiceName.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface SmithyServiceName extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) The service namespace.
*
* Nested namespaces are separated by '.', for example com.company
*
* @see https://awslabs.github.io/smithy/2.0/spec/model.html#shape-id
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getNamespace();
/**
* (experimental) The service name.
*
* Should be PascalCase, for example HelloService
*
* @see https://awslabs.github.io/smithy/2.0/spec/model.html#shape-id
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getServiceName();
/**
* @return a {@link Builder} of {@link SmithyServiceName}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link SmithyServiceName}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String namespace;
java.lang.String serviceName;
/**
* Sets the value of {@link SmithyServiceName#getNamespace}
* @param namespace The service namespace. This parameter is required.
* Nested namespaces are separated by '.', for example com.company
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder namespace(java.lang.String namespace) {
this.namespace = namespace;
return this;
}
/**
* Sets the value of {@link SmithyServiceName#getServiceName}
* @param serviceName The service name. This parameter is required.
* Should be PascalCase, for example HelloService
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder serviceName(java.lang.String serviceName) {
this.serviceName = serviceName;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link SmithyServiceName}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public SmithyServiceName build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link SmithyServiceName}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements SmithyServiceName {
private final java.lang.String namespace;
private final java.lang.String serviceName;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.namespace = software.amazon.jsii.Kernel.get(this, "namespace", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.serviceName = software.amazon.jsii.Kernel.get(this, "serviceName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.namespace = java.util.Objects.requireNonNull(builder.namespace, "namespace is required");
this.serviceName = java.util.Objects.requireNonNull(builder.serviceName, "serviceName is required");
}
@Override
public final java.lang.String getNamespace() {
return this.namespace;
}
@Override
public final java.lang.String getServiceName() {
return this.serviceName;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("namespace", om.valueToTree(this.getNamespace()));
data.set("serviceName", om.valueToTree(this.getServiceName()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@aws-prototyping-sdk/open-api-gateway.SmithyServiceName"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SmithyServiceName.Jsii$Proxy that = (SmithyServiceName.Jsii$Proxy) o;
if (!namespace.equals(that.namespace)) return false;
return this.serviceName.equals(that.serviceName);
}
@Override
public final int hashCode() {
int result = this.namespace.hashCode();
result = 31 * result + (this.serviceName.hashCode());
return result;
}
}
}