|
From: <jc...@us...> - 2007-12-18 20:40:44
|
Revision: 520
http://omc.svn.sourceforge.net/omc/?rev=520&view=rev
Author: jcarey
Date: 2007-12-18 12:40:49 -0800 (Tue, 18 Dec 2007)
Log Message:
-----------
Added version quals to classes
Modified Paths:
--------------
pybase/trunk/OMC_InitdService.mof
pybase/trunk/OMC_LogicalFile.mof
pybase/trunk/OMC_OperatingSystem.mof
pybase/trunk/OMC_TimeService.mof
pybase/trunk/OMC_UnitaryComputerSystem.mof
pybase/trunk/OMC_UnixProcess.mof
Modified: pybase/trunk/OMC_InitdService.mof
===================================================================
--- pybase/trunk/OMC_InitdService.mof 2007-12-18 18:58:52 UTC (rev 519)
+++ pybase/trunk/OMC_InitdService.mof 2007-12-18 20:40:49 UTC (rev 520)
@@ -1,6 +1,6 @@
#pragma locale ("en_US")
-[ Description (
+[ Version("0.0.1"), Description (
"OMC_InitdService represents the function of a system init script "
"found in the /etc/init.d directory. The Name field in this class will "
"be the name of the script. The provider of this class knows nothing "
@@ -98,7 +98,7 @@
};
-[ Description("OMC_Runlevel represents a runlevel on a system, which is a collection of "
+[ Version("0.0.1"), Description("OMC_Runlevel represents a runlevel on a system, which is a collection of "
"init scripts, in this case, a collection of OMC_InitdService objects")]
class OMC_Runlevel : CIM_CollectionOfMSEs
{
@@ -143,7 +143,7 @@
-[ Association,
+[ Association, Version("0.0.1"),
Description(
"OMC_HostedInitdService associates the init.d service to the computer system.") ]
class OMC_HostedInitdService : CIM_HostedService
@@ -158,7 +158,7 @@
};
-[ Association,
+[ Association, Version("0.0.1"),
Description(
"OMC_RunlevelInComputerSystem associates a OMC_Runlevel to its computer system.") ]
class OMC_RunlevelInComputerSystem : CIM_HostedDependency
@@ -173,7 +173,7 @@
};
-[ Association,
+[ Association, Version("0.0.1"),
Description(
"OMC_InitdServiceRunlevel associates a OMC_Runlevel to its services.") ]
class OMC_InitdServiceRunlevel : CIM_CollectedMSEs
Modified: pybase/trunk/OMC_LogicalFile.mof
===================================================================
--- pybase/trunk/OMC_LogicalFile.mof 2007-12-18 18:58:52 UTC (rev 519)
+++ pybase/trunk/OMC_LogicalFile.mof 2007-12-18 20:40:49 UTC (rev 520)
@@ -30,7 +30,7 @@
#pragma locale ("en_US")
//////////////////////////////////////////////////////////////////////////////
-[ Abstract ]
+[ Abstract, Version("0.0.1") ]
class OMC_DataFile : CIM_DataFile
{
sint32 append([IN(true), OUT(false), REQUIRED(true)] string newtext);
@@ -39,37 +39,37 @@
};
//////////////////////////////////////////////////////////////////////////////
-[ Abstract ]
+[ Abstract, Version("0.0.1") ]
class OMC_UnixDeviceFile : CIM_UnixDeviceFile
{
};
//////////////////////////////////////////////////////////////////////////////
-[ Abstract ]
+[ Abstract, Version("0.0.1") ]
class OMC_SymbolicLink : CIM_SymbolicLink
{
};
//////////////////////////////////////////////////////////////////////////////
-[ Abstract ]
+[ Abstract, Version("0.0.1") ]
class OMC_UnixDirectory : CIM_UnixDirectory
{
};
//////////////////////////////////////////////////////////////////////////////
-[ Abstract ]
+[ Abstract, Version("0.0.1") ]
class OMC_UnixSocketFile : CIM_LogicalFile
{
};
//////////////////////////////////////////////////////////////////////////////
-[ Abstract ]
+[ Abstract, Version("0.0.1") ]
class OMC_FIFOPipeFile : CIM_FIFOPipeFile
{
};
//////////////////////////////////////////////////////////////////////////////
-[ Abstract ]
+[ Abstract, Version("0.0.1") ]
class OMC_UnixFile : CIM_UnixFile
{
boolean UserReadable;
@@ -84,7 +84,7 @@
};
//////////////////////////////////////////////////////////////////////////////
-[ Association, Aggregation, Composition, Abstract,
+[ Association, Aggregation, Composition, Abstrac, Version("0.0.1"),
Description("Specifies the hierarchical arrangement of LogicalFiles in a "
"Directory.")]
class OMC_DirectoryContainsFile : CIM_DirectoryContainsFile
@@ -99,7 +99,7 @@
};
//////////////////////////////////////////////////////////////////////////////
-[ Association, Abstract, Description (
+[ Association, Abstract, Version("0.0.1"), Description (
"CIM_FileIdentity indicates that a UnixFile describes Unix-"
"specific aspects of the various subclasses of LogicalFile. "
"The association exists since it forces UnixFile to be "
@@ -119,42 +119,49 @@
};
//////////////////////////////////////////////////////////////////////////////
+[ Version("0.0.1") ]
class OMC_LinuxDataFile : OMC_DataFile
{
};
//////////////////////////////////////////////////////////////////////////////
+[ Version("0.0.1") ]
class OMC_LinuxDeviceFile : OMC_UnixDeviceFile
{
};
//////////////////////////////////////////////////////////////////////////////
+[ Version("0.0.1") ]
class OMC_LinuxSymbolicLink : OMC_SymbolicLink
{
};
//////////////////////////////////////////////////////////////////////////////
+[ Version("0.0.1") ]
class OMC_LinuxDirectory : OMC_UnixDirectory
{
};
//////////////////////////////////////////////////////////////////////////////
+[ Version("0.0.1") ]
class OMC_LinuxFIFOPipeFile : OMC_FIFOPipeFile
{
};
//////////////////////////////////////////////////////////////////////////////
+[ Version("0.0.1") ]
class OMC_LinuxSocketFile : OMC_UnixSocketFile
{
};
//////////////////////////////////////////////////////////////////////////////
+[ Version("0.0.1") ]
class OMC_LinuxFile : OMC_UnixFile
{
};
//////////////////////////////////////////////////////////////////////////////
-[Association, Aggregation, Composition,
+[Association, Aggregation, Composition, Version("0.0.1"),
Description("Specifies the hierarchical arrangement of LogicalFiles in a "
"Directory.")
]
@@ -170,7 +177,7 @@
};
//////////////////////////////////////////////////////////////////////////////
-[Association, Description (
+[Association, Version("0.0.1"), Description (
"CIM_FileIdentity indicates that a UnixFile describes Unix-"
"specific aspects of the various subclasses of LogicalFile. "
"The association exists since it forces UnixFile to be "
Modified: pybase/trunk/OMC_OperatingSystem.mof
===================================================================
--- pybase/trunk/OMC_OperatingSystem.mof 2007-12-18 18:58:52 UTC (rev 519)
+++ pybase/trunk/OMC_OperatingSystem.mof 2007-12-18 20:40:49 UTC (rev 520)
@@ -1,13 +1,13 @@
#pragma locale ("en_US")
//////////////////////////////////////////////////////////////////////////////
-[ Description("OMC Operating System") ]
+[ Description("OMC Operating System"), Version("0.0.1") ]
class OMC_OperatingSystem : CIM_OperatingSystem
{
};
//////////////////////////////////////////////////////////////////////////////
-[ Description("Kernel statistics for the running os kernel") ]
+[ Description("Kernel statistics for the running os kernel"), Version("0.0.1") ]
class OMC_OSStatisticalInformation : CIM_StatisticalInformation
{
};
@@ -16,7 +16,7 @@
[ Association,
Description("OMC_OSStatistics relates "
"OMC_OSStatisticalInformation with "
- "OMC_OperatingSystem") ]
+ "OMC_OperatingSystem"), Version("0.0.1") ]
class OMC_OSStatistics : CIM_Statistics
{
[ Override("Stats"), Weak,
@@ -34,7 +34,7 @@
"At most one OperatingSystem can execute at any time on a "
"ComputerSystem. 'At most one' is specified, since the Computer "
"System may not be currently booted, or its OperatingSystem may "
- "be unknown.")]
+ "be unknown.", Version("0.0.1") ]
class OMC_RunningOS : CIM_RunningOS
{
[Override ( "Antecedent" ), Max ( 1 ), Description (
@@ -57,7 +57,7 @@
"on a ComputerSystem, when placed on one of its StorageExtents "
"- for example, copied to a disk drive or downloaded to Memory. "
"Using this definition, an OperatingSystem is 'installed' on a "
- "NetPC when downloaded via the network.")]
+ "NetPC when downloaded via the network.", Version("0.0.1") ]
class OMC_InstalledOS : CIM_InstalledOS
{
[Aggregate, Override ( "GroupComponent" ), Min ( 1 ), Max ( 1 ),
Modified: pybase/trunk/OMC_TimeService.mof
===================================================================
--- pybase/trunk/OMC_TimeService.mof 2007-12-18 18:58:52 UTC (rev 519)
+++ pybase/trunk/OMC_TimeService.mof 2007-12-18 20:40:49 UTC (rev 520)
@@ -2,7 +2,7 @@
//////////////////////////////////////////////////////////////////////////////
-[ Abstract ]
+[ Abstract, Version("0.0.1") ]
class OMC_TimeService : CIM_TimeService
{
};
@@ -10,7 +10,7 @@
//////////////////////////////////////////////////////////////////////////////
// OMC_SystemTimeService
[ Description("OMC_SystemTimeService represents the configuration "
- " and function of the system time") ]
+ " and function of the system time"), Version("0.0.1") ]
class OMC_SystemTimeService : OMC_TimeService
{
[ Key, Override("SystemCreationClassName") ]
@@ -68,7 +68,7 @@
//////////////////////////////////////////////////////////////////////////////
// OMC_RemoteTimeServicePort
[ Description("OMC_RemoteTimeServicePort represent the NTP "
- "configuration for the time service") ]
+ "configuration for the time service"), Version("0.0.1") ]
class OMC_RemoteTimeServicePort : CIM_RemotePort
{
[ Override("AccessInfo"), Write(true),
@@ -134,7 +134,7 @@
//////////////////////////////////////////////////////////////////////////////
// OMC_TimeZoneSettingData
[ Description("OMC_TimeZoneSettingData represents the "
- "configuration of the system time zone.") ]
+ "configuration of the system time zone."), Version("0.0.1") ]
class OMC_TimeZoneSettingData : CIM_SettingData
{
[ Key, Description(
@@ -158,7 +158,7 @@
// OMC_HostedTimeService
[ Association,
Description("OMC_HostedTimeService associates the time service "
- "to the computer system") ]
+ "to the computer system"), Version("0.0.1") ]
class OMC_HostedTimeService : CIM_HostedService
{
[ Override("Antecedent"), Min(1), Max(1),
@@ -175,7 +175,7 @@
[ Association,
Description("OMC_TimeServiceAccessBySAP is an association "
"that identifies the configuration for NTP access for the "
- "time service") ]
+ "time service"), Version("0.0.1") ]
class OMC_TimeServiceAccessBySAP : CIM_ServiceAccessBySAP
{
[ Override("Antecedent"),
@@ -192,7 +192,7 @@
//
[ Association,
Description("OMC_TimeServiceTimeZoneSettingData associates the time "
- "service with the time zone configuration") ]
+ "service with the time zone configuration"), Version("0.0.1") ]
class OMC_TimeServiceTimeZoneSettingData : CIM_ElementSettingData
{
[ Override("ManagedElement") ]
@@ -207,7 +207,7 @@
// OMC_TimeServiceAvailableToElement
[ Association,
Description("OMC_TimeServiceAvailableToElement indicates that this time "
- "service is available for the use of the managed element") ]
+ "service is available for the use of the managed element"), Version("0.0.1") ]
class OMC_TimeServiceAvailableToElement : CIM_ServiceAvailableToElement
{
[ Override("ServiceProvided") ]
Modified: pybase/trunk/OMC_UnitaryComputerSystem.mof
===================================================================
--- pybase/trunk/OMC_UnitaryComputerSystem.mof 2007-12-18 18:58:52 UTC (rev 519)
+++ pybase/trunk/OMC_UnitaryComputerSystem.mof 2007-12-18 20:40:49 UTC (rev 520)
@@ -2,13 +2,13 @@
//////////////////////////////////////////////////////////////////////////////
-[ Description("OMC Unitary Computer System") ]
+[ Description("OMC Unitary Computer System"), Version("0.0.1") ]
class OMC_UnitaryComputerSystem : CIM_UnitaryComputerSystem
{
};
//////////////////////////////////////////////////////////////////////////////
-[ Description("OMC Host Name Setting Data") ]
+[ Description("OMC Host Name Setting Data"), Version("0.0.1") ]
class OMC_HostNameSettingData : CIM_SettingData
{
[Description ("The name of this computer"),
@@ -19,7 +19,7 @@
//////////////////////////////////////////////////////////////////////////////
[ Association, Version ( "2.7.0" ),
Description ("OMC_ComputerSystemSettingData is associates "
- " the computer name setting with the computer system") ]
+ " the computer name setting with the computer system"), Version("0.0.1") ]
class OMC_ComputerSystemHostNameSettingData : CIM_ElementSettingData
{
[ Override("ManagedElement"), Key,
Modified: pybase/trunk/OMC_UnixProcess.mof
===================================================================
--- pybase/trunk/OMC_UnixProcess.mof 2007-12-18 18:58:52 UTC (rev 519)
+++ pybase/trunk/OMC_UnixProcess.mof 2007-12-18 20:40:49 UTC (rev 520)
@@ -1,7 +1,7 @@
#pragma locale ("en_US")
//////////////////////////////////////////////////////////////////////////////
-[ Description ("A Unix Process") ]
+[ Description ("A Unix Process"), Version("0.0.1") ]
class OMC_UnixProcess : CIM_UnixProcess
{
[ Description("Send a signal to some running processes. Only the "
@@ -21,7 +21,7 @@
//////////////////////////////////////////////////////////////////////////////
[ Association, Aggregation, Composition, Version ( "2.7.0" ),
Description ("A link between the OperatingSystem and Process(es) "
- "running in the context of this OperatingSystem.") ]
+ "running in the context of this OperatingSystem."), Version("0.0.1") ]
class OMC_OSProcess : CIM_OSProcess
{
[Aggregate, Override ( "GroupComponent" ), Min ( 1 ), Max ( 1 ),
@@ -38,7 +38,7 @@
//////////////////////////////////////////////////////////////////////////////
[ Association,
Description("A link between a Process and a DataFile indicating "
- "that the File participates in the execution of the Process.") ]
+ "that the File participates in the execution of the Process."), Version("0.0.1") ]
class OMC_ProcessExecutable : CIM_ProcessExecutable
{
[ Override("Antecedent"),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|