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

org.cloudfoundry.uaa.clients.UpdateClientAction 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 request payload for the create client
 */
@Generated(from = "_UpdateClientAction", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class UpdateClientAction extends org.cloudfoundry.uaa.clients._UpdateClientAction {
  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 createdWith;
  private final @Nullable String name;
  private final @Nullable List redirectUriPatterns;
  private final @Nullable List resourceIds;
  private final @Nullable List scopes;
  private final @Nullable String tokenSalt;
  private transient final String action;

  private UpdateClientAction(UpdateClientAction.Builder builder) {
    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.createdWith = builder.createdWith;
    this.name = builder.name;
    this.redirectUriPatterns = builder.redirectUriPatterns == null ? null : createUnmodifiableList(true, builder.redirectUriPatterns);
    this.resourceIds = builder.resourceIds == null ? null : createUnmodifiableList(true, builder.resourceIds);
    this.scopes = builder.scopes == null ? null : createUnmodifiableList(true, builder.scopes);
    this.tokenSalt = builder.tokenSalt;
    this.action = Objects.requireNonNull(super.getAction(), "action");
  }

  /**
   * 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;
  }

  /**
   * 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;
  }

  /**
   * 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;
  }

  /**
   * @return The computed-at-construction value of the {@code action} attribute
   */
  @Override
  public String getAction() {
    return action;
  }

  /**
   * This instance is equal to all instances of {@code UpdateClientAction} 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 UpdateClientAction
        && equalTo(0, (UpdateClientAction) another);
  }

  private boolean equalTo(int synthetic, UpdateClientAction another) {
    return 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(createdWith, another.createdWith)
        && Objects.equals(name, another.name)
        && Objects.equals(redirectUriPatterns, another.redirectUriPatterns)
        && Objects.equals(resourceIds, another.resourceIds)
        && Objects.equals(scopes, another.scopes)
        && Objects.equals(tokenSalt, another.tokenSalt)
        && action.equals(another.action);
  }

  /**
   * Computes a hash code from attributes: {@code allowedProviders}, {@code approvalsDeleted}, {@code authorities}, {@code authorizedGrantTypes}, {@code autoApproves}, {@code clientId}, {@code createdWith}, {@code name}, {@code redirectUriPatterns}, {@code resourceIds}, {@code scopes}, {@code tokenSalt}, {@code action}.
   * @return hashCode value
   */
  @Override
  public int hashCode() {
    int h = 5381;
    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(createdWith);
    h += (h << 5) + Objects.hashCode(name);
    h += (h << 5) + Objects.hashCode(redirectUriPatterns);
    h += (h << 5) + Objects.hashCode(resourceIds);
    h += (h << 5) + Objects.hashCode(scopes);
    h += (h << 5) + Objects.hashCode(tokenSalt);
    h += (h << 5) + action.hashCode();
    return h;
  }

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

  private static UpdateClientAction validate(UpdateClientAction instance) {
    instance.checkAuthorizedGrantType();
    return instance;
  }

  /**
   * Creates a builder for {@link UpdateClientAction UpdateClientAction}.
   * 
   * UpdateClientAction.builder()
   *    .allowedProviders(List&lt;String&gt; | null) // nullable {@link UpdateClientAction#getAllowedProviders() allowedProviders}
   *    .approvalsDeleted(Boolean | null) // nullable {@link UpdateClientAction#getApprovalsDeleted() approvalsDeleted}
   *    .authorities(List&lt;String&gt; | null) // nullable {@link UpdateClientAction#getAuthorities() authorities}
   *    .authorizedGrantTypes(List&lt;org.cloudfoundry.uaa.tokens.GrantType&gt; | null) // nullable {@link UpdateClientAction#getAuthorizedGrantTypes() authorizedGrantTypes}
   *    .autoApproves(List&lt;String&gt; | null) // nullable {@link UpdateClientAction#getAutoApproves() autoApproves}
   *    .clientId(String) // required {@link UpdateClientAction#getClientId() clientId}
   *    .createdWith(String | null) // nullable {@link UpdateClientAction#getCreatedWith() createdWith}
   *    .name(String | null) // nullable {@link UpdateClientAction#getName() name}
   *    .redirectUriPatterns(List&lt;String&gt; | null) // nullable {@link UpdateClientAction#getRedirectUriPatterns() redirectUriPatterns}
   *    .resourceIds(List&lt;String&gt; | null) // nullable {@link UpdateClientAction#getResourceIds() resourceIds}
   *    .scopes(List&lt;String&gt; | null) // nullable {@link UpdateClientAction#getScopes() scopes}
   *    .tokenSalt(String | null) // nullable {@link UpdateClientAction#getTokenSalt() tokenSalt}
   *    .build();
   * 
* @return A new UpdateClientAction builder */ public static UpdateClientAction.Builder builder() { return new UpdateClientAction.Builder(); } /** * Builds instances of type {@link UpdateClientAction UpdateClientAction}. * 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 = "_UpdateClientAction", generator = "Immutables") public static final class Builder { private static final long INIT_BIT_CLIENT_ID = 0x1L; private long initBits = 0x1L; private List allowedProviders = null; private Boolean approvalsDeleted; private List authorities = null; private List authorizedGrantTypes = null; private List autoApproves = null; private String clientId; private String createdWith; private String name; private List redirectUriPatterns = null; private List resourceIds = null; private List scopes = null; private String tokenSalt; private Builder() { } /** * Fill a builder with attribute values from the provided {@code UpdateClientAction} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(UpdateClientAction instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Copy abstract value type {@code _UpdateClientAction} 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(_UpdateClientAction instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } /** * Fill a builder with attribute values from the provided {@code org.cloudfoundry.uaa.clients.AbstractUpdateClient} instance. * @param instance The instance from which to copy values * @return {@code this} builder for use in a chained invocation */ public final Builder from(AbstractUpdateClient instance) { Objects.requireNonNull(instance, "instance"); from((short) 0, (Object) instance); return this; } private void from(short _unused, Object object) { long bits = 0; if (object instanceof org.cloudfoundry.uaa.clients._UpdateClientAction) { org.cloudfoundry.uaa.clients._UpdateClientAction instance = (org.cloudfoundry.uaa.clients._UpdateClientAction) object; if ((bits & 0x1L) == 0) { List authorizedGrantTypesValue = instance.getAuthorizedGrantTypes(); if (authorizedGrantTypesValue != null) { addAllAuthorizedGrantTypes(authorizedGrantTypesValue); } bits |= 0x1L; } if ((bits & 0x2L) == 0) { String tokenSaltValue = instance.getTokenSalt(); if (tokenSaltValue != null) { tokenSalt(tokenSaltValue); } bits |= 0x2L; } if ((bits & 0x4L) == 0) { clientId(instance.getClientId()); bits |= 0x4L; } if ((bits & 0x8L) == 0) { String createdWithValue = instance.getCreatedWith(); if (createdWithValue != null) { createdWith(createdWithValue); } bits |= 0x8L; } if ((bits & 0x10L) == 0) { List redirectUriPatternsValue = instance.getRedirectUriPatterns(); if (redirectUriPatternsValue != null) { addAllRedirectUriPatterns(redirectUriPatternsValue); } bits |= 0x10L; } if ((bits & 0x40L) == 0) { String nameValue = instance.getName(); if (nameValue != null) { name(nameValue); } bits |= 0x40L; } if ((bits & 0x80L) == 0) { Boolean approvalsDeletedValue = instance.getApprovalsDeleted(); if (approvalsDeletedValue != null) { approvalsDeleted(approvalsDeletedValue); } bits |= 0x80L; } if ((bits & 0x100L) == 0) { List scopesValue = instance.getScopes(); if (scopesValue != null) { addAllScopes(scopesValue); } bits |= 0x100L; } if ((bits & 0x200L) == 0) { List autoApprovesValue = instance.getAutoApproves(); if (autoApprovesValue != null) { addAllAutoApproves(autoApprovesValue); } bits |= 0x200L; } if ((bits & 0x20L) == 0) { List authoritiesValue = instance.getAuthorities(); if (authoritiesValue != null) { addAllAuthorities(authoritiesValue); } bits |= 0x20L; } if ((bits & 0x400L) == 0) { List allowedProvidersValue = instance.getAllowedProviders(); if (allowedProvidersValue != null) { addAllAllowedProviders(allowedProvidersValue); } bits |= 0x400L; } if ((bits & 0x800L) == 0) { List resourceIdsValue = instance.getResourceIds(); if (resourceIdsValue != null) { addAllResourceIds(resourceIdsValue); } bits |= 0x800L; } } if (object instanceof AbstractUpdateClient) { AbstractUpdateClient instance = (AbstractUpdateClient) object; if ((bits & 0x1L) == 0) { List authorizedGrantTypesValue = instance.getAuthorizedGrantTypes(); if (authorizedGrantTypesValue != null) { addAllAuthorizedGrantTypes(authorizedGrantTypesValue); } bits |= 0x1L; } if ((bits & 0x2L) == 0) { String tokenSaltValue = instance.getTokenSalt(); if (tokenSaltValue != null) { tokenSalt(tokenSaltValue); } bits |= 0x2L; } if ((bits & 0x4L) == 0) { clientId(instance.getClientId()); bits |= 0x4L; } if ((bits & 0x8L) == 0) { String createdWithValue = instance.getCreatedWith(); if (createdWithValue != null) { createdWith(createdWithValue); } bits |= 0x8L; } if ((bits & 0x10L) == 0) { List redirectUriPatternsValue = instance.getRedirectUriPatterns(); if (redirectUriPatternsValue != null) { addAllRedirectUriPatterns(redirectUriPatternsValue); } bits |= 0x10L; } if ((bits & 0x40L) == 0) { String nameValue = instance.getName(); if (nameValue != null) { name(nameValue); } bits |= 0x40L; } if ((bits & 0x80L) == 0) { Boolean approvalsDeletedValue = instance.getApprovalsDeleted(); if (approvalsDeletedValue != null) { approvalsDeleted(approvalsDeletedValue); } bits |= 0x80L; } if ((bits & 0x100L) == 0) { List scopesValue = instance.getScopes(); if (scopesValue != null) { addAllScopes(scopesValue); } bits |= 0x100L; } if ((bits & 0x200L) == 0) { List autoApprovesValue = instance.getAutoApproves(); if (autoApprovesValue != null) { addAllAutoApproves(autoApprovesValue); } bits |= 0x200L; } if ((bits & 0x20L) == 0) { List authoritiesValue = instance.getAuthorities(); if (authoritiesValue != null) { addAllAuthorities(authoritiesValue); } bits |= 0x20L; } if ((bits & 0x400L) == 0) { List allowedProvidersValue = instance.getAllowedProviders(); if (allowedProvidersValue != null) { addAllAllowedProviders(allowedProvidersValue); } bits |= 0x400L; } if ((bits & 0x800L) == 0) { List resourceIdsValue = instance.getResourceIds(); if (resourceIdsValue != null) { addAllResourceIds(resourceIdsValue); } bits |= 0x800L; } } } /** * Adds one element to {@link UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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; } /** * Adds one element to {@link UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction#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 UpdateClientAction UpdateClientAction}. * @return An immutable instance of UpdateClientAction * @throws java.lang.IllegalStateException if any required attributes are missing */ public UpdateClientAction build() { if (initBits != 0) { throw new IllegalStateException(formatRequiredAttributesMessage()); } return UpdateClientAction.validate(new UpdateClientAction(this)); } private String formatRequiredAttributesMessage() { List attributes = new ArrayList<>(); if ((initBits & INIT_BIT_CLIENT_ID) != 0) attributes.add("clientId"); return "Cannot build UpdateClientAction, 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