(file) Return to CIM_RemotePort.mof CVS log (file) (dir) Up to [OMI] / omi / share / networkschema

 1 krisbash 1.1 // Copyright (c) 2005 DMTF.  All rights reserved.
 2              // <change cr="SysDevCR00722.000" type ="change">Update of
 3              // descriptions based on Tech Edit review.</
 4              // <change cr="ArchCR00066.004" type="add">Add UmlPackagePath
 5              // qualifier values to CIM Schema.</change>
 6              // ==================================================================
 7              //  CIM_RemotePort
 8              // ==================================================================
 9                 [Version ( "2.10.0" ), 
10                  UMLPackagePath ( "CIM::Core::Service" ), 
11                  Description ( 
12                     "RemotePort adds port information to the access data (such as "
13                     "IP Address) that is specified in and inherited from "
14                     "RemoteServiceAccessPoint. For example, using the additional "
15                     "properties in this class, you could indicate that UDP Port 123 "
16                     "is accessed at IP Address xyz. The IP Address would be "
17                     "specified in the inherited AccessInfo property, while the UDP "
18                     "Port number would be specified in the PortInfo property of "
19                     "this class." )]
20              class CIM_RemotePort : CIM_RemoteServiceAccessPoint {
21              
22 krisbash 1.1       [Description ( 
23                        "Port information that might further specify the remote "
24                        "access information." ), 
25                     ModelCorrespondence { "CIM_RemotePort.PortProtocol" }]
26                 string PortInfo;
27              
28                    [Description ( 
29                        "An enumerated integer that describes the protocol of the "
30                        "port that is addressed by PortInformation." ), 
31                     ValueMap { "1", "2", "3", "32768..65535" }, 
32                     Values { "Other", "TCP", "UDP", "Vendor Specific" }, 
33                     ModelCorrespondence { 
34                        "CIM_RemotePort.OtherProtocolDescription" }]
35                 uint16 PortProtocol;
36              
37                    [Description ( 
38                        "Describes the protocol when the property PortProtocol is "
39                        "set to 1 (Other)." ), 
40                     ModelCorrespondence { "CIM_RemotePort.PortProtocol" }]
41                 string OtherProtocolDescription;
42              
43 krisbash 1.1 
44              };

ViewCVS 0.9.2