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

  1 a.dunfey 1.1 // ===================================================================
  2              // Title: User_SecurityLevel
  3              // $State: Exp $
  4              // $Date: 2004/11/29 18:31:43 $
  5              // $RCSfile: User_SecurityLevel.mof,v $
  6              // $Revision: 1.2.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: The User Model extends the management concepts that
 47              //              are related to users and security.
 48              //              This file defines the concepts and classes related to
 49              //              Security Levels.
 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              // Change Log for v2.8 Final -
 56              //  CR1218 - Accepted all changes as Final
 57              //  CR1235 - Corrected copyright
 58              // 
 59              // Change Log for v2.8 Preliminary -
 60              //  CR1011 - Created this file.
 61              // ===================================================================
 62              
 63              #pragma Locale ("en_US")
 64 a.dunfey 1.1 
 65              
 66              // ==================================================================
 67              // SecuritySensitivity
 68              // ==================================================================
 69                 [Version ( "2.8.0" ), Description (
 70                     "Defines a security sensitivity level, which can be associated "
 71                     "with a ManagedElement. A simple example is to define security "
 72                     "levels representing 'low sensitivity', 'moderately sensitive', "
 73                     "'high sensitivity' and 'national security' classification "
 74                     "levels. An element is assigned a security level via the "
 75                     "association, ElementSecurityLevel. It can be assigned to any "
 76                     "ManagedElement, such as Locations, Identities, Roles, Systems, "
 77                     "Services and LogicalFiles. \n"
 78                     "\n"
 79                     "A security level is determined by a business, organization "
 80                     "and/or government based on the need to protect data and "
 81                     "entities from attack, loss, abuse or unauthorized disclosure, "
 82                     "and the ramifications if this protection is not maintained.")]
 83              class CIM_SecuritySensitivity : CIM_ManagedElement {
 84              
 85 a.dunfey 1.1       [Key, Description (
 86                        "Within the scope of the instantiating Namespace, InstanceID "
 87                        "opaquely and uniquely identifies an instance of this class. "
 88                        "In order to ensure uniqueness within the NameSpace, the "
 89                        "value of InstanceID SHOULD be constructed using the "
 90                        "following 'preferred' algorithm: \n"
 91                        "<OrgID>:<LocalID> \n"
 92                        "Where <OrgID> and <LocalID> are separated by a colon ':', "
 93                        "and where <OrgID> MUST include a copyrighted, trademarked "
 94                        "or otherwise unique name that is owned by the business "
 95                        "entity creating/defining the InstanceID, or is a registered "
 96                        "ID that is assigned to the business entity by a recognized "
 97                        "global authority. (This is similar to the <Schema "
 98                        "Name>_<Class Name> structure of Schema class names.) In "
 99                        "addition, to ensure uniqueness <OrgID> MUST NOT contain a "
100                        "colon (':'). When using this algorithm, the first colon to "
101                        "appear in InstanceID MUST appear between <OrgID> and "
102                        "<LocalID>. \n"
103                        "<LocalID> is chosen by the business entity and SHOULD not "
104                        "be re-used to identify different underlying (real-world) "
105                        "elements. If the above 'preferred' algorithm is not used, "
106 a.dunfey 1.1           "the defining entity MUST assure that the resultant "
107                        "InstanceID is not re-used across any InstanceIDs produced "
108                        "by this or other providers for this instance's NameSpace. "
109                        "For DMTF defined instances, the 'preferred' algorithm MUST "
110                        "be used with the <OrgID> set to 'CIM'.")]
111                 string InstanceID;
112              
113                    [Description (
114                        "A string defining the security sensitivity level.")]
115                 string SecurityLevel;
116              };
117              
118              
119              // ==================================================================
120              // ElementSecuritySensitivity
121              // ==================================================================
122                 [Association, Version ( "2.8.0" ), Description (
123                     "This association relates a security sensitivity level to a "
124                     "ManagedElement. It describes the level assigned to the "
125                     "element.")]
126              class CIM_ElementSecuritySensitivity {
127 a.dunfey 1.1 
128                    [Key, Description (
129                        "The security sensitivity level of the element.")]
130                 CIM_SecuritySensitivity REF SecurityLevel;
131              
132                    [Key, Description (
133                        "The element which is assigned a sensitivity level.")]
134                 CIM_ManagedElement REF ManagedElement;
135              };
136              
137              
138              // ===================================================================
139              // end of file
140              // ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2