(file) Return to schema.mof CVS log (file) (dir) Up to [OMI] / omi / samples / Providers / FileSystem

File: [OMI] / omi / samples / Providers / FileSystem / schema.mof (download)
Revision: 1.1, Fri Jun 15 19:51:15 2012 UTC (12 years ago) by mike
Branch: MAIN
CVS Tags: OMI_1_0_2, OMI_1_0_1, OMI_1_0_0
OMI 1.0.1

class MSFT_LogicalFile
{
    [Key] String Name;
};

class MSFT_DataFile : MSFT_LogicalFile
{
    Uint32 Size;
};

class MSFT_Directory : MSFT_LogicalFile
{
    // Number of files in this directory excluding "." and ".."
    Uint32 Count;

    // Names of files in this directory.
    String FileNames[];
};

[Association]
class MSFT_DirectoryContainsFile
{
    [Key] MSFT_Directory REF GroupComponent;
    [Key] MSFT_LogicalFile REF PartComponent;
};

ViewCVS 0.9.2