My Project
SignOn::IdentityInfo Class Reference

Contains identity information. More...

#include <SignOn/IdentityInfo>

Public Types

enum  CredentialsType { Other = 0 , Application = 1 << 0 , Web = 1 << 1 , Network = 1 << 2 }
 Values used to describe the type of the identity. More...
 

Public Member Functions

 IdentityInfo ()
 Creates a new empty IdentityInfo object.
 
 IdentityInfo (const IdentityInfo &other)
 Copy constructor.
 
IdentityInfooperator= (const IdentityInfo &other)
 Assignment operator.
 
 IdentityInfo (const QString &caption, const QString &userName, const QMap< MethodName, MechanismsList > &methods)
 Creates a new IdentityInfo object with given values. More...
 
 ~IdentityInfo ()
 Destructor.
 
void setId (const quint32 id)
 Sets the numeric identifier for the credentials record. More...
 
quint32 id () const
 Returns the identity identifier. More...
 
void setSecret (const QString &secret, const bool storeSecret=true)
 Sets the secret. More...
 
QString secret () const
 Gets the secret. More...
 
bool isStoringSecret () const
 Returns whether secret is to be stored. More...
 
void setStoreSecret (const bool storeSecret)
 Sets whether the secret is stored or not. More...
 
void setUserName (const QString &userName)
 Sets the username. More...
 
const QString userName () const
 Returns the username. More...
 
void setCaption (const QString &caption)
 Sets a human readable caption of the identity. More...
 
const QString caption () const
 Returns a human-readable representation of the identity. More...
 
void setRealms (const QStringList &realms)
 Sets the realms, e.g. More...
 
QStringList realms () const
 Gets the realms, e.g. More...
 
void setOwner (const QString &ownerToken)
 Sets application token that owns identity, therefore defining the applications that will be able to modify this specific set of credentials. More...
 
QString owner () const
 Gets the owner application token that is defining the applications that are able to modify this specific set of credentials. More...
 
void setAccessControlList (const QStringList &accessControlList)
 Sets the list of access control system tokens, therefore defining the applications that will be able to access this specific set of credentials. More...
 
void setAccessControlList (const SecurityContextList &accessControlList)
 Sets the list of access control tokens, therefore defining the applications that will be able to access this specific set of credentials. More...
 
QStringList accessControlList () const
 Gets the list of access control system tokens defining the applications that are able to access this specific set of credentials. More...
 
SecurityContextList accessControlListFull () const
 Gets the list of access control application tokens defining the applications that are able to access this specific set of credentials. More...
 
void setMethod (const MethodName &method, const MechanismsList &mechanismsList)
 Sets the method into identity info. More...
 
void removeMethod (const MethodName &method)
 Removes a method from identity info. More...
 
void setType (CredentialsType type)
 Sets the type into identity info. More...
 
CredentialsType type () const
 Retrieves the identity type from identity info. More...
 
QList< MethodNamemethods () const
 Lists all methods in identity info. More...
 
MechanismsList mechanisms (const MethodName &method) const
 Lists the all mechanisms for certain method in identity info. More...
 
void setRefCount (qint32 refCount)
 Sets the refcount into identity info. More...
 
qint32 refCount () const
 Retrieves the refcount from identity info. More...
 

Detailed Description

Contains identity information.

This information is stored into database.

See also
queryIdentities()

Definition at line 64 of file identityinfo.h.

Member Enumeration Documentation

◆ CredentialsType

Values used to describe the type of the identity.

Attention
Mixed types, i.e Application|Web are not yet supported. Just single types work for the time being.

Definition at line 76 of file identityinfo.h.

Constructor & Destructor Documentation

◆ IdentityInfo()

SignOn::IdentityInfo::IdentityInfo ( const QString &  caption,
const QString &  userName,
const QMap< MethodName, MechanismsList > &  methods 
)

Creates a new IdentityInfo object with given values.

Parameters
captionDescription of identity
userNameUsername
methodsAllowed methods for identity

Definition at line 57 of file identityinfo.cpp.

References caption(), methods(), and userName().

