~ubuntu-branches/ubuntu/trusty/opendrim-lmp-simpleidentitymanagement/trusty-proposed

« back to all changes in this revision

Viewing changes to OpenDRIM_GroupIdentity/cmpiOpenDRIM_GroupIdentity.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Guillaume BOTTEX
  • Date: 2010-06-21 15:54:00 UTC
  • Revision ID: james.westby@ubuntu.com-20100621155400-myesv5hd2f3s8x9y
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*################################################################################
 
2
# Linux Management Providers (LMP), Simple Identity Management provider package
 
3
# Copyright (C) 2007 Frederic Desmons, ETRI <desmons@etri.re.kr, desmons_frederic@yahoo.fr>
 
4
 
5
# This program is being developed under the "OpenDRIM" project.
 
6
# The "OpenDRIM" project web page: http://opendrim.sourceforge.net
 
7
# The "OpenDRIM" project mailing list: opendrim@googlegroups.com
 
8
 
9
# This program is free software; you can redistribute it and/or
 
10
# modify it under the terms of the GNU General Public License
 
11
# as published by the Free Software Foundation; version 2
 
12
# of the License.
 
13
 
14
# This program is distributed in the hope that it will be useful,
 
15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
# GNU General Public License for more details.
 
18
 
19
# You should have received a copy of the GNU General Public License
 
20
# along with this program; if not, write to the Free Software
 
21
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
22
#################################################################################
 
23
 
 
24
#################################################################################
 
25
# To contributors, please leave your contact information in this section
 
26
# AND comment your changes in the source code.
 
27
 
28
# Modified by 2009 Khahramon NURIDDINOV, TUIT <qahramon0786@gmail.com>
 
29
# Modified by 2009 Guillaume BOTTEX, ETRI <guillaumebottex@etri.re.kr>
 
30
################################################################################*/
 
31
 
 
32
#include "cmpiOpenDRIM_GroupIdentity.h"
 
33
 
 
34
CMPIObjectPath* Simple_Identity_Management_OpenDRIM_GroupIdentity_toCMPIObjectPath(const CMPIBroker* broker, const OpenDRIM_GroupIdentity& instance) {
 
35
        _E_;
 
36
        Objectpath op(broker, OpenDRIM_GroupIdentity_classnames[0], OpenDRIM_GroupIdentity_NAMESPACE);
 
37
 
 
38
        if (!instance.InstanceID_isNULL)
 
39
                op.addKey("InstanceID", instance.InstanceID);
 
40
 
 
41
        _L_;
 
42
        return op.getHdl();
 
43
}
 
44
 
 
45
CMPIInstance* Simple_Identity_Management_OpenDRIM_GroupIdentity_toCMPIInstance(const CMPIBroker* broker, const OpenDRIM_GroupIdentity& instance) {
 
46
        _E_;
 
47
        Objectpath op(broker, Simple_Identity_Management_OpenDRIM_GroupIdentity_toCMPIObjectPath(broker, instance));
 
48
        Instance ci(broker, op);
 
49
 
 
50
        if (!instance.Caption_isNULL)
 
51
                ci.setProperty("Caption", instance.Caption);
 
52
 
 
53
        if (!instance.Description_isNULL)
 
54
                ci.setProperty("Description", instance.Description);
 
55
 
 
56
        if (!instance.ElementName_isNULL)
 
57
                ci.setProperty("ElementName", instance.ElementName);
 
58
 
 
59
        if (!instance.CurrentlyAuthenticated_isNULL)
 
60
                ci.setProperty("CurrentlyAuthenticated", instance.CurrentlyAuthenticated);
 
61
 
 
62
        _L_;
 
63
        return ci.getHdl();
 
64
}
 
65
 
 
66
void Simple_Identity_Management_OpenDRIM_GroupIdentity_toCPP(const CMPIBroker* broker, const CMPIObjectPath* ref, OpenDRIM_GroupIdentity& instance) {
 
67
        _E_;
 
68
        Objectpath op(broker, (CMPIObjectPath*) ref);
 
69
 
 
70
        if (op.getKey("InstanceID", instance.InstanceID) == OK)
 
71
                instance.InstanceID_isNULL = false;
 
72
 
 
73
        _L_;
 
74
}
 
75
 
 
76
void Simple_Identity_Management_OpenDRIM_GroupIdentity_toCPP(const CMPIBroker* broker, const CMPIInstance* ci, OpenDRIM_GroupIdentity& instance) {
 
77
        _E_;
 
78
        Instance inst(broker, (CMPIInstance*) ci);
 
79
 
 
80
        if (inst.getProperty("Caption", instance.Caption) == OK)
 
81
                instance.Caption_isNULL = false;
 
82
 
 
83
        if (inst.getProperty("Description", instance.Description) == OK)
 
84
                instance.Description_isNULL = false;
 
85
 
 
86
        if (inst.getProperty("ElementName", instance.ElementName) == OK)
 
87
                instance.ElementName_isNULL = false;
 
88
 
 
89
        if (inst.getProperty("InstanceID", instance.InstanceID) == OK)
 
90
                instance.InstanceID_isNULL = false;
 
91
 
 
92
        if (inst.getProperty("CurrentlyAuthenticated", instance.CurrentlyAuthenticated) == OK)
 
93
                instance.CurrentlyAuthenticated_isNULL = false;
 
94
 
 
95
        _L_;
 
96
}
 
97