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

  1 a.dunfey 1.1 // ===================================================================
  2              // Title: User_Credential
  3              // $State: Exp $
  4              // $Date: 2004/11/29 18:31:43 $
  5              // $RCSfile: User_Credential.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 generic concepts of a
 49              //              credential.
 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 for CIM V2.8 Prelim, except removed
 57              //           BiometricCredential from the Final release and into
 58              //           CIM V2.9 Preliminary.
 59              // 
 60              // Change Log for v2.8 Preliminary
 61              //  CR1011 - Added BiometricCredential, updated Credential.Description.
 62              //  CR1014 - Removed Min (1) from ManagedCredential.Antecedent
 63              // 
 64 a.dunfey 1.1 // Change Log for v2.7
 65              //  CR784 - Promoted 2 properties, Issued and Expired, from
 66              //          CIM_KerberosTicket to CIM_Credential
 67              //  CR980 - Removed Experimental qualifier from 2 properties in
 68              //          Credential
 69              // ===================================================================
 70              
 71              #pragma Locale ("en_US")
 72              
 73              
 74              // ==================================================================
 75              // Credential
 76              // ==================================================================
 77                 [Abstract, Version ( "2.8.0" ), Description (
 78                     "Subclasses of CIM_Credential define materials, information or "
 79                     "other data which are used to establish identity. Generally, "
 80                     "there may be some shared information, or credential material "
 81                     "which is used to identify and authenticate an entity in the "
 82                     "process of gaining access to, or permission to use, resources. "
 83                     "Such credential material may be used to authenticate an "
 84                     "entity's identity initially, as done by a "
 85 a.dunfey 1.1        "CIM_AuthenticationService, and additionally on an ongoing "
 86                     "basis (for example, during the course of a connection or other "
 87                     "security association), as proof that each received message or "
 88                     "communication came from a valid 'user' of that credential "
 89                     "material.")]
 90              class CIM_Credential : CIM_ManagedElement {
 91              
 92                    [Description (
 93                        "The date and time when the credential was issued. Use a "
 94                        "value of all 0s if this information is not applicable.")]
 95                 datetime Issued;
 96              
 97                    [Description (
 98                        "The date and time when the credential expires (and is not "
 99                        "appropriate for use for authentication/ authorization). Use "
100                        "a value of all 9s if this information is not applicable. "
101                        "Note that this property does not define how the expiration "
102                        "is set - but that there IS an expiration. The property may "
103                        "be set to either a specific date/time or an interval "
104                        "(calculated from the Issued datetime). For example, for "
105                        "Certificate Authority-signed public key, the expiration is "
106 a.dunfey 1.1           "determined by the CA. Another example is a voice mail "
107                        "password that expires 60 days after it is set/issued.")]
108                 datetime Expires;
109              };
110              
111              
112              // ===================================================================
113              // ManagedCredential
114              // ===================================================================
115                 [Association, Version ( "2.8.0" ), Description (
116                     "This relationship associates a CredentialManagementService "
117                     "with the Credential it manages.")]
118              class CIM_ManagedCredential : CIM_Dependency {
119              
120                    [Override ( "Antecedent" ), Max ( 1 ), Description (
121                        "The credential management service.")]
122                 CIM_CredentialManagementService REF Antecedent;
123              
124                    [Override ( "Dependent" ), Description (
125                        "The managed credential.")]
126                 CIM_Credential REF Dependent;
127 a.dunfey 1.1 };
128              
129              
130              // ===================================================================
131              // end of file
132              // ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2