summaryrefslogtreecommitdiffstats
path: root/mof/LMI_Software.mof
blob: 18d30358eac620bdc18ec0d9118bb5ff97a3d9c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * Copyright (C) 2012 Red Hat, Inc.  All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Authors: Michal Minar <miminar@redhat.com>
 */

#pragma locale ("en_US")
//#pragma namespace ("root/cimv2")

class LMI_SoftwareIdentity : CIM_SoftwareIdentity {

    [Implemented(true), Override, Description(
        "Unique identifier for installed or available package."
        " It's composed of OrgID and LocalID separated by ':',  where"
        " <OrgID> is LMI and LocalID is PKG:<PKG_NEVRA>. <PKG_NEVRA>"
        " is a string representing rpm package. Letters in NEVRA stand"
        " for name, epoch, version, release and architecture.")]
    string InstanceID;

    [Implemented(true), Override, Description("Package's summary.")]
    string Caption;
    
    [Implemented(true), Override]
    uint16 Classifications[];

    [Implemented(true), Override, Description("Package's description.")]
    string Description;

    [Implemented(true), Override, Description(
        "Package's NEVRA string. That is also part of InstanceID.")]
    string ElementName;

    [Implemented(true), Override]
    datetime InstallDate;

    [Implemented(true), Override]
    boolean IsEntity;

    [Implemented(true), Override, Description(
        "Name of package. This does not uniquely identify package"
        " installed on computer system.")]
    string Name;

    [Implemented(true), Override]
    string TargetTypes[];

    [Implemented(true), Override, Description(
        "Package's EVRA, in format: "
        "<epoch>:<version>-<release>.<architecture>")]
    string VersionString;

    [Implemented(true), Description("Package's epoch.")]
    uint32 Epoch;

    [Implemented(true), Description("Package's version.")]
    string Version;

    [Implemented(true), Description("Package's release.")]
    string Release;

    [Implemented(true), Description("Package's architecture.")]
    string Architecture;

};

class LMI_SystemSoftwareCollection : CIM_SystemSpecificCollection {

    [Implemented(true), Override]
    string InstanceID;

    [Implemented(true), Override]
    string Caption;

};

[Association]
class LMI_HostedSoftwareCollection : CIM_HostedCollection {

  [Override("Antecedent")]
  Linux_ComputerSystem REF Antecedent;

  [Override("Dependent")]
  LMI_SystemSoftwareCollection REF Dependent;
  
};

[Association]
class LMI_MemberOfSoftwareCollection : CIM_MemberOfCollection {

  [Override("Collection")]
  LMI_SystemSoftwareCollection REF Collection;

  [Override("Member")]
  LMI_SoftwareIdentity REF Member;

};