Codota Logo
DeviceSecretVerifierConfigType
Code IndexAdd Codota to your IDE (free)

How to use
DeviceSecretVerifierConfigType
in
software.amazon.awssdk.services.cognitoidentityprovider.model

Best Java code snippets using software.amazon.awssdk.services.cognitoidentityprovider.model.DeviceSecretVerifierConfigType (Showing top 16 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
origin: software.amazon.awssdk/cognitoidp

  @Override
  public DeviceSecretVerifierConfigType build() {
    return new DeviceSecretVerifierConfigType(this);
  }
}
origin: aws/aws-sdk-java-v2

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(passwordVerifier());
  hashCode = 31 * hashCode + Objects.hashCode(salt());
  return hashCode;
}
origin: software.amazon.awssdk/cognitoidp

public final DeviceSecretVerifierConfigType.Builder getDeviceSecretVerifierConfig() {
  return deviceSecretVerifierConfig != null ? deviceSecretVerifierConfig.toBuilder() : null;
}
origin: aws/aws-sdk-java-v2

/**
 * <p>
 * The configuration of the device secret verifier.
 * </p>
 * This is a convenience that creates an instance of the {@link DeviceSecretVerifierConfigType.Builder} avoiding
 * the need to create one manually via {@link DeviceSecretVerifierConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link DeviceSecretVerifierConfigType.Builder#build()} is called
 * immediately and its result is passed to {@link #deviceSecretVerifierConfig(DeviceSecretVerifierConfigType)}.
 * 
 * @param deviceSecretVerifierConfig
 *        a consumer that will call methods on {@link DeviceSecretVerifierConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #deviceSecretVerifierConfig(DeviceSecretVerifierConfigType)
 */
default Builder deviceSecretVerifierConfig(Consumer<DeviceSecretVerifierConfigType.Builder> deviceSecretVerifierConfig) {
  return deviceSecretVerifierConfig(DeviceSecretVerifierConfigType.builder().applyMutation(deviceSecretVerifierConfig)
      .build());
}
origin: software.amazon.awssdk/cognitoidp

/**
 * <p>
 * The configuration of the device secret verifier.
 * </p>
 * This is a convenience that creates an instance of the {@link DeviceSecretVerifierConfigType.Builder} avoiding
 * the need to create one manually via {@link DeviceSecretVerifierConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link DeviceSecretVerifierConfigType.Builder#build()} is called
 * immediately and its result is passed to {@link #deviceSecretVerifierConfig(DeviceSecretVerifierConfigType)}.
 * 
 * @param deviceSecretVerifierConfig
 *        a consumer that will call methods on {@link DeviceSecretVerifierConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #deviceSecretVerifierConfig(DeviceSecretVerifierConfigType)
 */
default Builder deviceSecretVerifierConfig(Consumer<DeviceSecretVerifierConfigType.Builder> deviceSecretVerifierConfig) {
  return deviceSecretVerifierConfig(DeviceSecretVerifierConfigType.builder().applyMutation(deviceSecretVerifierConfig)
      .build());
}
origin: software.amazon.awssdk/cognitoidp

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(passwordVerifier());
  hashCode = 31 * hashCode + Objects.hashCode(salt());
  return hashCode;
}
origin: software.amazon.awssdk/cognitoidp

public DeviceSecretVerifierConfigType unmarshall(JsonUnmarshallerContext context) throws Exception {
  DeviceSecretVerifierConfigType.Builder deviceSecretVerifierConfigTypeBuilder = DeviceSecretVerifierConfigType.builder();
origin: aws/aws-sdk-java-v2

@Override
public DeviceSecretVerifierConfigType build() {
  return new DeviceSecretVerifierConfigType(this);
}
origin: aws/aws-sdk-java-v2

public final DeviceSecretVerifierConfigType.Builder getDeviceSecretVerifierConfig() {
  return deviceSecretVerifierConfig != null ? deviceSecretVerifierConfig.toBuilder() : null;
}
origin: aws/aws-sdk-java-v2

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof DeviceSecretVerifierConfigType)) {
    return false;
  }
  DeviceSecretVerifierConfigType other = (DeviceSecretVerifierConfigType) obj;
  return Objects.equals(passwordVerifier(), other.passwordVerifier()) && Objects.equals(salt(), other.salt());
}
origin: software.amazon.awssdk/cognitoidp

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof DeviceSecretVerifierConfigType)) {
    return false;
  }
  DeviceSecretVerifierConfigType other = (DeviceSecretVerifierConfigType) obj;
  return Objects.equals(passwordVerifier(), other.passwordVerifier()) && Objects.equals(salt(), other.salt());
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("DeviceSecretVerifierConfigType").add("PasswordVerifier", passwordVerifier()).add("Salt", salt())
      .build();
}
origin: aws/aws-sdk-java-v2

/**
 * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
 * redacted from this string using a placeholder value.
 */
@Override
public String toString() {
  return ToString.builder("DeviceSecretVerifierConfigType").add("PasswordVerifier", passwordVerifier()).add("Salt", salt())
      .build();
}
origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "PasswordVerifier":
    return Optional.ofNullable(clazz.cast(passwordVerifier()));
  case "Salt":
    return Optional.ofNullable(clazz.cast(salt()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "PasswordVerifier":
    return Optional.ofNullable(clazz.cast(passwordVerifier()));
  case "Salt":
    return Optional.ofNullable(clazz.cast(salt()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(DeviceSecretVerifierConfigType deviceSecretVerifierConfigType, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(deviceSecretVerifierConfigType, "deviceSecretVerifierConfigType");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(deviceSecretVerifierConfigType.passwordVerifier(), PASSWORDVERIFIER_BINDING);
      protocolMarshaller.marshall(deviceSecretVerifierConfigType.salt(), SALT_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.cognitoidentityprovider.modelDeviceSecretVerifierConfigType

Javadoc

The device verifier against which it will be authenticated.

Most used methods

  • <init>
  • builder
  • passwordVerifier
    The password verifier.
  • salt
    The salt.
  • toBuilder

Popular in Java

  • Start an intent from android
  • scheduleAtFixedRate (ScheduledExecutorService)
  • notifyDataSetChanged (ArrayAdapter)
  • requestLocationUpdates (LocationManager)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registery of org.quartz
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now