nsILoginMetaInfo

An object that contains metadata for logins stored by the Login Manager. This data can usually be ignored by most users of the Login Manager, which will create and maintain appropriate default values.
1.0
66
Introduced
Gecko 1.9.1
Inherits from: nsISupports Last changed in Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1)

You can specifically modify these values by passing changes into nsILoginManager.modifyLogin() using an nsIPropertyBag2 object as the input.

Metadata properties are ignored when comparing logins.

Attributes

Attribute Type Description
guid AString The GUID to uniquely identify the login. This can be any arbitrary string, but a format as created by nsIUUIDGenerator is recommended. For example, "{d4e1a1f6-5ea0-40ee-bff5-da57982f21cf}"
timeCreated unsigned long long The time, in Unix Epoch milliseconds, when the login was first created.
timeLastUsed unsigned long long The time, in Unix Epoch milliseconds, when the login was last submitted in a form or used to begin an HTTP auth session.
timePasswordChanged unsigned long long The time, in Unix Epoch milliseconds, when the login's password was last modified.
timesUsed unsigned long The number of times the login was submitted in a form or used to begin an HTTP auth session.

See also