imservices/ossprotocoladaptation/inc/ossadappanics.h
branchRCL_3
changeset 20 7797b2f86d2b
parent 18 b6f2a363adf7
child 25 cfe5eb8bb9ca
equal deleted inserted replaced
18:b6f2a363adf7 20:7797b2f86d2b
     1 /*
       
     2 * Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  oss adapter plugin panics
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __OSSADAPPANICS_H__
       
    19 #define __OSSADAPPANICS_H__
       
    20 
       
    21 //  INCLUDES
       
    22 #include    <e32std.h>
       
    23 
       
    24 // CONSTANTS
       
    25 /**
       
    26 * Oss Adaptation Library panic category.
       
    27 */
       
    28 _LIT ( KOssAdapPanic, "OssAdaptation" );
       
    29 
       
    30 /**
       
    31 * OSS Adaptation Library Auth interface
       
    32 */
       
    33 
       
    34 _LIT ( KOssProtocolPresenceAuthorization, "CImpsProtocolPresenceAuthorization" );
       
    35 
       
    36 /**
       
    37 * OSS Adaptation Library Publishing panic category
       
    38 */
       
    39 
       
    40 _LIT ( KOssProtocolPresencePublishing, "CImpsProtocolPresencePublishing" );
       
    41 
       
    42 /**
       
    43 * Oss adapter Library watching panic category.
       
    44 */
       
    45 
       
    46 _LIT ( KOssProtocolPresenceWatching, "CImpsProtocolPresenceWatching" );
       
    47 
       
    48 /**
       
    49 * Oss adapter Library groups panic category.
       
    50 */
       
    51 
       
    52 _LIT ( KOssProtocolPresentityGroups, "CImpsProtocolPresentityGroups" );
       
    53 
       
    54 /**
       
    55 * OSS adapter plugin library panic reasons.
       
    56 *
       
    57 * Following panic reasons are used in
       
    58 * oss adapter plugin library panics.
       
    59 *
       
    60 * @since 3.0
       
    61 */
       
    62 enum TOssAdapterPluginPanics
       
    63 	{
       
    64 	ESesionConsistencyLost                      = 1,
       
    65 	EOpIdConsistencyLost                        = 2,
       
    66 	ENoActiveOperations                         = 3,
       
    67 	EUnknownUnumeration                         = 4,
       
    68 	EReferenceCountUnderflow                    = 5,
       
    69 	EIlegalSingletonDeletion                    = 6,
       
    70 	EUnknowPureData                             = 7,
       
    71 	EListenerAlreadyActive                      = 8,
       
    72 	ELogInDataNotValid                          = 9
       
    73 
       
    74 	};
       
    75 
       
    76 
       
    77 #endif  //__OSSADAPPANICS_H__
       
    78 
       
    79 //  End of File
       
    80