Package org.apache.syncope.common.lib.to
Class AuthProfileTO
- java.lang.Object
-
- org.apache.syncope.common.lib.to.AuthProfileTO
-
- All Implemented Interfaces:
Serializable
,BaseBean
,EntityTO
public class AuthProfileTO extends Object implements EntityTO
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AuthProfileTO.Builder
-
Constructor Summary
Constructors Constructor Description AuthProfileTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
List<GoogleMfaAuthAccount>
getGoogleMfaAuthAccounts()
List<GoogleMfaAuthToken>
getGoogleMfaAuthTokens()
List<ImpersonationAccount>
getImpersonationAccounts()
String
getKey()
List<MfaTrustedDevice>
getMfaTrustedDevices()
String
getOwner()
List<U2FDevice>
getU2FRegisteredDevices()
List<WebAuthnDeviceCredential>
getWebAuthnDeviceCredentials()
int
hashCode()
void
setKey(String key)
void
setOwner(String owner)
-
-
-
Method Detail
-
getOwner
public String getOwner()
-
setOwner
public void setOwner(String owner)
-
getImpersonationAccounts
public List<ImpersonationAccount> getImpersonationAccounts()
-
getGoogleMfaAuthTokens
public List<GoogleMfaAuthToken> getGoogleMfaAuthTokens()
-
getGoogleMfaAuthAccounts
public List<GoogleMfaAuthAccount> getGoogleMfaAuthAccounts()
-
getMfaTrustedDevices
public List<MfaTrustedDevice> getMfaTrustedDevices()
-
getWebAuthnDeviceCredentials
public List<WebAuthnDeviceCredential> getWebAuthnDeviceCredentials()
-
-