Class NewUser


  • public class NewUser
    extends Object
    Holds information about the new user to create. Use method create(String) and the associated NewUser.Builder to create NewUser objects.
    Since:
    8.0.3
    API:
    This is a public API.
    • Method Detail

      • create

        public static NewUser.Builder create​(String name)

        Creates NewUser objects

        
         NewUser newUser = NewUser.create("Reto").fullName("Reto Weiss").password("gugus").toNewUser();
         
        Parameters:
        name - the name of the user
        Returns:
        builder to specify the attributes of the NewUser
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.