// Copyright (c) 2005 DMTF. All rights reserved.
// CPUBS corrections to
// CoreCollection.mof
// Add UmlPackagePath
// qualifier values to CIM Schema.
// ==================================================================
// CIM_HostedCollection
// ==================================================================
[Association, Version ( "2.10.0" ),
UMLPackagePath ( "CIM::Core::Collection" ), Description (
"HostedCollection defines a SystemSpecificCollection in the "
"context of a scoping System. It represents a Collection that "
"has meaning only in the context of a System, a Collection "
"whose elements are restricted by the definition of the System, "
"or both of these types of Collections.")]
class CIM_HostedCollection : CIM_HostedDependency {
[Override ( "Antecedent" ), Min ( 1 ), Max ( 1 ), Description (
"The scoping system.")]
CIM_System REF Antecedent;
[Override ( "Dependent" ), Description (
"The collection defined in the context of a system.")]
CIM_SystemSpecificCollection REF Dependent;
};