All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cloudfoundry.uaa.clients.CreateClient Maven / Gradle / Ivy

There is a newer version: 5.12.2.RELEASE
Show newest version
package org.cloudfoundry.uaa.clients;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import org.cloudfoundry.Nullable;
import org.cloudfoundry.uaa.tokens.GrantType;
import org.immutables.value.Generated;

/**
 * The resource in the Batch Create Clients request
 */
@Generated(from = "_CreateClient", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class CreateClient extends org.cloudfoundry.uaa.clients._CreateClient {
  private final @Nullable Long accessTokenValidity;
  private final @Nullable List allowedProviders;
  private final @Nullable Boolean approvalsDeleted;
  private final @Nullable List authorities;
  private final @Nullable List authorizedGrantTypes;
  private final @Nullable List autoApproves;
  private final String clientId;
  private final @Nullable String clientSecret;
  private final @Nullable String createdWith;
  private final @Nullable String name;
  private final @Nullable List redirectUriPatterns;
  private final @Nullable Long refreshTokenValidity;
  private final @Nullable List resourceIds;
  private final @Nullable List scopes;
  private final @Nullable String tokenSalt;

  private CreateClient(CreateClient.Builder builder) {
    this.accessTokenValidity = builder.accessTokenValidity;
    this.allowedProviders = builder.allowedProviders == null ? null : createUnmodifiableList(true, builder.allowedProviders);
    this.approvalsDeleted = builder.approvalsDeleted;
    this.authorities = builder.authorities == null ? null : createUnmodifiableList(true, builder.authorities);
    this.authorizedGrantTypes = builder.authorizedGrantTypes == null ? null : createUnmodifiableList(true, builder.authorizedGrantTypes);
    this.autoApproves = builder.autoApproves == null ? null : createUnmodifiableList(true, builder.autoApproves);
    this.clientId = builder.clientId;
    this.clientSecret = builder.clientSecret;
    this.createdWith = builder.createdWith;
    this.name = builder.name;
    this.redirectUriPatterns = builder.redirectUriPatterns == null ? null : createUnmodifiableList(true, builder.redirectUriPatterns);
    this.refreshTokenValidity = builder.refreshTokenValidity;
    this.resourceIds = builder.resourceIds == null ? null : createUnmodifiableList(true, builder.resourceIds);
    this.scopes = builder.scopes == null ? null : createUnmodifiableList(true, builder.scopes);
    this.tokenSalt = builder.tokenSalt;
  }

  /**
   * The access token validity
   */
  @Override
  public @Nullable Long getAccessTokenValidity() {
    return accessTokenValidity;
  }

  /**
   * A list of origin keys (alias) for identity providers the client is limited to. Null implies any identity provider is allowed.
   */
  @Override
  public @Nullable List getAllowedProviders() {
    return allowedProviders;
  }

  /**
   * Were the approvals deleted for the client, and an audit event sent
   */
  @Override
  public @Nullable Boolean getApprovalsDeleted() {
    return approvalsDeleted;
  }

  /**
   * Scopes that the client is able to grant when creating a client
   */
  @Override
  public @Nullable List getAuthorities() {
    return authorities;
  }

  /**
   * List of grant types that can be used to obtain a token with this client. Can include authorization_code, password, implicit, and/or client_credentials.
   */
  @Override
  public @Nullable List getAuthorizedGrantTypes() {
    return authorizedGrantTypes;
  }

  /**
   * Scopes that do not require user approval
   */
  @Override
  public @Nullable List getAutoApproves() {
    return autoApproves;
  }

  /**
   * Client identifier, unique within identity zone
   */
  @Override
  public String getClientId() {
    return clientId;
  }

  /**
   * A secret string used for authenticating as this client
   */
  @Override
  public @Nullable String getClientSecret() {
    return clientSecret;
  }

  /**
   * What scope the bearer token had when client was created
   */
  @Override
  public @Nullable String getCreatedWith() {
    return createdWith;
  }

  /**
   * A human readable name for the client
   */
  @Override
  public @Nullable String getName() {
    return name;
  }

  /**
   * Allowed URI pattern for redirect during authorization
   */
  @Override
  public @Nullable List getRedirectUriPatterns() {
    return redirectUriPatterns;
  }

  /**
   * The refresh token validity
   */
  @Override
  public @Nullable Long getRefreshTokenValidity() {
    return refreshTokenValidity;
  }

  /**
   * Resources the client is allowed access to
   */
  @Override
  public @Nullable List getResourceIds() {
    return resourceIds;
  }

  /**
   * Scopes allowed for the client
   */
  @Override
  public @Nullable List getScopes() {
    return scopes;
  }

  /**
   * A random string used to generate the client’s revokation key. Change this value to revoke all active tokens for the client
   */
  @Override
  public @Nullable String getTokenSalt() {
    return tokenSalt;
  }

  /**
   * This instance is equal to all instances of {@code CreateClient} that have equal attribute values.
   * @return {@code true} if {@code this} is equal to {@code another} instance
   */
  @Override
  public boolean equals(Object another) {
    if (this == another) return true;
    return another instanceof CreateClient
        && equalTo(0, (CreateClient) another);
  }

  private boolean equalTo(int synthetic, CreateClient another) {
    return Objects.equals(accessTokenValidity, another.accessTokenValidity)
        && Objects.equals(allowedProviders, another.allowedProviders)
        && Objects.equals(approvalsDeleted, another.approvalsDeleted)
        && Objects.equals(authorities, another.authorities)
        && Objects.equals(authorizedGrantTypes, another.authorizedGrantTypes)
        && Objects.equals(autoApproves, another.autoApproves)
        && clientId.equals(another.clientId)
        && Objects.equals(clientSecret, another.clientSecret)
        && Objects.equals(createdWith, another.createdWith)
        && Objects.equals(name, another.name)
        && Objects.equals(redirectUriPatterns, another.redirectUriPatterns)
        && Objects.equals(refreshTokenValidity, another.refreshTokenValidity)
        && Objects.equals(resourceIds, another.resourceIds)
        && Objects.equals(scopes, another.scopes)
        && Objects.equals(tokenSalt, another.tokenSalt);
  }

  /**
   * Computes a hash code from attributes: {@code accessTokenValidity}, {@code allowedProviders}, {@code approvalsDeleted}, {@code authorities}, {@code authorizedGrantTypes}, {@code autoApproves}, {@code clientId}, {@code clientSecret}, {@code createdWith}, {@code name}, {@code redirectUriPatterns}, {@code refreshTokenValidity}, {@code resourceIds}, {@code scopes}, {@code tokenSalt}.
   * @return hashCode value
   */
  @Override
  public int hashCode() {
    int h = 5381;
    h += (h << 5) + Objects.hashCode(accessTokenValidity);
    h += (h << 5) + Objects.hashCode(allowedProviders);
    h += (h << 5) + Objects.hashCode(approvalsDeleted);
    h += (h << 5) + Objects.hashCode(authorities);
    h += (h << 5) + Objects.hashCode(authorizedGrantTypes);
    h += (h << 5) + Objects.hashCode(autoApproves);
    h += (h << 5) + clientId.hashCode();
    h += (h << 5) + Objects.hashCode(clientSecret);
    h += (h << 5) + Objects.hashCode(createdWith);
    h += (h << 5) + Objects.hashCode(name);
    h += (h << 5) + Objects.hashCode(redirectUriPatterns);
    h += (h << 5) + Objects.hashCode(refreshTokenValidity);
    h += (h << 5) + Objects.hashCode(resourceIds);
    h += (h << 5) + Objects.hashCode(scopes);
    h += (h << 5) + Objects.hashCode(tokenSalt);
    return h;
  }

  /**
   * Prints the immutable value {@code CreateClient} with attribute values.
   * @return A string representation of the value
   */
  @Override
  public String toString() {
    return "CreateClient{"
        + "accessTokenValidity=" + accessTokenValidity
        + ", allowedProviders=" + allowedProviders
        + ", approvalsDeleted=" + approvalsDeleted
        + ", authorities=" + authorities
        + ", authorizedGrantTypes=" + authorizedGrantTypes
        + ", autoApproves=" + autoApproves
        + ", clientId=" + clientId
        + ", clientSecret=" + clientSecret
        + ", createdWith=" + createdWith
        + ", name=" + name
        + ", redirectUriPatterns=" + redirectUriPatterns
        + ", refreshTokenValidity=" + refreshTokenValidity
        + ", resourceIds=" + resourceIds
        + ", scopes=" + scopes
        + ", tokenSalt=" + tokenSalt
        + "}";
  }

  private static CreateClient validate(CreateClient instance) {
    instance.checkAuthorizedGrantTypes();
    return instance;
  }

  /**
   * Creates a builder for {@link CreateClient CreateClient}.
   * 
   * CreateClient.builder()
   *    .accessTokenValidity(Long | null) // nullable {@link CreateClient#getAccessTokenValidity() accessTokenValidity}
   *    .allowedProviders(List&lt;String&gt; | null) // nullable {@link CreateClient#getAllowedProviders() allowedProviders}
   *    .approvalsDeleted(Boolean | null) // nullable {@link CreateClient#getApprovalsDeleted() approvalsDeleted}
   *    .authorities(List&lt;String&gt; | null) // nullable {@link CreateClient#getAuthorities() authorities}
   *    .authorizedGrantTypes(List&lt;org.cloudfoundry.uaa.tokens.GrantType&gt; | null) // nullable {@link CreateClient#getAuthorizedGrantTypes() authorizedGrantTypes}
   *    .autoApproves(List&lt;String&gt; | null) // nullable {@link CreateClient#getAutoApproves() autoApproves}
   *    .clientId(String) // required {@link CreateClient#getClientId() clientId}
   *    .clientSecret(String | null) // nullable {@link CreateClient#getClientSecret() clientSecret}
   *    .createdWith(String | null) // nullable {@link CreateClient#getCreatedWith() createdWith}
   *    .name(String | null) // nullable {@link CreateClient#getName() name}
   *    .redirectUriPatterns(List&lt;String&gt; | null) // nullable {@link CreateClient#getRedirectUriPatterns() redirectUriPatterns}
   *    .refreshTokenValidity(Long | null) // nullable {@link CreateClient#getRefreshTokenValidity() refreshTokenValidity}
   *    .resourceIds(List&lt;String&gt; | null) // nullable {@link CreateClient#getResourceIds() resourceIds}
   *    .scopes(List&lt;String&gt; | null) // nullable {@link CreateClient#getScopes() scopes}
   *    .tokenSalt(String | null) // nullable {@link CreateClient#getTokenSalt() tokenSalt}
   *    .build();
   * 
* @return A new CreateClient builder */ public static CreateClient.Builder builder() { return new CreateClient.Builder(); } /** * Builds instances of type {@link CreateClient CreateClient}. * Initialize attributes and then invoke the {@link #build()} method to create an * immutable instance. *

{@code Builder} is not thread-safe and generally should not be stored in a field or collection, * but instead used immediately to create instances. */ @Generated(from = "_CreateClient", generator = "Immutables") public static final class Builder { private static final long INIT_BIT_CLIENT_ID = 0x1L; private long initBits = 0x1L; private Long accessTokenValidity; private List allowedProviders = null; private Boolean approvalsDeleted; private List authorities = null; private List authorizedGrantTypes = null; private List autoApproves = null; private String clientId; private String clientSecret; private String createdWith; private String name; private List redirectUriPatterns = null; private Long refreshTokenValidity; private List resourceIds = null; private List scopes = null; private String tokenSalt; private Builder() { } /** * Fill a builder with attribute values from the provided {@code org.cloudfoundry.uaa.clients.AbstractCreateClient} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(AbstractCreateClient instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Fill a builder with attribute values from the provided {@code CreateClient} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(CreateClient instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Copy abstract value type {@code _CreateClient} instance into builder. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(_CreateClient instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } private void from(short _unused, Object object) { if (object instanceof AbstractCreateClient) { AbstractCreateClient instance = (AbstractCreateClient) object; List authorizedGrantTypesValue = instance.getAuthorizedGrantTypes(); if (authorizedGrantTypesValue != null) { addAllAuthorizedGrantTypes(authorizedGrantTypesValue); } String tokenSaltValue = instance.getTokenSalt(); if (tokenSaltValue != null) { tokenSalt(tokenSaltValue); } clientId(instance.getClientId()); String createdWithValue = instance.getCreatedWith(); if (createdWithValue != null) { createdWith(createdWithValue); } List redirectUriPatternsValue = instance.getRedirectUriPatterns(); if (redirectUriPatternsValue != null) { addAllRedirectUriPatterns(redirectUriPatternsValue); } Long accessTokenValidityValue = instance.getAccessTokenValidity(); if (accessTokenValidityValue != null) { accessTokenValidity(accessTokenValidityValue); } List authoritiesValue = instance.getAuthorities(); if (authoritiesValue != null) { addAllAuthorities(authoritiesValue); } Long refreshTokenValidityValue = instance.getRefreshTokenValidity(); if (refreshTokenValidityValue != null) { refreshTokenValidity(refreshTokenValidityValue); } String nameValue = instance.getName(); if (nameValue != null) { name(nameValue); } String clientSecretValue = instance.getClientSecret(); if (clientSecretValue != null) { clientSecret(clientSecretValue); } Boolean approvalsDeletedValue = instance.getApprovalsDeleted(); if (approvalsDeletedValue != null) { approvalsDeleted(approvalsDeletedValue); } List scopesValue = instance.getScopes(); if (scopesValue != null) { addAllScopes(scopesValue); } List autoApprovesValue = instance.getAutoApproves(); if (autoApprovesValue != null) { addAllAutoApproves(autoApprovesValue); } List allowedProvidersValue = instance.getAllowedProviders(); if (allowedProvidersValue != null) { addAllAllowedProviders(allowedProvidersValue); } List resourceIdsValue = instance.getResourceIds(); if (resourceIdsValue != null) { addAllResourceIds(resourceIdsValue); } } } /** * Initializes the value for the {@link CreateClient#getAccessTokenValidity() accessTokenValidity} attribute. * @param accessTokenValidity The value for accessTokenValidity (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder accessTokenValidity(@Nullable Long accessTokenValidity) { this.accessTokenValidity = accessTokenValidity; return this; } /** * Adds one element to {@link CreateClient#getAllowedProviders() allowedProviders} list. * @param element A allowedProviders element * @return {@code this} builder for use in a chained invocation */ public final Builder allowedProvider(String element) { if (this.allowedProviders == null) { this.allowedProviders = new ArrayList(); } this.allowedProviders.add(Objects.requireNonNull(element, "allowedProviders element")); return this; } /** * Adds elements to {@link CreateClient#getAllowedProviders() allowedProviders} list. * @param elements An array of allowedProviders elements * @return {@code this} builder for use in a chained invocation */ public final Builder allowedProviders(String... elements) { if (this.allowedProviders == null) { this.allowedProviders = new ArrayList(); } for (String element : elements) { this.allowedProviders.add(Objects.requireNonNull(element, "allowedProviders element")); } return this; } /** * Sets or replaces all elements for {@link CreateClient#getAllowedProviders() allowedProviders} list. * @param elements An iterable of allowedProviders elements * @return {@code this} builder for use in a chained invocation */ public final Builder allowedProviders(@Nullable Iterable elements) { if (elements == null) { this.allowedProviders = null; return this; } this.allowedProviders = new ArrayList(); return addAllAllowedProviders(elements); } /** * Adds elements to {@link CreateClient#getAllowedProviders() allowedProviders} list. * @param elements An iterable of allowedProviders elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllAllowedProviders(Iterable elements) { Objects.requireNonNull(elements, "allowedProviders element"); if (this.allowedProviders == null) { this.allowedProviders = new ArrayList(); } for (String element : elements) { this.allowedProviders.add(Objects.requireNonNull(element, "allowedProviders element")); } return this; } /** * Initializes the value for the {@link CreateClient#getApprovalsDeleted() approvalsDeleted} attribute. * @param approvalsDeleted The value for approvalsDeleted (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder approvalsDeleted(@Nullable Boolean approvalsDeleted) { this.approvalsDeleted = approvalsDeleted; return this; } /** * Adds one element to {@link CreateClient#getAuthorities() authorities} list. * @param element A authorities element * @return {@code this} builder for use in a chained invocation */ public final Builder authority(String element) { if (this.authorities == null) { this.authorities = new ArrayList(); } this.authorities.add(Objects.requireNonNull(element, "authorities element")); return this; } /** * Adds elements to {@link CreateClient#getAuthorities() authorities} list. * @param elements An array of authorities elements * @return {@code this} builder for use in a chained invocation */ public final Builder authorities(String... elements) { if (this.authorities == null) { this.authorities = new ArrayList(); } for (String element : elements) { this.authorities.add(Objects.requireNonNull(element, "authorities element")); } return this; } /** * Sets or replaces all elements for {@link CreateClient#getAuthorities() authorities} list. * @param elements An iterable of authorities elements * @return {@code this} builder for use in a chained invocation */ public final Builder authorities(@Nullable Iterable elements) { if (elements == null) { this.authorities = null; return this; } this.authorities = new ArrayList(); return addAllAuthorities(elements); } /** * Adds elements to {@link CreateClient#getAuthorities() authorities} list. * @param elements An iterable of authorities elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllAuthorities(Iterable elements) { Objects.requireNonNull(elements, "authorities element"); if (this.authorities == null) { this.authorities = new ArrayList(); } for (String element : elements) { this.authorities.add(Objects.requireNonNull(element, "authorities element")); } return this; } /** * Adds one element to {@link CreateClient#getAuthorizedGrantTypes() authorizedGrantTypes} list. * @param element A authorizedGrantTypes element * @return {@code this} builder for use in a chained invocation */ public final Builder authorizedGrantType(GrantType element) { if (this.authorizedGrantTypes == null) { this.authorizedGrantTypes = new ArrayList(); } this.authorizedGrantTypes.add(Objects.requireNonNull(element, "authorizedGrantTypes element")); return this; } /** * Adds elements to {@link CreateClient#getAuthorizedGrantTypes() authorizedGrantTypes} list. * @param elements An array of authorizedGrantTypes elements * @return {@code this} builder for use in a chained invocation */ public final Builder authorizedGrantTypes(GrantType... elements) { if (this.authorizedGrantTypes == null) { this.authorizedGrantTypes = new ArrayList(); } for (GrantType element : elements) { this.authorizedGrantTypes.add(Objects.requireNonNull(element, "authorizedGrantTypes element")); } return this; } /** * Sets or replaces all elements for {@link CreateClient#getAuthorizedGrantTypes() authorizedGrantTypes} list. * @param elements An iterable of authorizedGrantTypes elements * @return {@code this} builder for use in a chained invocation */ public final Builder authorizedGrantTypes(@Nullable Iterable elements) { if (elements == null) { this.authorizedGrantTypes = null; return this; } this.authorizedGrantTypes = new ArrayList(); return addAllAuthorizedGrantTypes(elements); } /** * Adds elements to {@link CreateClient#getAuthorizedGrantTypes() authorizedGrantTypes} list. * @param elements An iterable of authorizedGrantTypes elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllAuthorizedGrantTypes(Iterable elements) { Objects.requireNonNull(elements, "authorizedGrantTypes element"); if (this.authorizedGrantTypes == null) { this.authorizedGrantTypes = new ArrayList(); } for (GrantType element : elements) { this.authorizedGrantTypes.add(Objects.requireNonNull(element, "authorizedGrantTypes element")); } return this; } /** * Adds one element to {@link CreateClient#getAutoApproves() autoApproves} list. * @param element A autoApproves element * @return {@code this} builder for use in a chained invocation */ public final Builder autoApprove(String element) { if (this.autoApproves == null) { this.autoApproves = new ArrayList(); } this.autoApproves.add(Objects.requireNonNull(element, "autoApproves element")); return this; } /** * Adds elements to {@link CreateClient#getAutoApproves() autoApproves} list. * @param elements An array of autoApproves elements * @return {@code this} builder for use in a chained invocation */ public final Builder autoApproves(String... elements) { if (this.autoApproves == null) { this.autoApproves = new ArrayList(); } for (String element : elements) { this.autoApproves.add(Objects.requireNonNull(element, "autoApproves element")); } return this; } /** * Sets or replaces all elements for {@link CreateClient#getAutoApproves() autoApproves} list. * @param elements An iterable of autoApproves elements * @return {@code this} builder for use in a chained invocation */ public final Builder autoApproves(@Nullable Iterable elements) { if (elements == null) { this.autoApproves = null; return this; } this.autoApproves = new ArrayList(); return addAllAutoApproves(elements); } /** * Adds elements to {@link CreateClient#getAutoApproves() autoApproves} list. * @param elements An iterable of autoApproves elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllAutoApproves(Iterable elements) { Objects.requireNonNull(elements, "autoApproves element"); if (this.autoApproves == null) { this.autoApproves = new ArrayList(); } for (String element : elements) { this.autoApproves.add(Objects.requireNonNull(element, "autoApproves element")); } return this; } /** * Initializes the value for the {@link CreateClient#getClientId() clientId} attribute. * @param clientId The value for clientId * @return {@code this} builder for use in a chained invocation */ public final Builder clientId(String clientId) { this.clientId = Objects.requireNonNull(clientId, "clientId"); initBits &= ~INIT_BIT_CLIENT_ID; return this; } /** * Initializes the value for the {@link CreateClient#getClientSecret() clientSecret} attribute. * @param clientSecret The value for clientSecret (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder clientSecret(@Nullable String clientSecret) { this.clientSecret = clientSecret; return this; } /** * Initializes the value for the {@link CreateClient#getCreatedWith() createdWith} attribute. * @param createdWith The value for createdWith (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder createdWith(@Nullable String createdWith) { this.createdWith = createdWith; return this; } /** * Initializes the value for the {@link CreateClient#getName() name} attribute. * @param name The value for name (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder name(@Nullable String name) { this.name = name; return this; } /** * Adds one element to {@link CreateClient#getRedirectUriPatterns() redirectUriPatterns} list. * @param element A redirectUriPatterns element * @return {@code this} builder for use in a chained invocation */ public final Builder redirectUriPattern(String element) { if (this.redirectUriPatterns == null) { this.redirectUriPatterns = new ArrayList(); } this.redirectUriPatterns.add(Objects.requireNonNull(element, "redirectUriPatterns element")); return this; } /** * Adds elements to {@link CreateClient#getRedirectUriPatterns() redirectUriPatterns} list. * @param elements An array of redirectUriPatterns elements * @return {@code this} builder for use in a chained invocation */ public final Builder redirectUriPatterns(String... elements) { if (this.redirectUriPatterns == null) { this.redirectUriPatterns = new ArrayList(); } for (String element : elements) { this.redirectUriPatterns.add(Objects.requireNonNull(element, "redirectUriPatterns element")); } return this; } /** * Sets or replaces all elements for {@link CreateClient#getRedirectUriPatterns() redirectUriPatterns} list. * @param elements An iterable of redirectUriPatterns elements * @return {@code this} builder for use in a chained invocation */ public final Builder redirectUriPatterns(@Nullable Iterable elements) { if (elements == null) { this.redirectUriPatterns = null; return this; } this.redirectUriPatterns = new ArrayList(); return addAllRedirectUriPatterns(elements); } /** * Adds elements to {@link CreateClient#getRedirectUriPatterns() redirectUriPatterns} list. * @param elements An iterable of redirectUriPatterns elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllRedirectUriPatterns(Iterable elements) { Objects.requireNonNull(elements, "redirectUriPatterns element"); if (this.redirectUriPatterns == null) { this.redirectUriPatterns = new ArrayList(); } for (String element : elements) { this.redirectUriPatterns.add(Objects.requireNonNull(element, "redirectUriPatterns element")); } return this; } /** * Initializes the value for the {@link CreateClient#getRefreshTokenValidity() refreshTokenValidity} attribute. * @param refreshTokenValidity The value for refreshTokenValidity (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder refreshTokenValidity(@Nullable Long refreshTokenValidity) { this.refreshTokenValidity = refreshTokenValidity; return this; } /** * Adds one element to {@link CreateClient#getResourceIds() resourceIds} list. * @param element A resourceIds element * @return {@code this} builder for use in a chained invocation */ public final Builder resourceId(String element) { if (this.resourceIds == null) { this.resourceIds = new ArrayList(); } this.resourceIds.add(Objects.requireNonNull(element, "resourceIds element")); return this; } /** * Adds elements to {@link CreateClient#getResourceIds() resourceIds} list. * @param elements An array of resourceIds elements * @return {@code this} builder for use in a chained invocation */ public final Builder resourceIds(String... elements) { if (this.resourceIds == null) { this.resourceIds = new ArrayList(); } for (String element : elements) { this.resourceIds.add(Objects.requireNonNull(element, "resourceIds element")); } return this; } /** * Sets or replaces all elements for {@link CreateClient#getResourceIds() resourceIds} list. * @param elements An iterable of resourceIds elements * @return {@code this} builder for use in a chained invocation */ public final Builder resourceIds(@Nullable Iterable elements) { if (elements == null) { this.resourceIds = null; return this; } this.resourceIds = new ArrayList(); return addAllResourceIds(elements); } /** * Adds elements to {@link CreateClient#getResourceIds() resourceIds} list. * @param elements An iterable of resourceIds elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllResourceIds(Iterable elements) { Objects.requireNonNull(elements, "resourceIds element"); if (this.resourceIds == null) { this.resourceIds = new ArrayList(); } for (String element : elements) { this.resourceIds.add(Objects.requireNonNull(element, "resourceIds element")); } return this; } /** * Adds one element to {@link CreateClient#getScopes() scopes} list. * @param element A scopes element * @return {@code this} builder for use in a chained invocation */ public final Builder scope(String element) { if (this.scopes == null) { this.scopes = new ArrayList(); } this.scopes.add(Objects.requireNonNull(element, "scopes element")); return this; } /** * Adds elements to {@link CreateClient#getScopes() scopes} list. * @param elements An array of scopes elements * @return {@code this} builder for use in a chained invocation */ public final Builder scopes(String... elements) { if (this.scopes == null) { this.scopes = new ArrayList(); } for (String element : elements) { this.scopes.add(Objects.requireNonNull(element, "scopes element")); } return this; } /** * Sets or replaces all elements for {@link CreateClient#getScopes() scopes} list. * @param elements An iterable of scopes elements * @return {@code this} builder for use in a chained invocation */ public final Builder scopes(@Nullable Iterable elements) { if (elements == null) { this.scopes = null; return this; } this.scopes = new ArrayList(); return addAllScopes(elements); } /** * Adds elements to {@link CreateClient#getScopes() scopes} list. * @param elements An iterable of scopes elements * @return {@code this} builder for use in a chained invocation */ public final Builder addAllScopes(Iterable elements) { Objects.requireNonNull(elements, "scopes element"); if (this.scopes == null) { this.scopes = new ArrayList(); } for (String element : elements) { this.scopes.add(Objects.requireNonNull(element, "scopes element")); } return this; } /** * Initializes the value for the {@link CreateClient#getTokenSalt() tokenSalt} attribute. * @param tokenSalt The value for tokenSalt (can be {@code null}) * @return {@code this} builder for use in a chained invocation */ public final Builder tokenSalt(@Nullable String tokenSalt) { this.tokenSalt = tokenSalt; return this; } /** * Builds a new {@link CreateClient CreateClient}. * @return An immutable instance of CreateClient * @throws java.lang.IllegalStateException if any required attributes are missing */ public CreateClient build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return CreateClient.validate(new CreateClient(this)); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_CLIENT_ID) != 0) attributes.add("clientId"); return "Cannot build CreateClient, some of required attributes are not set " + attributes; } } private static List createSafeList(Iterable iterable, boolean checkNulls, boolean skipNulls) { ArrayList list; if (iterable instanceof Collection) { int size = ((Collection) iterable).size(); if (size == 0) return Collections.emptyList(); list = new ArrayList<>(size); } else { list = new ArrayList<>(); } for (T element : iterable) { if (skipNulls && element == null) continue; if (checkNulls) Objects.requireNonNull(element, "element"); list.add(element); } return list; } private static List createUnmodifiableList(boolean clone, List list) { switch(list.size()) { case 0: return Collections.emptyList(); case 1: return Collections.singletonList(list.get(0)); default: if (clone) { return Collections.unmodifiableList(new ArrayList<>(list)); } else { if (list instanceof ArrayList) { ((ArrayList) list).trimToSize(); } return Collections.unmodifiableList(list); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy