io.github.cdklabs.cdk.appflow.SAPOdataConnectorProfileProps Maven / Gradle / Ivy
The newest version!
package io.github.cdklabs.cdk.appflow;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T07:35:38.270Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.appflow.$Module.class, fqn = "@cdklabs/cdk-appflow.SAPOdataConnectorProfileProps")
@software.amazon.jsii.Jsii.Proxy(SAPOdataConnectorProfileProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface SAPOdataConnectorProfileProps extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.cdk.appflow.ConnectorProfileProps {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getApplicationHostUrl();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getApplicationServicePath();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getClientNumber();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getLogonLanguage();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.appflow.SAPOdataBasicAuthSettings getBasicAuth() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.appflow.SAPOdataOAuthSettings getOAuth() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.Number getPortNumber() {
return null;
}
/**
* @return a {@link Builder} of {@link SAPOdataConnectorProfileProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link SAPOdataConnectorProfileProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String applicationHostUrl;
java.lang.String applicationServicePath;
java.lang.String clientNumber;
java.lang.String logonLanguage;
io.github.cdklabs.cdk.appflow.SAPOdataBasicAuthSettings basicAuth;
io.github.cdklabs.cdk.appflow.SAPOdataOAuthSettings oAuth;
java.lang.Number portNumber;
software.amazon.awscdk.services.kms.IKey key;
java.lang.String name;
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getApplicationHostUrl}
* @param applicationHostUrl the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder applicationHostUrl(java.lang.String applicationHostUrl) {
this.applicationHostUrl = applicationHostUrl;
return this;
}
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getApplicationServicePath}
* @param applicationServicePath the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder applicationServicePath(java.lang.String applicationServicePath) {
this.applicationServicePath = applicationServicePath;
return this;
}
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getClientNumber}
* @param clientNumber the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder clientNumber(java.lang.String clientNumber) {
this.clientNumber = clientNumber;
return this;
}
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getLogonLanguage}
* @param logonLanguage the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder logonLanguage(java.lang.String logonLanguage) {
this.logonLanguage = logonLanguage;
return this;
}
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getBasicAuth}
* @param basicAuth the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder basicAuth(io.github.cdklabs.cdk.appflow.SAPOdataBasicAuthSettings basicAuth) {
this.basicAuth = basicAuth;
return this;
}
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getOAuth}
* @param oAuth the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder oAuth(io.github.cdklabs.cdk.appflow.SAPOdataOAuthSettings oAuth) {
this.oAuth = oAuth;
return this;
}
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getPortNumber}
* @param portNumber the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder portNumber(java.lang.Number portNumber) {
this.portNumber = portNumber;
return this;
}
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getKey}
* @param key TODO: think if this should be here as not all connector profiles have that.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder key(software.amazon.awscdk.services.kms.IKey key) {
this.key = key;
return this;
}
/**
* Sets the value of {@link SAPOdataConnectorProfileProps#getName}
* @param name the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder name(java.lang.String name) {
this.name = name;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link SAPOdataConnectorProfileProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public SAPOdataConnectorProfileProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link SAPOdataConnectorProfileProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements SAPOdataConnectorProfileProps {
private final java.lang.String applicationHostUrl;
private final java.lang.String applicationServicePath;
private final java.lang.String clientNumber;
private final java.lang.String logonLanguage;
private final io.github.cdklabs.cdk.appflow.SAPOdataBasicAuthSettings basicAuth;
private final io.github.cdklabs.cdk.appflow.SAPOdataOAuthSettings oAuth;
private final java.lang.Number portNumber;
private final software.amazon.awscdk.services.kms.IKey key;
private final java.lang.String name;
/**
* 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.applicationHostUrl = software.amazon.jsii.Kernel.get(this, "applicationHostUrl", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.applicationServicePath = software.amazon.jsii.Kernel.get(this, "applicationServicePath", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.clientNumber = software.amazon.jsii.Kernel.get(this, "clientNumber", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.logonLanguage = software.amazon.jsii.Kernel.get(this, "logonLanguage", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.basicAuth = software.amazon.jsii.Kernel.get(this, "basicAuth", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.SAPOdataBasicAuthSettings.class));
this.oAuth = software.amazon.jsii.Kernel.get(this, "oAuth", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.SAPOdataOAuthSettings.class));
this.portNumber = software.amazon.jsii.Kernel.get(this, "portNumber", software.amazon.jsii.NativeType.forClass(java.lang.Number.class));
this.key = software.amazon.jsii.Kernel.get(this, "key", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.kms.IKey.class));
this.name = software.amazon.jsii.Kernel.get(this, "name", 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.applicationHostUrl = java.util.Objects.requireNonNull(builder.applicationHostUrl, "applicationHostUrl is required");
this.applicationServicePath = java.util.Objects.requireNonNull(builder.applicationServicePath, "applicationServicePath is required");
this.clientNumber = java.util.Objects.requireNonNull(builder.clientNumber, "clientNumber is required");
this.logonLanguage = java.util.Objects.requireNonNull(builder.logonLanguage, "logonLanguage is required");
this.basicAuth = builder.basicAuth;
this.oAuth = builder.oAuth;
this.portNumber = builder.portNumber;
this.key = builder.key;
this.name = builder.name;
}
@Override
public final java.lang.String getApplicationHostUrl() {
return this.applicationHostUrl;
}
@Override
public final java.lang.String getApplicationServicePath() {
return this.applicationServicePath;
}
@Override
public final java.lang.String getClientNumber() {
return this.clientNumber;
}
@Override
public final java.lang.String getLogonLanguage() {
return this.logonLanguage;
}
@Override
public final io.github.cdklabs.cdk.appflow.SAPOdataBasicAuthSettings getBasicAuth() {
return this.basicAuth;
}
@Override
public final io.github.cdklabs.cdk.appflow.SAPOdataOAuthSettings getOAuth() {
return this.oAuth;
}
@Override
public final java.lang.Number getPortNumber() {
return this.portNumber;
}
@Override
public final software.amazon.awscdk.services.kms.IKey getKey() {
return this.key;
}
@Override
public final java.lang.String getName() {
return this.name;
}
@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("applicationHostUrl", om.valueToTree(this.getApplicationHostUrl()));
data.set("applicationServicePath", om.valueToTree(this.getApplicationServicePath()));
data.set("clientNumber", om.valueToTree(this.getClientNumber()));
data.set("logonLanguage", om.valueToTree(this.getLogonLanguage()));
if (this.getBasicAuth() != null) {
data.set("basicAuth", om.valueToTree(this.getBasicAuth()));
}
if (this.getOAuth() != null) {
data.set("oAuth", om.valueToTree(this.getOAuth()));
}
if (this.getPortNumber() != null) {
data.set("portNumber", om.valueToTree(this.getPortNumber()));
}
if (this.getKey() != null) {
data.set("key", om.valueToTree(this.getKey()));
}
if (this.getName() != null) {
data.set("name", om.valueToTree(this.getName()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@cdklabs/cdk-appflow.SAPOdataConnectorProfileProps"));
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;
SAPOdataConnectorProfileProps.Jsii$Proxy that = (SAPOdataConnectorProfileProps.Jsii$Proxy) o;
if (!applicationHostUrl.equals(that.applicationHostUrl)) return false;
if (!applicationServicePath.equals(that.applicationServicePath)) return false;
if (!clientNumber.equals(that.clientNumber)) return false;
if (!logonLanguage.equals(that.logonLanguage)) return false;
if (this.basicAuth != null ? !this.basicAuth.equals(that.basicAuth) : that.basicAuth != null) return false;
if (this.oAuth != null ? !this.oAuth.equals(that.oAuth) : that.oAuth != null) return false;
if (this.portNumber != null ? !this.portNumber.equals(that.portNumber) : that.portNumber != null) return false;
if (this.key != null ? !this.key.equals(that.key) : that.key != null) return false;
return this.name != null ? this.name.equals(that.name) : that.name == null;
}
@Override
public final int hashCode() {
int result = this.applicationHostUrl.hashCode();
result = 31 * result + (this.applicationServicePath.hashCode());
result = 31 * result + (this.clientNumber.hashCode());
result = 31 * result + (this.logonLanguage.hashCode());
result = 31 * result + (this.basicAuth != null ? this.basicAuth.hashCode() : 0);
result = 31 * result + (this.oAuth != null ? this.oAuth.hashCode() : 0);
result = 31 * result + (this.portNumber != null ? this.portNumber.hashCode() : 0);
result = 31 * result + (this.key != null ? this.key.hashCode() : 0);
result = 31 * result + (this.name != null ? this.name.hashCode() : 0);
return result;
}
}
}