Class CreateUser
- java.lang.Object
-
- org.apache.sling.repoinit.parser.operations.Operation
-
- org.apache.sling.repoinit.parser.operations.CreateUser
-
@ProviderType public class CreateUser extends Operation
-
-
Constructor Summary
Constructors Constructor Description CreateUser(java.lang.String username, java.lang.String passwordEncoding, java.lang.String password)
Operation that creates a user.CreateUser(java.lang.String username, java.lang.String passwordEncoding, java.lang.String password, org.apache.sling.repoinit.parser.impl.WithPathOptions wpopt)
Operation that creates a user.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(OperationVisitor v)
@NotNull java.lang.String
asRepoInitString()
Converts this operation instance to a RepoInit string representation including the current operation parameters.java.lang.String
getPassword()
java.lang.String
getPasswordEncoding()
java.lang.String
getPath()
java.lang.String
getUsername()
boolean
isForcedPath()
-
Methods inherited from class org.apache.sling.repoinit.parser.operations.Operation
cleanupQuotedString, toString
-
-
-
-
Constructor Detail
-
CreateUser
public CreateUser(java.lang.String username, java.lang.String passwordEncoding, java.lang.String password)
Operation that creates a user.- Parameters:
username
- the name of the user to createpasswordEncoding
- optional encoding for the supplied passwordpassword
- optional password
-
CreateUser
public CreateUser(java.lang.String username, java.lang.String passwordEncoding, java.lang.String password, org.apache.sling.repoinit.parser.impl.WithPathOptions wpopt)
Operation that creates a user.- Parameters:
username
- the name of the user to createpasswordEncoding
- optional encoding for the supplied passwordpassword
- optional passwordwpopt
- optional path
-
-
Method Detail
-
accept
public void accept(OperationVisitor v)
-
asRepoInitString
@NotNull public @NotNull java.lang.String asRepoInitString()
Description copied from class:Operation
Converts this operation instance to a RepoInit string representation including the current operation parameters. The representation must be parsable back into an equivalent operation and must end with a OS-compatible line separator.- Specified by:
asRepoInitString
in classOperation
- Returns:
- the repoinit string for the operation
-
getUsername
public java.lang.String getUsername()
-
getPassword
public java.lang.String getPassword()
-
getPasswordEncoding
public java.lang.String getPasswordEncoding()
-
getPath
public java.lang.String getPath()
-
isForcedPath
public boolean isForcedPath()
-
-