(file) Return to Application_SystemSoftware.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIM29

  1 a.dunfey 1.1 // ===================================================================
  2              // Title: Application_SystemSoftware
  3              // $State: Exp $
  4              // $Date: 2004/11/29 18:31:41 $
  5              // $RCSfile: Application_SystemSoftware.mof,v $
  6              // $Revision: 1.3.2.3 $
  7              // ===================================================================
  8              //#pragma inLine ("Includes/copyright.inc")
  9              // Copyright 1998-2005 Distributed Management Task Force, Inc. (DMTF).
 10              // All rights reserved.
 11              // DMTF is a not-for-profit association of industry members dedicated
 12              // to promoting enterprise and systems management and interoperability.
 13              // DMTF specifications and documents may be reproduced for uses
 14              // consistent with this purpose by members and non-members,
 15              // provided that correct attribution is given.
 16              // As DMTF specifications may be revised from time to time,
 17              // the particular version and release date should always be noted.
 18              // 
 19              // Implementation of certain elements of this standard or proposed
 20              // standard may be subject to third party patent rights, including
 21              // provisional patent rights (herein "patent rights"). DMTF makes
 22 a.dunfey 1.1 // no representations to users of the standard as to the existence
 23              // of such rights, and is not responsible to recognize, disclose, or
 24              // identify any or all such third party patent right, owners or
 25              // claimants, nor for any incomplete or inaccurate identification or
 26              // disclosure of such rights, owners or claimants. DMTF shall have no
 27              // liability to any party, in any manner or circumstance, under any
 28              // legal theory whatsoever, for failure to recognize, disclose, or
 29              // identify any such third party patent rights, or for such party's
 30              // reliance on the standard or incorporation thereof in its product,
 31              // protocols or testing procedures. DMTF shall have no liability to
 32              // any party implementing such standard, whether such implementation
 33              // is foreseeable or not, nor to any patent owner or claimant, and shall
 34              // have no liability or responsibility for costs or losses incurred if
 35              // a standard is withdrawn or modified after publication, and shall be
 36              // indemnified and held harmless by any party implementing the
 37              // standard from any and all claims of infringement by a patent owner
 38              // for such implementations.
 39              // 
 40              // For information about patents held by third-parties which have
 41              // notified the DMTF that, in their opinion, such patent may relate to
 42              // or impact implementations of DMTF standards, visit
 43 a.dunfey 1.1 // http://www.dmtf.org/about/policies/disclosures.php.
 44              //#pragma inLine
 45              // ===================================================================
 46              // Description: These object classes define the DMTF Application Model
 47              //              and include classes to represent software features and
 48              //              elements that are associated to the OS, diagnostics,
 49              //              etc.
 50              // 
 51              //              The object classes below are listed in an order that
 52              //              avoids forward references. Required objects, defined
 53              //              by other working groups, are omitted.
 54              // ==================================================================
 55              // V 2.8 14 January 2003 CIM 2.8 Final
 56              //             - CR 1240 13 January 2004 - Change Model Correspondence
 57              //                         for DiagnosticTestSoftware from
 58              //                         ServiceSoftwareIdentity to
 59              //                         ElementSoftwareIdentity
 60              // 
 61              // V 2.8 23 May 2003 CIM 2.8 Preliminary
 62              //             - CR 1020 - Deprecate class CIM_DiagnosticTestSoftware
 63              //             - CR 1049 - Update the deprecation of CIM_
 64 a.dunfey 1.1 //                         DiagnosticTestSoftware
 65              // 
 66              // V2.7 Change Requests - None
 67              //    03/17/2003 CIM 2.7 Final
 68              // ===================================================================
 69              
 70              #pragma locale ("en_US")
 71              
 72              
 73              // ==================================================================
 74              // InstalledSoftwareElement
 75              // ==================================================================
 76                 [Association, Version ( "2.6.0" ), Description (
 77                     "The InstalledSoftwareElement association allows the "
 78                     "identification of the ComputerSystem on which a particular "
 79                     "SoftwareElement is installed.")]
 80              class CIM_InstalledSoftwareElement {
 81              
 82                    [Key, Description (
 83                        "Reference to the Software Element that is installed.")]
 84                 CIM_SoftwareElement REF Software;
 85 a.dunfey 1.1 
 86                    [Key, Max ( 1 ), Description (
 87                        "Reference to the ComputerSystem hosting a particular "
 88                        "SoftwareElement.")]
 89                 CIM_ComputerSystem REF System;
 90              };
 91              
 92              
 93              // ==================================================================
 94              // OperatingSystemSoftwareFeature
 95              // ==================================================================
 96                 [Association, Aggregation, Version ( "2.6.0" ), Description (
 97                     "Indicates the SoftwareFeatures that make up the Operating "
 98                     "System. The SoftwareFeatures can be part of different "
 99                     "Products.")]
100              class CIM_OperatingSystemSoftwareFeature : CIM_Component {
101              
102                    [Aggregate, Override ( "GroupComponent" ), Description (
103                        "The OperatingSystem.")]
104                 CIM_OperatingSystem REF GroupComponent;
105              
106 a.dunfey 1.1       [Override ( "PartComponent" ), Description (
107                        "The SoftwareFeatures that make up the OperatingSystem.")]
108                 CIM_SoftwareFeature REF PartComponent;
109              };
110              
111              // ==================================================================
112              // DiagnosticTestSoftware
113              // ==================================================================
114                 [Association, Deprecated { "CIM_ElementSoftwareIdentity" },
115                  Version ( "2.8.0" ), Description (
116                     "This class is being deprecated to promote its usage to the "
117                     "DiagnosticService level. \n"
118                     "This is an association class relating DiagnosticTest to the "
119                     "SoftwareElements that provide this test. SoftwareElement "
120                     "describes vendor/version information and other deployment "
121                     "data.")]
122              class CIM_DiagnosticTestSoftware : CIM_Dependency {
123              
124                    [Deprecated { "CIM_ElementSoftwareIdentity.Antecedent" },
125                     Override ( "Antecedent" ), Description (
126                        "This reference is deprecated and replaced (in "
127 a.dunfey 1.1           "ServiceSoftwareIdentity) with a reference to the "
128                        "SoftwareIdentity class, which has been determined to be a "
129                        "better choice for diagnostics services. It defines "
130                        "vendor/version and other information about the software "
131                        "that runs as the DiagnosticTest.")]
132                 CIM_SoftwareElement REF Antecedent;
133              
134                    [Deprecated { "CIM_ElementSoftwareIdentity.Dependent" },
135                     Override ( "Dependent" ), Description (
136                        "The DiagnosticTest whose software is described.")]
137                 CIM_DiagnosticTest REF Dependent;
138              };
139              
140              
141              // ==================================================================
142              // end of file
143              // ==================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2