Class CompareAuthenticationHandler.Scheme

  • Enclosing class:
    CompareAuthenticationHandler

    public static class CompareAuthenticationHandler.Scheme
    extends java.lang.Object
    Represents a password scheme used for attribute comparison.
    • Constructor Summary

      Constructors 
      Constructor Description
      Scheme​(java.lang.String labelAndAlgorithm)
      Creates a new scheme.
      Scheme​(java.lang.String l, java.lang.String a)
      Creates a new scheme.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getAlgorithm()
      Returns the scheme algorithm.
      java.lang.String getLabel()
      Returns the scheme label.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Scheme

        public Scheme​(java.lang.String labelAndAlgorithm)
        Creates a new scheme.
        Parameters:
        labelAndAlgorithm - colon delimited label:algorithm
      • Scheme

        public Scheme​(java.lang.String l,
                      java.lang.String a)
        Creates a new scheme.
        Parameters:
        l - label
        a - algorithm
    • Method Detail

      • getLabel

        public java.lang.String getLabel()
        Returns the scheme label.
        Returns:
        label
      • getAlgorithm

        public java.lang.String getAlgorithm()
        Returns the scheme algorithm.
        Returns:
        algorithm
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object