Member Function Documentation

◆ accessControlList()

QStringList SignOn::IdentityInfo::accessControlList ( ) const

Gets the list of access control system tokens defining the applications that are able to access this specific set of credentials.

Attention
This is accessible only to the owner application.
Returns
The access control system tokens which defines the applications allowed to access this set of credentials.

Definition at line 133 of file identityinfo.cpp.

Referenced by setAccessControlList().

◆ accessControlListFull()

SecurityContextList SignOn::IdentityInfo::accessControlListFull ( ) const

Gets the list of access control application tokens defining the applications that are able to access this specific set of credentials.

Attention
This is accessible only to the owner application.
Returns
The access control tokens which defines the applications allowed to access this set of credentials.

Definition at line 149 of file identityinfo.cpp.

◆ caption()

const QString SignOn::IdentityInfo::caption ( ) const

Returns a human-readable representation of the identity.

Returns
Human-readable representation of the identity.

Definition at line 98 of file identityinfo.cpp.

Referenced by IdentityInfo(), and setCaption().

◆ id()

quint32 SignOn::IdentityInfo::id ( ) const

Returns the identity identifier.

Returns
Identifier for the identity

Definition at line 78 of file identityinfo.cpp.

◆ isStoringSecret()

bool SignOn::IdentityInfo::isStoringSecret ( ) const

Returns whether secret is to be stored.

Returns
true Whether the secret is being stored or not.

Definition at line 165 of file identityinfo.cpp.

◆ mechanisms()

MechanismsList SignOn::IdentityInfo::mechanisms ( const MethodName method) const

Lists the all mechanisms for certain method in identity info.

Parameters
methodMethod name to list mechanisms
Returns
List of mechanisms

Definition at line 201 of file identityinfo.cpp.

◆ methods()

QList< MethodName > SignOn::IdentityInfo::methods ( ) const

Lists all methods in identity info.

Returns
Param method method name to remove.

Definition at line 196 of file identityinfo.cpp.

Referenced by IdentityInfo().

◆ owner()

QString SignOn::IdentityInfo::owner ( ) const

Gets the owner application token that is defining the applications that are able to modify this specific set of credentials.

Attention
This is accessible only to the owner application.
Returns
The access control token which defines the applications allowed to modify this set of credentials.

Definition at line 118 of file identityinfo.cpp.

◆ realms()

QStringList SignOn::IdentityInfo::realms ( ) const

Gets the realms, e.g.

URL's with which the Identity using this IdentityInfo works with.

Returns
List of supported realms.

Definition at line 108 of file identityinfo.cpp.

Referenced by setRealms().

◆ refCount()

qint32 SignOn::IdentityInfo::refCount ( ) const

Retrieves the refcount from identity info.

Returns
Refcount for this IdentityInfo

Definition at line 213 of file identityinfo.cpp.

Referenced by setRefCount().

◆ removeMethod()

void SignOn::IdentityInfo::removeMethod ( const MethodName method)

Removes a method from identity info.

Parameters
methodMethod name to remove

Definition at line 181 of file identityinfo.cpp.

◆ secret()

QString SignOn::IdentityInfo::secret ( ) const

Gets the secret.

If this object was retrieved from the database, the returned secret might be an empty string.

Returns
The secret, when allowed, or an empty string.

Definition at line 154 of file identityinfo.cpp.

Referenced by setSecret().

◆ setAccessControlList() [1/2]

void SignOn::IdentityInfo::setAccessControlList ( const QStringList &  accessControlList)

Sets the list of access control system tokens, therefore defining the applications that will be able to access this specific set of credentials.

Parameters
accessControlListList of access control system tokens

Definition at line 123 of file identityinfo.cpp.

References accessControlList().

◆ setAccessControlList() [2/2]

void SignOn::IdentityInfo::setAccessControlList ( const SecurityContextList accessControlList)

Sets the list of access control tokens, therefore defining the applications that will be able to access this specific set of credentials.

Parameters
accessControlListList of access control tokens

Definition at line 144 of file identityinfo.cpp.

References accessControlList().

◆ setCaption()

