Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <IAPPrefs.h>
Link against: imcm.lib

Class CImIAPPreferences

class CImIAPPreferences : public CBase;

Description

Encapsulates preferences relating to IAPs for an email service.

An IAP defines all of the variable factors that determine how an Internet connection is made. These variable factors can include the bearer (CDMA, GSM or GPRS), dial-in number. network login names and passwords.

The Comms Database is capable of storing details of several IAPs, which can then be used to initiate different types of connection. The database also stores the preference order of the IAPs: this defines which IAP should be used as the first choice, and also an optional second choice to be used if the first choice is not available.

The CImIAPPreferences class associates a first choice, and optionally a second choice IAP to use with a particular email service. The preference object is stored in the service entry's message store.

For SMTP, if no object has been stored in the service, then the SMTP client will attempt to use any default Internet settings in the Comms Database, or will use the existing Internet connection if one does already exist. Note that SMTP sessions will normally fail to send any email messages if the SMTP session is not created using an IAP which the SMTP server does not accept.

Note that in Symbian OS v6.0 a single IAP was associated with an email service entry through the iMtmData1 field.

Derivation

Members

Defined in CImIAPPreferences:

Inherited from CBase:


Construction and destruction


NewLC()

IMPORT_C static CImIAPPreferences* NewLC();

Description

Allocates and creates a new CImIAPPreferences object, leaving the object on the cleanup stack.

Return value

CImIAPPreferences *

New CImIAPPreferences object


~CImIAPPreferences()

IMPORT_C ~CImIAPPreferences();

Description

Destructor.

[Top]


Member functions


Version()const

IMPORT_C TInt Version() const;

Description

Gets the version number of the preferences structure.

Return value

TInt

The version number of the preferences structure


NumberOfIAPs()const

IMPORT_C TInt NumberOfIAPs() const;

Description

Gets the number of IAPs that are assigned to the current service entry.

Return value

TInt

Number of IAPs


IAPPreference(TInt)const

IMPORT_C TImIAPChoice IAPPreference(TInt aPreference) const;

Description

Gets the IAP choice of the given preference value.

Note that preference values run from 0 to n, with 0 being the first choice. Currently the number of IAPs per service is limited to two.

Parameters

TInt aPreference

Preference value

Return value

TImIAPChoice

IAP choice for the given preference value


AddIAPL(TImIAPChoice,TInt)

IMPORT_C void AddIAPL(TImIAPChoice aIap, TInt aIndex=0);

Description

Adds the given IAP with the given preference value.

Any existing IAPs of equal or lower preference will have their preference lowered further to make way for the new IAP. For example, if an IAP of preference value 0 is already associated with the current service and another IAP of preference 0 is added, then the existing IAP will be relegated to preference value 1. Currently the number of IAPs per service is limited to two.

Parameters

TImIAPChoice aIap

IAP

TInt aIndex

Preference value for this IAP

Leave codes

Leaves

with KErrNotSupported if a SNAP is defined


RemoveIAPL(TInt)

IMPORT_C void RemoveIAPL(TInt aPreferenceNumber);

Description

Removes the IAP of the given preference.

Any existing IAPs of lower preference will have their preference increased to fill the gap created by the IAP that has been removed. For example, if two IAPs are associated with the current service with the preference values 0 and 1. If the IAP of preference value 0 is later removed, then the other IAP is promoted to preference value 0. It should be noted that adding or removing an IAP from a CImIAPPreferences object does not change any global IAP settings, it only changes the behaviour associated with a particular with a particular email service.

Parameters

TInt aPreferenceNumber

Preference value


FindIAPL(TUint32,TInt &)const

IMPORT_C TInt FindIAPL(TUint32 aIAP, TInt &aLocation) const;

Description

Finds the preference value for a specified IAP.

Parameters

TUint32 aIAP

The identifier of the IAP to find, as specified in the CommDb record for the IAP

TInt &aLocation

On return, if the specified IAP was found, its preference value

Return value

TInt

KErrNone if the specified IAP was found; KErrNotFound if not.


ReplaceIAPL(TInt,TImIAPChoice)

IMPORT_C void ReplaceIAPL(TInt aPreferenceNumber, TImIAPChoice aIap);

Description

Replaces the current IAP at a specified preference value.

A panic occurs if an IAP is not already set for the preference value.

Parameters

TInt aPreferenceNumber

The preference value for which to set the IAP

TImIAPChoice aIap

The new IAP value for the preference value


SNAPDefined()const

IMPORT_C TBool SNAPDefined() const;

Description

Used to check if SNAP settings are defined for this Email account.

Return value

TBool

A boolean is returned set as ETrue if a SNAP has been provisioned for the email account.


SNAPPreference()const

IMPORT_C TUint32 SNAPPreference() const;

Description

Returns the current SNAP Id for the email account.

Return value

TUint32

The current SNAP id for the email account.


SetSNAPL(TUint32)

IMPORT_C void SetSNAPL(TUint32 aSnap);

Description

Sets the SNAP id for the email account, to the value specified in aSnap.

Parameters

TUint32 aSnap

Specifies the new SNAP id to be used by this email account.

Leave codes

Leaves

with KErrNotSupported if IAP list already defined


RemoveSNAP()

IMPORT_C void RemoveSNAP();

Description

Removes the SNAP id for this Email account.

[Top]


Member enumerations


Enum anonymous

Interface status: deprecated

n/a

Description

KSanityCheckOldWins

KSanityCheck

[Top]


Member data


KUidMsgFileInternetAccessPreferences

const TUid KUidMsgFileInternetAccessPreferences;

Description

ID of the stream used to store IAP preference information in a message store.