Package com.strongdm.api
Interface Account
public interface Account
Accounts are users that have access to strongDM. The types of accounts are:
1. **Users:** humans who are authenticated through username and password or SSO.
2. **Service Accounts:** machines that are authenticated using a service token.
3. **Tokens** are access keys with permissions that can be used for authentication.
-
Method Summary
Modifier and TypeMethodDescriptiongetId()
Returns the unique identifier of the Account.boolean
Returns whether the Account is suspended.getTags()
Returns the tags of the Account.void
setSuspended
(boolean suspended) Sets whether the Account is suspended.void
Sets the tags of the Account.
-
Method Details
-
getId
String getId()Returns the unique identifier of the Account. -
getSuspended
boolean getSuspended()Returns whether the Account is suspended. -
setSuspended
void setSuspended(boolean suspended) Sets whether the Account is suspended. -
getTags
Returns the tags of the Account. -
setTags
Sets the tags of the Account.
-