com.microsoft.graph.generated.models.IdentityApiConnector Maven / Gradle / Ivy
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class IdentityApiConnector extends Entity implements Parsable {
/**
* Instantiates a new {@link IdentityApiConnector} and sets the default values.
*/
public IdentityApiConnector() {
super();
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link IdentityApiConnector}
*/
@jakarta.annotation.Nonnull
public static IdentityApiConnector createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new IdentityApiConnector();
}
/**
* Gets the authenticationConfiguration property value. The object which describes the authentication configuration details for calling the API. Basic and PKCS 12 client certificate are supported.
* @return a {@link ApiAuthenticationConfigurationBase}
*/
@jakarta.annotation.Nullable
public ApiAuthenticationConfigurationBase getAuthenticationConfiguration() {
return this.backingStore.get("authenticationConfiguration");
}
/**
* Gets the displayName property value. The name of the API connector.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisplayName() {
return this.backingStore.get("displayName");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("authenticationConfiguration", (n) -> { this.setAuthenticationConfiguration(n.getObjectValue(ApiAuthenticationConfigurationBase::createFromDiscriminatorValue)); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("targetUrl", (n) -> { this.setTargetUrl(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the targetUrl property value. The URL of the API endpoint to call.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getTargetUrl() {
return this.backingStore.get("targetUrl");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeObjectValue("authenticationConfiguration", this.getAuthenticationConfiguration());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeStringValue("targetUrl", this.getTargetUrl());
}
/**
* Sets the authenticationConfiguration property value. The object which describes the authentication configuration details for calling the API. Basic and PKCS 12 client certificate are supported.
* @param value Value to set for the authenticationConfiguration property.
*/
public void setAuthenticationConfiguration(@jakarta.annotation.Nullable final ApiAuthenticationConfigurationBase value) {
this.backingStore.set("authenticationConfiguration", value);
}
/**
* Sets the displayName property value. The name of the API connector.
* @param value Value to set for the displayName property.
*/
public void setDisplayName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("displayName", value);
}
/**
* Sets the targetUrl property value. The URL of the API endpoint to call.
* @param value Value to set for the targetUrl property.
*/
public void setTargetUrl(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("targetUrl", value);
}
}