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

  1 a.dunfey 1.1 // ===================================================================
  2              // Title: User_Role
  3              // $State: Exp $
  4              // $Date: 2004/11/29 18:31:43 $
  5              // $RCSfile: User_Role.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: The User Model extends the management concepts that
 47              //              are related to users and security.
 48              //              This file defines the concepts and classes for roles.
 49              // 
 50              //              The object classes below are listed in an order that
 51              //              avoids forward references. Required objects, defined
 52              //              by other working groups, are omitted.
 53              // ===================================================================
 54              // Change Log for v2.8: None
 55              // 
 56              // Change Log for v2.7
 57              // (ERRATA) CR855 - Change cardinality of the Antecedent from 0..1
 58              //         to 1 for MoreOrganizationInfo and MoreOrgUnitInfo
 59              // ===================================================================
 60              
 61              #pragma Locale ("en_US")
 62              
 63              
 64 a.dunfey 1.1 // ==================================================================
 65              // Role
 66              // ==================================================================
 67                 [Version ( "2.6.0" ), Description (
 68                     "The Role object class is used to represent a position or set "
 69                     "of responsibilities within an organization, organizational "
 70                     "unit or system administration scope and is filled by a person "
 71                     "or persons (or non-human entities represented by "
 72                     "ManagedSystemElement subclasses) that may be explicitly or "
 73                     "implicitly members of this collection subclass. The class is "
 74                     "defined so as to incorporate commonly-used LDAP attributes to "
 75                     "permit implementations to easily derive this information from "
 76                     "LDAP-accessible directories. The members of a role are "
 77                     "frequently called role occupants. This class's properties are "
 78                     "a subset of a related class, OtherRoleInformation, which "
 79                     "defines all the group properties and in array form for "
 80                     "directory compatibility.")]
 81              class CIM_Role : CIM_Collection {
 82              
 83                    [Key, Description (
 84                        "CreationClassName indicates the name of the class or the "
 85 a.dunfey 1.1           "subclass used in the creation of an instance. When used "
 86                        "with the other key properties of this class, this property "
 87                        "allows all instances of this class and its subclasses to be "
 88                        "uniquely identified."), 
 89                     MaxLen ( 256 )]
 90                 string CreationClassName;
 91              
 92                    [Key, Description (
 93                        "The Name property defines the label by which the object is "
 94                        "known. In the case of an LDAP-derived instance, the Name "
 95                        "property value may be set to the distinguished name of the "
 96                        "LDAP-accessed object instance."), 
 97                     MaxLen ( 1024 )]
 98                 string Name;
 99              
100                    [Description (
101                        "This property may be used to describe the kind of business "
102                        "activity performed by the members (role occupants) in the "
103                        "position or set of responsibilities represented by the "
104                        "Role."), 
105                     MaxLen ( 128 )]
106 a.dunfey 1.1    string BusinessCategory;
107              
108                    [Required, Description (
109                        "A Common Name is a (possibly ambiguous) name by which the "
110                        "role is commonly known in some limited scope (such as an "
111                        "organization) and conforms to the naming conventions of the "
112                        "country or culture with which it is associated.")]
113                 string CommonName;
114              };
115              
116              
117              // ==================================================================
118              // OtherRoleInformation
119              // ==================================================================
120                 [Version ( "2.6.0" ), Description (
121                     "The OtherRoleInformation class is used to provide additional "
122                     "information about an associated Role instance. This class is "
123                     "defined so as to incorporate commonly-used LDAP attributes to "
124                     "permit implementations to easily derive this information from "
125                     "LDAP-accessible directories.")]
126              class CIM_OtherRoleInformation : CIM_ManagedElement {
127 a.dunfey 1.1 
128                    [Key, Description (
129                        "CreationClassName indicates the name of the class or the "
130                        "subclass used in the creation of an instance. When used "
131                        "with the other key properties of this class, this property "
132                        "allows all instances of this class and its subclasses to be "
133                        "uniquely identified."), 
134                     MaxLen ( 256 )]
135                 string CreationClassName;
136              
137                    [Key, Description (
138                        "The Name property defines the label by which the object is "
139                        "known. In the case of an LDAP-derived instance, the Name "
140                        "property value may be set to the distinguished name of the "
141                        "LDAP-accessed object instance."), 
142                     MaxLen ( 1024 )]
143                 string Name;
144              
145                    [Description (
146                        "In the case of an LDAP-derived instance, the ObjectClass "
147                        "property value(s) may be set to the objectClass attribute "
148 a.dunfey 1.1           "values.")]
149                 string ObjectClass[];
150              
151                    [Description (
152                        "This property may be used to describe the kind of business "
153                        "activity performed by the members (role occupants) in the "
154                        "position or set of responsibilities represented by the "
155                        "Role."), 
156                     MaxLen ( 128 )]
157                 string BusinessCategory[];
158              
159                    [Description (
160                        "A CommonName is a (possibly ambiguous) name by which the "
161                        "role is commonly known in some limited scope (such as an "
162                        "organization) and conforms to the naming conventions of the "
163                        "country or culture with which it is associated.")]
164                 string CommonName[];
165              
166                    [Description (
167                        "The Descriptions property values may contain human-readable "
168                        "descriptions of the object. In the case of an LDAP-derived "
169 a.dunfey 1.1           "instance, the description attribute may have multiple "
170                        "values that, therefore, cannot be placed in the inherited "
171                        "Description property."), 
172                     MaxLen ( 1024 )]
173                 string Descriptions[];
174              
175                    [Description (
176                        "This property is used for the role occupants' telegram "
177                        "service."), 
178                     MaxLen ( 128 )]
179                 string DestinationIndicator[];
180              
181                    [Description (
182                        "The role occupants' facsimile telephone number.")]
183                 string FacsimileTelephoneNumber[];
184              
185                    [Description (
186                        "The role occupants' International ISDN number."), 
187                     MaxLen ( 16 )]
188                 string InternationaliSDNNumber[];
189              
190 a.dunfey 1.1       [Description (
191                        "The name of an organizational unit related to the role.")]
192                 string OU[];
193              
194                    [Description (
195                        "The PhysicalDeliveryOfficeName property specifies the name "
196                        "of the city, village, etc. where a physical delivery office "
197                        "is situated."), 
198                     MaxLen ( 128 )]
199                 string PhysicalDeliveryOfficeName[];
200              
201                    [Description (
202                        "The PostalAddress property values specify the address "
203                        "information required for the physical delivery of postal "
204                        "messages by the postal authority to the role occupants.")]
205                 string PostalAddress[];
206              
207                    [Description (
208                        "The PostalCode property specifies the postal code for the "
209                        "role occupants. If this value is present it will be part of "
210                        "the object's postal address."), 
211 a.dunfey 1.1        MaxLen ( 40 )]
212                 string PostalCode[];
213              
214                    [Description (
215                        "The PostOfficeBox property specifies the PO box by which "
216                        "the role occupants will receive physical postal delivery. "
217                        "If present, the property value is part of the object's "
218                        "postal address."), 
219                     MaxLen ( 40 )]
220                 string PostOfficeBox[];
221              
222                    [Description (
223                        "The PreferredDeliveryMethod property specifies the role "
224                        "occupants' preferred method to be used for contacting them "
225                        "in their role.")]
226                 string PreferredDeliveryMethod;
227              
228                    [Description (
229                        "This property specifies a postal address suitable for "
230                        "receipt of telegrams or expedited documents, where it is "
231                        "necessary to have the recipient accept delivery.")]
232 a.dunfey 1.1    string RegisteredAddress[];
233              
234                    [Description (
235                        "In the case of an LDAP-derived instance, the SeeAlso "
236                        "property specifies distinguished name of other Directory "
237                        "objects which may be other aspects (in some sense) of the "
238                        "same real world object.")]
239                 string SeeAlso[];
240              
241                    [Description (
242                        "The State or Province name property specifies a state or "
243                        "province.")]
244                 string StateOrProvince[];
245              
246                    [Description (
247                        "The Street address property specifies a site for the local "
248                        "distribution and physical delivery in a postal address, "
249                        "i.e. the street name, place, avenue, and the number."), 
250                     MaxLen ( 128 )]
251                 string Street[];
252              
253 a.dunfey 1.1       [Description (
254                        "The TelephoneNumber property specifies a telephone number "
255                        "of the role occupants, e.g. + 44 582 10101)."), 
256                     MaxLen ( 32 )]
257                 string TelephoneNumber[];
258              
259                    [Description (
260                        "The TeletexTerminalIdentifier property specifies the "
261                        "Teletex terminal identifier (and, optionally, parameters) "
262                        "for a teletex terminal associated with the role occupants.")]
263                 string TeletexTerminalIdentifier[];
264              
265                    [Description (
266                        "The TelexNumber property specifies the telex number, "
267                        "country code, and answerback code of a telex terminal for "
268                        "the role occupants.")]
269                 string TelexNumber[];
270              
271                    [Description (
272                        "An X.121 address for the role occupants."), 
273                     MaxLen ( 15 )]
274 a.dunfey 1.1    string X121Address[];
275              };
276              
277              
278              // ==================================================================
279              // MoreRoleInfo
280              // ==================================================================
281                 [Association, Version ( "2.7.0" ), Description (
282                     "CIM_MoreRoleInfo is an association used to extend the "
283                     "information in a CIM_Role class instance.")]
284              class CIM_MoreRoleInfo : CIM_Dependency {
285              
286                    [Override ( "Antecedent" ), Min ( 1 ), Max ( 1 ), Description (
287                        "The Role which has more information.")]
288                 CIM_Role REF Antecedent;
289              
290                    [Override ( "Dependent" ), Max ( 1 ), Description (
291                        "Additional data concerning the Role.")]
292                 CIM_OtherRoleInformation REF Dependent;
293              };
294              
295 a.dunfey 1.1 
296              // ==================================================================
297              // SystemAdministratorRole
298              // ==================================================================
299                 [Association, Version ( "2.6.0" ), Description (
300                     "CIM_SystemAdministratorRole is an association used to identify "
301                     "a system administrator Role for a CIM_System.")]
302              class CIM_SystemAdministratorRole : CIM_Dependency {
303              
304                    [Override ( "Antecedent" ), Description (
305                        "The administered system.")]
306                 CIM_System REF Antecedent;
307              
308                    [Override ( "Dependent" ), Description (
309                        "The system administration role.")]
310                 CIM_Role REF Dependent;
311              };
312              
313              
314              // ===================================================================
315              // end of file
316 a.dunfey 1.1 // ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2