Class APIAuthenticator.UserData

  • Enclosing class:
    APIAuthenticator

    public static class APIAuthenticator.UserData
    extends java.lang.Object
    This class is a holder for the user credentials. It is exposed as a script bean by the name "userdata". Its public member variables "username" and "password" could be used in the script by the custom authentication process.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String password
      The password to use for the authenticating the user.
      java.lang.String username
      The name of the user to authenticate.
    • Constructor Summary

      Constructors 
      Constructor Description
      UserData()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • username

        public java.lang.String username
        The name of the user to authenticate.
      • password

        public java.lang.String password
        The password to use for the authenticating the user.
    • Constructor Detail

      • UserData

        public UserData()