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

  1 tony  1.1 // ===================================================================
  2           // Title:       User-Security Security Level
  3           // Filename:    User28_SecurityLevel.mof
  4           // Version:     2.8
  5           // Release:     Final
  6           // Date:        Jan 26, 2004
  7           // ===================================================================
  8           // Copyright 2003-2004 Distributed Management Task Force, Inc. (DMTF).
  9           // All rights reserved.
 10           // DMTF is a not-for-profit association of industry members dedicated
 11           // to promoting enterprise and systems management and interoperability.
 12           // DMTF specifications and documents may be reproduced for uses
 13           // consistent with this purpose by members and non-members,
 14           // provided that correct attribution is given.
 15           // As DMTF specifications may be revised from time to time,
 16           // the particular version and release date should always be noted.
 17           // 
 18           // Implementation of certain elements of this standard or proposed
 19           // standard may be subject to third party patent rights, including
 20           // provisional patent rights (herein "patent rights"). DMTF makes
 21           // no representations to users of the standard as to the existence
 22 tony  1.1 // of such rights, and is not responsible to recognize, disclose, or
 23           // identify any or all such third party patent right, owners or
 24           // claimants, nor for any incomplete or inaccurate identification or
 25           // disclosure of such rights, owners or claimants. DMTF shall have no
 26           // liability to any party, in any manner or circumstance, under any
 27           // legal theory whatsoever, for failure to recognize, disclose, or
 28           // identify any such third party patent rights, or for such party's
 29           // reliance on the standard or incorporation thereof in its product,
 30           // protocols or testing procedures. DMTF shall have no liability to
 31           // any party implementing such standard, whether such implementation
 32           // is foreseeable or not, nor to any patent owner or claimant, and shall
 33           // have no liability or responsibility for costs or losses incurred if
 34           // a standard is withdrawn or modified after publication, and shall be
 35           // indemnified and held harmless by any party implementing the
 36           // standard from any and all claims of infringement by a patent owner
 37           // for such implementations.
 38           // 
 39           // For information about patents held by third-parties which have
 40           // notified the DMTF that, in their opinion, such patent may relate to
 41           // or impact implementations of DMTF standards, visit
 42           // http://www.dmtf.org/about/policies/disclosures.php.
 43 tony  1.1 // ===================================================================
 44           // Description: The User Model extends the management concepts that
 45           //              are related to users and security.
 46           //              This file defines the concepts and classes related to
 47           //              Security Levels.
 48           // 
 49           //              The object classes below are listed in an order that
 50           //              avoids forward references. Required objects, defined
 51           //              by other working groups, are omitted.
 52           // ===================================================================
 53           // Change Log for v2.8 Final -
 54           //  CR1218 - Accepted all changes as Final
 55           //  CR1235 - Corrected copyright
 56           // 
 57           // Change Log for v2.8 Preliminary -
 58           //  CR1011 - Created this file.
 59           // ===================================================================
 60           
 61           #pragma Locale ("en_US")
 62           
 63           
 64 tony  1.1 // ==================================================================
 65           // SecuritySensitivity
 66           // ==================================================================
 67              [Version ( "2.8.0" ), Description (
 68                  "Defines a security sensitivity level, which can be associated "
 69                  "with a ManagedElement. A simple example is to define security "
 70                  "levels representing 'low sensitivity', 'moderately sensitive', "
 71                  "'high sensitivity' and 'national security' classification "
 72                  "levels. An element is assigned a security level via the "
 73                  "association, ElementSecurityLevel. It can be assigned to any "
 74                  "ManagedElement, such as Locations, Identities, Roles, Systems, "
 75                  "Services and LogicalFiles. \n"
 76                  "\n"
 77                  "A security level is determined by a business, organization "
 78                  "and/or government based on the need to protect data and "
 79                  "entities from attack, loss, abuse or unauthorized disclosure, "
 80                  "and the ramifications if this protection is not maintained.")]
 81           class CIM_SecuritySensitivity : CIM_ManagedElement {
 82           
 83                 [Key, Description (
 84                     "Within the scope of the instantiating Namespace, InstanceID "
 85 tony  1.1           "opaquely and uniquely identifies an instance of this class. "
 86                     "In order to ensure uniqueness within the NameSpace, the "
 87                     "value of InstanceID SHOULD be constructed using the "
 88                     "following 'preferred' algorithm: \n"
 89                     "<OrgID>:<LocalID> \n"
 90                     "Where <OrgID> and <LocalID> are separated by a colon ':', "
 91                     "and where <OrgID> MUST include a copyrighted, trademarked "
 92                     "or otherwise unique name that is owned by the business "
 93                     "entity creating/defining the InstanceID, or is a registered "
 94                     "ID that is assigned to the business entity by a recognized "
 95                     "global authority. (This is similar to the <Schema "
 96                     "Name>_<Class Name> structure of Schema class names.) In "
 97                     "addition, to ensure uniqueness <OrgID> MUST NOT contain a "
 98                     "colon (':'). When using this algorithm, the first colon to "
 99                     "appear in InstanceID MUST appear between <OrgID> and "
100                     "<LocalID>. \n"
101                     "<LocalID> is chosen by the business entity and SHOULD not "
102                     "be re-used to identify different underlying (real-world) "
103                     "elements. If the above 'preferred' algorithm is not used, "
104                     "the defining entity MUST assure that the resultant "
105                     "InstanceID is not re-used across any InstanceIDs produced "
106 tony  1.1           "by this or other providers for this instance's NameSpace. "
107                     "For DMTF defined instances, the 'preferred' algorithm MUST "
108                     "be used with the <OrgID> set to 'CIM'.")]
109              string InstanceID;
110           
111                 [Description (
112                     "A string defining the security sensitivity level.")]
113              string SecurityLevel;
114           };
115           
116           
117           // ==================================================================
118           // ElementSecuritySensitivity
119           // ==================================================================
120              [Association, Version ( "2.8.0" ), Description (
121                  "This association relates a security sensitivity level to a "
122                  "ManagedElement. It describes the level assigned to the "
123                  "element.")]
124           class CIM_ElementSecuritySensitivity {
125           
126                 [Key, Description (
127 tony  1.1           "The security sensitivity level of the element.")]
128              CIM_SecuritySensitivity REF SecurityLevel;
129           
130                 [Key, Description (
131                     "The element which is assigned a sensitivity level.")]
132              CIM_ManagedElement REF ManagedElement;
133           };
134           
135           
136           // ===================================================================
137           // end of file
138           // ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2