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

  1 karl  1.1 // ===================================================================
  2           // Title:       Physical Links 2.7
  3           // Filename:    Physical27_Link.mof
  4           // Version:     2.7.0
  5           // Release:     Preliminary 
  6           // Date:        07/02/02
  7           // ===================================================================
  8           // Copyright 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 Physical Model defines modeling concepts related
 45           //              to actual boxes and packaging. This file defines the 
 46           //              concepts related to physical links.
 47           //
 48           //              The object classes below are listed in an order that
 49           //              avoids forward references. Required objects, defined 
 50           //              by other working groups, are omitted.
 51           // ==================================================================
 52           // Change Log for v2.7 - None
 53           // ==================================================================
 54           
 55           #pragma locale ("en_US")
 56           
 57           
 58           // ==================================================================
 59           // PhysicalLink
 60           // ==================================================================
 61           [Version ("2.6.0"), Description (
 62               "The PhysicalLink class represents the cabling of "
 63               "PhysicalElements together. For example, serial or Ethernet "
 64 karl  1.1     "cables, and infrared Links would be subclasses (if additional "
 65               "properties or associations are defined) or instances of "
 66               "PhysicalLink. In many cases, the numerous physical cables "
 67               "within a PhysicalPackage or Network will not be modeled. "
 68               "However, where these cables or Links are critical components, "
 69               "or are tagged assets of the company, these objects can be "
 70               "instantiated using this class or one of its descendent "
 71               "classes.") ]
 72           class CIM_PhysicalLink : CIM_PhysicalElement {
 73               
 74               [Description ("The maximum length of the PhysicalLink in feet."),
 75                   Units ("Feet") ]
 76               real64 MaxLength;
 77               
 78               [Description (
 79                   "The current length of the PhysicalLink in feet. For some "
 80                   "connections, especially wireless technologies, this property "
 81                   "may not be applicable and should be left uninitialized."),
 82                   Units ("Feet") ]
 83               real64 Length;
 84               
 85 karl  1.1     [Description (
 86                   "Boolean indicating whether the PhysicalLink is an actual "
 87                   "cable (TRUE) or a wireless connection (FALSE).") ]
 88               boolean Wired;
 89               
 90               [Description("The MediaType property defines the particular "
 91                   "type of Media through which transmission signals pass. "
 92                   "Common network media include twisted-pair (value=11 or 12), "
 93                   "coaxial (7, 8 or 9) and fiber-optic cable (10)."), 
 94                   ValueMap {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", 
 95                       "10", "11", "12", "13", "14", "15", "16", "17"},  
 96                   Values {"Unknown", "Other", "Cat1", "Cat2", "Cat3", "Cat4", 
 97                       "Cat5", "50-ohm Coaxial", "75-ohm Coaxial", 
 98                       "100-ohm Coaxial", "Fiber-optic", "UTP", "STP", 
 99                       "Ribbon Cable", "Twinaxial", "Optical 9um", 
100                       "Optical 50um", "Optical 62.5um"},
101                   MappingStrings {
102                       "MIF.DMTF|Fibre Channel Bus Port Extensions|001.4"} ]
103               uint16 MediaType;
104           };
105           
106 karl  1.1 
107           // ===================================================================
108           // ElementsLinked
109           // ===================================================================
110           [Association, Version ("2.6.0"), Description (
111               "The ElementsLinked association indicates which Physical"
112               "Elements are cabled together by a PhysicalLink.") ]
113           class CIM_ElementsLinked : CIM_Dependency {
114               
115               [Override ("Antecedent"),
116                   Description ("The PhysicalLink.") ]
117               CIM_PhysicalLink REF Antecedent;
118               
119               [Override ("Dependent"), 
120                   Description ("The PhysicalElement that is linked.") ]
121               CIM_PhysicalElement REF Dependent;
122           };
123           
124           
125           // ==================================================================
126           // LinkHasConnector 
127 karl  1.1 // ==================================================================
128           [Association, Aggregation, Version ("2.6.0"), Description (
129               "Cables and Links utilize PhysicalConnectors to actually "
130               "'connect' PhysicalElements. This association explicitly "
131               "defines this relationship of Connectors for PhysicalLinks.") ]
132           class CIM_LinkHasConnector : CIM_Component {
133               
134               [Override ("GroupComponent"), Aggregate, Max (1), Description (
135                   "The PhysicalLink that has a Connector.") ]
136               CIM_PhysicalLink REF GroupComponent;
137               
138               [Override ("PartComponent"), Description (
139                   "The PhysicalConnector.") ]
140               CIM_PhysicalConnector REF PartComponent;
141           };
142           
143           
144           // ===================================================================
145           // end of file
146           // ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2