Class NamedKeyProperties

java.lang.Object
com.azure.spring.cloud.core.properties.authentication.NamedKeyProperties

public final class NamedKeyProperties extends Object
Represents a pojo containing the key and the name of the key.
  • Constructor Details

    • NamedKeyProperties

      public NamedKeyProperties()
  • Method Details

    • getName

      public String getName()
      Get the name of the named key.
      Returns:
      The name of the named key.
    • setName

      public void setName(String name)
      Set the name of the named key.
      Parameters:
      name - The name of the named key.
    • getKey

      public String getKey()
      Get the key of the named key.
      Returns:
      The key of the named key.
    • setKey

      public void setKey(String key)
      Set the key of the named key.
      Parameters:
      key - The key of the named key.