
com.okta.sdk.resource.model.SamlSsoEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of okta-sdk-api Show documentation
Show all versions of okta-sdk-api Show documentation
The Okta Java SDK API .jar provides a Java API that your code can use to make calls to the Okta
API. This .jar is the only compile-time dependency within the Okta SDK project that your code should
depend on. Implementations of this API (implementation .jars) should be runtime dependencies only.
package com.okta.sdk.resource.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.okta.sdk.resource.model.ProtocolEndpointBinding;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModel;
/**
* IdP's `SingleSignOnService` endpoint where Okta sends an `<AuthnRequest>` message
*/
@ApiModel(description = "IdP's `SingleSignOnService` endpoint where Okta sends an `` message")
@JsonPropertyOrder({ SamlSsoEndpoint.JSON_PROPERTY_BINDING, SamlSsoEndpoint.JSON_PROPERTY_DESTINATION,
SamlSsoEndpoint.JSON_PROPERTY_URL })
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-11-15T08:48:47.130589-06:00[America/Chicago]", comments = "Generator version: 7.8.0")
public class SamlSsoEndpoint implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_BINDING = "binding";
private ProtocolEndpointBinding binding;
public static final String JSON_PROPERTY_DESTINATION = "destination";
private String destination;
public static final String JSON_PROPERTY_URL = "url";
private String url;
public SamlSsoEndpoint() {
}
public SamlSsoEndpoint binding(ProtocolEndpointBinding binding) {
this.binding = binding;
return this;
}
/**
* Get binding
*
* @return binding
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_BINDING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public ProtocolEndpointBinding getBinding() {
return binding;
}
@JsonProperty(JSON_PROPERTY_BINDING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setBinding(ProtocolEndpointBinding binding) {
this.binding = binding;
}
public SamlSsoEndpoint destination(String destination) {
this.destination = destination;
return this;
}
/**
* URI reference that indicates the address to which the `<AuthnRequest>` message is sent. The
* `destination` property is required if request signatures are specified. See [SAML 2.0 Request Algorithm
* object](https://developer.okta.com/docs/api/openapi/okta-management/management/tag/IdentityProvider/#tag/IdentityProvider/operation/createIdentityProvider!path=protocol/0/algorithms/request&t=request).
*
* @return destination
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://idp.example.com/saml2/sso", value = "URI reference that indicates the address to which the `` message is sent. The `destination` property is required if request signatures are specified. See [SAML 2.0 Request Algorithm object](https://developer.okta.com/docs/api/openapi/okta-management/management/tag/IdentityProvider/#tag/IdentityProvider/operation/createIdentityProvider!path=protocol/0/algorithms/request&t=request).")
@JsonProperty(JSON_PROPERTY_DESTINATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDestination() {
return destination;
}
@JsonProperty(JSON_PROPERTY_DESTINATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDestination(String destination) {
this.destination = destination;
}
public SamlSsoEndpoint url(String url) {
this.url = url;
return this;
}
/**
* URL of the binding-specific endpoint to send an `<AuthnRequest>` message to the IdP. The value of
* `url` defaults to the same value as the `sso` endpoint if omitted during creation of a new
* IdP instance. The `url` should be the same value as the `Location` attribute for a published
* binding in the IdP's SAML Metadata `IDPSSODescriptor`.
*
* @return url
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "https://idp.example.com/saml2/sso", value = "URL of the binding-specific endpoint to send an `` message to the IdP. The value of `url` defaults to the same value as the `sso` endpoint if omitted during creation of a new IdP instance. The `url` should be the same value as the `Location` attribute for a published binding in the IdP's SAML Metadata `IDPSSODescriptor`.")
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getUrl() {
return url;
}
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUrl(String url) {
this.url = url;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SamlSsoEndpoint samlSsoEndpoint = (SamlSsoEndpoint) o;
return Objects.equals(this.binding, samlSsoEndpoint.binding)
&& Objects.equals(this.destination, samlSsoEndpoint.destination)
&& Objects.equals(this.url, samlSsoEndpoint.url);
// ;
}
@Override
public int hashCode() {
return Objects.hash(binding, destination, url);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SamlSsoEndpoint {\n");
sb.append(" binding: ").append(toIndentedString(binding)).append("\n");
sb.append(" destination: ").append(toIndentedString(destination)).append("\n");
sb.append(" url: ").append(toIndentedString(url)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy