public static class SecurityOps.Domain
extends java.lang.Object
_sec-authentication-domain.d system table.
The Domain accessCode is the unencrypted value of the access code.
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
accessCode
The domain's access code.
|
private java.lang.String |
description
The domain's description.
|
private boolean |
enabled
Flag indicating if this domain is enabled.
|
private java.lang.String |
name
The domain's name.
|
private SecurityOps.DomainType |
type
The domain's type.
|
| Constructor and Description |
|---|
Domain(SecurityOps.Domain src)
Create a new domain and copy the state from the specified source.
|
Domain(java.lang.String name,
SecurityOps.DomainType type,
boolean enabled,
java.lang.String description,
java.lang.String accessCode)
Create a new domain and initialize it with the given state.
|
Domain(java.lang.String name,
SecurityOps.DomainType type,
java.lang.String description,
java.lang.String accessCode)
Create a new domain and initialize it with the given state.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAccessCode()
Get domain access code.
|
java.lang.String |
getDescription()
Get domain description.
|
java.lang.String |
getName()
Get the domain name.
|
SecurityOps.DomainType |
getType()
Get the domain type.
|
boolean |
isEnabled()
Checks if this domain is enabled.
|
private final java.lang.String name
private SecurityOps.DomainType type
private boolean enabled
private java.lang.String description
private java.lang.String accessCode
public Domain(java.lang.String name,
SecurityOps.DomainType type,
java.lang.String description,
java.lang.String accessCode)
name - The domain's name.type - The domain's type.description - The domain's description.accessCode - The domain's access code.public Domain(java.lang.String name,
SecurityOps.DomainType type,
boolean enabled,
java.lang.String description,
java.lang.String accessCode)
name - The domain's name.type - The domain's type.enabled - Flag indicating if this domain is enabled.description - The domain's description.accessCode - The domain's access code.public Domain(SecurityOps.Domain src)
src - The source domain.public java.lang.String getName()
public SecurityOps.DomainType getType()
public boolean isEnabled()
true if this domain is enabled.public java.lang.String getDescription()
public java.lang.String getAccessCode()