Class UserIdentity


  • public class UserIdentity
    extends Object
    The definition of the user identity under which the Task is run. Specify either the userName or autoUser property, but not both.
    • Constructor Detail

      • UserIdentity

        public UserIdentity()
    • Method Detail

      • userName

        public String userName()
        Get the userName and autoUser properties are mutually exclusive; you must specify one but not both.
        Returns:
        the userName value
      • withUserName

        public UserIdentity withUserName​(String userName)
        Set the userName and autoUser properties are mutually exclusive; you must specify one but not both.
        Parameters:
        userName - the userName value to set
        Returns:
        the UserIdentity object itself.
      • autoUser

        public AutoUserSpecification autoUser()
        Get the userName and autoUser properties are mutually exclusive; you must specify one but not both.
        Returns:
        the autoUser value
      • withAutoUser

        public UserIdentity withAutoUser​(AutoUserSpecification autoUser)
        Set the userName and autoUser properties are mutually exclusive; you must specify one but not both.
        Parameters:
        autoUser - the autoUser value to set
        Returns:
        the UserIdentity object itself.