Package org.wildfly.security.auth.realm
Class FileSystemSecurityRealm.IntegrityResult
- java.lang.Object
-
- org.wildfly.security.auth.realm.FileSystemSecurityRealm.IntegrityResult
-
- Enclosing class:
- FileSystemSecurityRealm
public static class FileSystemSecurityRealm.IntegrityResult extends Object
-
-
Field Summary
Fields Modifier and Type Field Description private ArrayList<String>
identityNames
private boolean
valid
The result of the integrity check and invalid identities.
-
Constructor Summary
Constructors Constructor Description IntegrityResult(boolean valid, ArrayList<String> identityNames)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIdentityNames()
Returns a string of the identities that were found to be invalid.boolean
isValid()
The validity of the integrity check.
-
-
-
Method Detail
-
isValid
public boolean isValid()
The validity of the integrity check.- Returns:
true
if the integrity check was successful.
-
getIdentityNames
public String getIdentityNames()
Returns a string of the identities that were found to be invalid.- Returns:
- the list of identities that were found to be invalid.
-
-