Interface AuthSchemeOption.SignerPropertyConsumer

Enclosing interface:
AuthSchemeOption
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface AuthSchemeOption.SignerPropertyConsumer
Interface for operating on an SignerProperty value.
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> void
    accept(SignerProperty<T> propertyKey, T propertyValue)
    A method to operate on a SignerProperty and it's value.
  • Method Details

    • accept

      <T> void accept(SignerProperty<T> propertyKey, T propertyValue)
      A method to operate on a SignerProperty and it's value.
      Type Parameters:
      T - The type of the SignerProperty.
      Parameters:
      propertyKey - The SignerProperty.
      propertyValue - The value of the SignerProperty.