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

  1 karl  1.1 // ===================================================================
  2           // Title:       User-Security Security Services 2.7
  3           // Filename:    User27_SecurityServices.mof
  4           // Version:     2.7.0
  5           // Status:      Preliminary
  6           // Date:        07/07/2002
  7           // ===================================================================
  8           // Copyright 2000-2002 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 karl  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 karl  1.1 // ===================================================================
 44           // Description: The User Model extends the management concepts that
 45           //              are related to users and security.
 46           //              This file defines the generic concepts of various 
 47           //              authentication and authorization security services.
 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.7 - None
 54           // ===================================================================
 55           
 56           #pragma Locale ("en_US")
 57           
 58           
 59           // ================================================================== 
 60           // SecurityService
 61           // ==================================================================
 62           [Abstract, Version ("2.6.0"), Description (
 63              "A service providing security functionaity.") ]
 64 karl  1.1 class CIM_SecurityService : CIM_Service {
 65           };
 66           
 67           
 68           // ===================================================================
 69           // ServiceUsesSecurityService
 70           // ===================================================================
 71           [Association, Version ("2.6.0"), Description (
 72              "This relationship associates a Service with the Security"
 73              "Services that it uses.") ]
 74           class CIM_ServiceUsesSecurityService : CIM_ServiceServiceDependency {
 75           
 76              [Override ("Antecedent") ]
 77              CIM_SecurityService REF Antecedent;
 78           
 79              [Override ("Dependent") ]
 80              CIM_Service REF Dependent;
 81           };
 82           
 83           
 84           // ===================================================================
 85 karl  1.1 // SecurityServiceForSystem
 86           // ===================================================================
 87           [Association, Version ("2.6.0"), Description (
 88              "The CIM_SecurityServiceForSystem provides the association between "
 89              "a System and a SecurityService that provides services for that "
 90              "system.") ]
 91           class CIM_SecurityServiceForSystem : CIM_ProvidesServiceToElement {
 92           
 93              [Override ("Antecedent"), Description ( 
 94                 "The SecurityService that provides services for the system.") ]
 95              CIM_SecurityService REF Antecedent;
 96           
 97              [Override ("Dependent"), Description (
 98                 "The system that is dependent on the security service.") ]
 99              CIM_System REF Dependent;
100           };
101           
102           
103           // ================================================================== 
104           // AuthenticationService
105           // ==================================================================
106 karl  1.1 [Version ("2.6.0"), Description (
107              "CIM_AuthenticationService verifies users' identities through "
108              "some means.  These services are decomposed into a subclass that "
109              "provides credentials to users and a subclass that provides for "
110              "the verification of the validity of a credential and, perhaps, "
111              "the appropriateness of its use for access to target resources. "
112              "The persistent state information used from one such verification "
113              "to another is maintained in an Account for that Users Access on "
114              "that AuthenticationService.") ]
115           class CIM_AuthenticationService : CIM_SecurityService {
116           };
117           
118           
119           // ================================================================== 
120           // VerificationService
121           // ==================================================================
122           [Version ("2.6.0"), Description (
123              "CIM_VerificationService is the authentication service that "
124              "verifies a credential for use and may also verify the "
125              "appropriateness of a particular credential in conjunction with a "
126              "particular target resource.") ]
127 karl  1.1 class CIM_VerificationService : CIM_AuthenticationService {
128           };
129           
130           
131           // ================================================================== 
132           // CredentialManagementService
133           // ==================================================================
134           [Version ("2.6.0"), Description (
135              "CIM_CredentialManagementService issues credentials and manages "
136              "the credential lifecycle.") ] 
137           class CIM_CredentialManagementService : CIM_AuthenticationService {
138           };
139           
140           
141           // ==================================================================
142           // TrustHierarchy
143           // ==================================================================
144           [Association, Version ("2.6.0"), Description (
145              "CIM_TrustHierarchy is an association between two "
146              "CredentialManagementService instances that establishes "
147              "the trust hierarchy between them.") ]
148 karl  1.1 class CIM_TrustHierarchy : CIM_Dependency {
149           
150              [Override ("Antecedent"), Max (1),
151                 Description (
152                 "The superior CredentialManagementService "
153                 "from which the dependent service gets its authority.") ] 
154              CIM_CredentialManagementService  REF Antecedent;
155           
156              [Override ("Dependent"), Description (
157                 "The subordinate CredentialManagementService.") ] 
158              CIM_CredentialManagementService  REF Dependent;
159           };
160           
161           
162           // ==================================================================
163           // CredentialManagementSAP
164           // ==================================================================
165           [Version ("2.6.0"), Description (
166              "CIM_CredentialManagementSAP represents the ability to "
167              "utilize or invoke a CredentialManagementService.") ] 
168           class CIM_CredentialManagementSAP : CIM_ServiceAccessPoint {
169 karl  1.1 
170              [Description ("The URL for the access point.") ] 
171              string URL;
172           };
173           
174           
175           // ================================================================== 
176           // LocalCredentialManagementService
177           // ==================================================================
178           [Version ("2.6.0"), Description (
179              "CIM_LocalCredentialManagementService is a credential "
180              "management service that provides management of "
181              "credentials used by the local system.") ]
182           class CIM_LocalCredentialManagementService : 
183            CIM_CredentialManagementService {
184           };
185           
186           
187           // ================================================================== 
188           // AuthorizationService
189           // ==================================================================
190 karl  1.1 [Version ("2.6.0"), Description (
191              "CIM_AuthorizationService determines whether a user, by "
192              "association with an Account used by the AuthorizationService, is "
193              "permitted access a resource or set of resources.") ]
194           class CIM_AuthorizationService : CIM_SecurityService {
195           };
196           
197           
198           // ===================================================================
199           // end of file
200           // ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2