applicationmanagement/server/inc/amdeploymentcomponent.inl
changeset 18 7d11f9a6646f
parent 4 75a71fdb4c92
child 21 c707676bf59f
equal deleted inserted replaced
4:75a71fdb4c92 18:7d11f9a6646f
     1 /*
       
     2  * Copyright (c) 2009 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: Implementation of applicationmanagement components
       
    15  *
       
    16  */
       
    17 #include "amdeploymentcomponentdata.h"
       
    18 
       
    19 inline const TDesC8 &CDeploymentComponent::DownloadURI() const
       
    20     {
       
    21     return iDownloadURI;
       
    22     }
       
    23 
       
    24 inline const TUid & CDeploymentComponent::Uid() const
       
    25     {
       
    26     return iUid;
       
    27     }
       
    28 
       
    29 inline const TDeploymentComponentId &CDeploymentComponent::ComponentId() const
       
    30     {
       
    31     return iId;
       
    32     }
       
    33 
       
    34 inline const TDeploymentComponentName &CDeploymentComponent::ComponentName() const
       
    35     {
       
    36     return iName;
       
    37     }
       
    38 
       
    39 inline const TDeploymentComponentVersion &CDeploymentComponent::ComponentVersion() const
       
    40     {
       
    41     return iVersion;
       
    42     }
       
    43 
       
    44 inline TDeploymentComponentState CDeploymentComponent::State() const
       
    45     {
       
    46     return iState;
       
    47     }
       
    48 
       
    49 inline const TUint32 CDeploymentComponent::InternalId() const
       
    50     {
       
    51     return iInternalId;
       
    52     }
       
    53 
       
    54 inline const TDesC8& CDeploymentComponent::UserId() const
       
    55     {
       
    56     return iUserId;
       
    57     }
       
    58 
       
    59 inline const TDeploymentComponentState& CDeploymentComponent::OldState() const
       
    60     {
       
    61     return iOldState;
       
    62     }
       
    63 
       
    64 inline void CDeploymentComponent::StateChangeComplete()
       
    65     {
       
    66     iOldState = EDCSNone;
       
    67     }
       
    68 inline const TInt CDeploymentComponent::Status() const
       
    69     {
       
    70     return iStatus;
       
    71     }
       
    72 inline const TDeploymentComponentPkgId& CDeploymentComponent::PkgId() const
       
    73     {
       
    74     return iPkgID;
       
    75     }
       
    76 inline const TDeploymentComponentDescription& CDeploymentComponent::Description() const
       
    77     {
       
    78     return iDescription;
       
    79     }
       
    80 inline const TDeploymentComponentPkgIdRef& CDeploymentComponent::PkgIDRef() const
       
    81     {
       
    82     return iPkgIDRef;
       
    83     }
       
    84 inline const TDeploymentComponentPkgType& CDeploymentComponent::PkgType() const
       
    85     {
       
    86     return iPkgType;
       
    87     }
       
    88 
       
    89 inline const TMidletnameName& CDeploymentComponent::MidletName() const
       
    90     {
       
    91     return iMidletName;
       
    92     }
       
    93 inline const TMidletVendorName& CDeploymentComponent::MidletVendor() const
       
    94     {
       
    95     return iMideltVendorName;
       
    96     }
       
    97 inline const TMidletVersion& CDeploymentComponent::MidletVersion() const
       
    98     {
       
    99     return iMidletVersion;
       
   100     }