Account

org.beangle.security.authc.Account
trait Account extends Principal, Externalizable

Authentication Information

Attributes

Graph
Supertypes
trait Externalizable
trait Serializable
trait Principal
class Object
trait Matchable
class Any
Show all
Known subtypes

Members list

Value members

Abstract methods

def accountExpired: Boolean
def accountLocked: Boolean
def authorities: Array[String]
def categoryId: Int
def credentialExpired: Boolean
def credentialReadOnly: Boolean
def description: String
def details: Map[String, Any]
def disabled: Boolean
def isRemote: Boolean
def name: String
def permissions: Array[String]
def profiles: Array[Profile]
def remoteToken: Option[String]

Concrete methods

def getName: String
override def hashCode: Int

Calculate a hash code value for the object.

Calculate a hash code value for the object.

The default hashing algorithm is platform dependent.

Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

Attributes

Returns

the hash code value for this object.

Definition Classes
Principal -> Any

Inherited methods

def implies(x$0: Subject): Boolean

Attributes

Inherited from:
Principal
def readExternal(x$0: ObjectInput): Unit

Attributes

Inherited from:
Externalizable
def writeExternal(x$0: ObjectOutput): Unit

Attributes

Inherited from:
Externalizable