Wt  3.3.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
Public Member Functions
Wt::Auth::Login Class Reference

A class that manages the current login state. More...

#include <Wt/Auth/Login>

Inheritance diagram for Wt::Auth::Login:
Inheritance graph
[legend]

List of all members.

Public Member Functions

 Login ()
 Default constructor.
void login (const User &user, LoginState state=StrongLogin)
 Logs a user in.
void logout ()
 Logs the current user out.
LoginState state () const
 Returns the current login state.
bool loggedIn () const
 Returns whether a user has successfully logged in.
const Useruser () const
 Returns the user currently identified.
Signalchanged ()
 Signal that indicates login changes.

Detailed Description

A class that manages the current login state.

This is a model class which is typically associated with a single session, for the duration of the session.

Widgets that implement authentication (and thus produce authentication changes), will indicate their result in this object using the login() or logout() methods.

Widgets that want to react to login state changes (typically, as user logging in or out) should listen to the changed() signal of this object.

See also:
AuthWidget

Constructor & Destructor Documentation

Default constructor.

Creates a login object in the LoggedOut state.


Member Function Documentation

Signal that indicates login changes.

This signal is emitted as a result of login() or logout(). If no user was logged in, then a changed() signal does not necessarily mean that user is loggedIn() as the user may have been identified correctly but have a DisabledLogin state() for example.

bool Wt::Auth::Login::loggedIn ( ) const

Returns whether a user has successfully logged in.

This returns true only if the state is WeakLogin or StrongLogin.

See also:
state()
void Wt::Auth::Login::login ( const User user,
LoginState  state = StrongLogin 
)

Logs a user in.

A user can be logged in using either a DisabledLogin, WeakLogin or StrongLogin state. The login state is forced to DisabledLogin if User::status() returns Disabled.

See also:
logout(), loggedIn()

Logs the current user out.

Sets the state to LoggedOut.

Returns the current login state.

See also:
login(), logout()
const User & Wt::Auth::Login::user ( ) const

Returns the user currently identified.

Returns the user currently identified.

Note:
This may also be a user whose account is currently disabled.
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator

Generated on Tue Mar 22 2016 for the C++ Web Toolkit (Wt) by doxygen 1.7.6.1