Package com.install4j.api.windows
Class WinUser.AddUserResult
- java.lang.Object
-
- com.install4j.api.windows.WinUser.AddUserResult
-
- Enclosing class:
- WinUser
public static class WinUser.AddUserResult extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getGroupSid()
The SID (Security Identifier) of the used group in String form.WinUser.AddUserResultType
getType()
The result type (success / specific errors)java.lang.String
getUserSid()
The SID (Security Identifier) of the created user in String form.boolean
isGroupCreated()
Check if the local group was newly createdjava.lang.String
toString()
-
-
-
Method Detail
-
getType
public WinUser.AddUserResultType getType()
The result type (success / specific errors)- Returns:
- the result type
-
getUserSid
public java.lang.String getUserSid()
The SID (Security Identifier) of the created user in String form. This can be used to unambiguously specify the created user for actions such as 'install service' or 'add windows file rights'.- Returns:
- the user sid in String form
-
getGroupSid
public java.lang.String getGroupSid()
The SID (Security Identifier) of the used group in String form. This can be used to unambiguously specify the created group for actions such as 'add windows file rights'.- Returns:
- the group sid in String form
-
isGroupCreated
public boolean isGroupCreated()
Check if the local group was newly created- Returns:
true
if the group was created
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-