Es sind folgende zwei Schritte durchzuführen:
Beispiel: Es soll die CIM Association CIM_HostedService des Core Models abgebildet werden:
Die MOF Definition lautet:
[Association, Description(
"An association between a Service and the System on which the"
"functionality resides. The cardinality of this association"
"is 1-to-many. A System may host many Services ...")]
class CIM_HostedService:CIM_Dependency
{
[Override ("CIM_Dependency:Antecedent") , Description (
"The hosting System") , Multiplicity ("SV") ]
CIM_System REF Antecedent;
[Override ("CIM_Dependency:Dependent") , Description (
"The Service hosted on the System") , Multiplicity ("MV") ]
CIM_Service REF Dependent;
};
Nach Definition der topologischen Typen CIM_System und CIM_Service kann eine Regel definiert werden.
Diese Regel trägt der 1:n Kardinalität in der CIM-Definition Rechnung.