void SignOn::IdentityInfo::setCaption ( const QString &  caption)

Sets a human readable caption of the identity.

Parameters
captionCaption

Definition at line 93 of file identityinfo.cpp.

References caption().

◆ setId()

void SignOn::IdentityInfo::setId ( const quint32  id)

Sets the numeric identifier for the credentials record.

Calling this method makes only sense when handling the Identity::credentialsStored() signal.

Parameters
idThe numeric identifier of the credentials.

Definition at line 73 of file identityinfo.cpp.

◆ setMethod()

void SignOn::IdentityInfo::setMethod ( const MethodName method,
const MechanismsList mechanismsList 
)

Sets the method into identity info.

If the given method is not included, a new one will be added. If it is already set, the mechanism list assosiated to it is updated. an empty list will clear the mechanisms. These values are used to limit Identity to use the specified methods and mechanisms.

Parameters
methodMethod name to change
mechanismsListlist of mechanisms that are allowed

Definition at line 175 of file identityinfo.cpp.

◆ setOwner()

void SignOn::IdentityInfo::setOwner ( const QString &  ownerToken)

Sets application token that owns identity, therefore defining the applications that will be able to modify this specific set of credentials.

Parameters
ownerTokenowner token

Definition at line 113 of file identityinfo.cpp.

◆ setRealms()

void SignOn::IdentityInfo::setRealms ( const QStringList &  realms)

Sets the realms, e.g.

URL's with which the Identity using this IdentityInfo shall work with.

Parameters
realmsList of the realms to be set.

Definition at line 103 of file identityinfo.cpp.

References realms().

◆ setRefCount()

void SignOn::IdentityInfo::setRefCount ( qint32  refCount)

Sets the refcount into identity info.

The type is used to generically identify where this identity is being used.

Note
Server can restrict changes to differ +-1 from previous.
Parameters
refCountSet refcount

Definition at line 206 of file identityinfo.cpp.

References refCount().

◆ setSecret()

void SignOn::IdentityInfo::setSecret ( const QString &  secret,
const bool  storeSecret = true 
)

Sets the secret.

When performing a challenge on the owner Identity object, if the secret is set on its corresponding IdentityInfo, it will be added to the parameter list that is passed to the corresponding authentication plugin challenge implementation. By default a newly created IdentityInfo does not contain a secret and has a policy of not storing any. If the secret is set the default policy will be to store it. This behaviour can also be set with IdentityInfo::setStoreSecret().

See also
PluginInterface::secretKey
PluginInterface::challenge
Parameters
secret
storeSecretWhether the secret is stored or not

Definition at line 159 of file identityinfo.cpp.

References secret().

◆ setStoreSecret()

void SignOn::IdentityInfo::setStoreSecret ( const bool  storeSecret)

Sets whether the secret is stored or not.

Parameters
storeSecretWhether the secret must be stored in the DB.

Definition at line 170 of file identityinfo.cpp.

◆ setType()

void SignOn::IdentityInfo::setType ( IdentityInfo::CredentialsType  type)

Sets the type into identity info.

The type is used to generically identify where this identity is being used.

Attention
If this method is not called, the IdentityInfo type will default to SignOn::OtherIdentity.
Parameters
typeType we want to assign to this IdentityInfo

Definition at line 186 of file identityinfo.cpp.

References type().

◆ setUserName()

void SignOn::IdentityInfo::setUserName ( const QString &  userName)

Sets the username.

See also
userNameKey
Parameters
userNameUsername

Definition at line 83 of file identityinfo.cpp.

References userName().

◆ type()

IdentityInfo::CredentialsType SignOn::IdentityInfo::type ( ) const

Retrieves the identity type from identity info.

Returns
The identity type for this IdentityInfo

Definition at line 191 of file identityinfo.cpp.

Referenced by setType().

◆ userName()

const QString SignOn::IdentityInfo::userName ( ) const

Returns the username.

Returns
Username for the identity

Definition at line 88 of file identityinfo.cpp.

Referenced by IdentityInfo(), and setUserName().


The documentation for this class was generated from the following files: