19 lines
556 B
Plaintext
19 lines
556 B
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[Association, Version ( "3.0.0" ),
|
|
Description (
|
|
"A relationship between a System Defense Policy and its "
|
|
"containing service" )]
|
|
class AMT_SystemDefensePolicyInService : CIM_Dependency {
|
|
|
|
[Override ( "Dependent" ),
|
|
Description ( "The hosted System Defense policy." )]
|
|
AMT_SystemDefensePolicy REF Dependent;
|
|
|
|
[Override ( "Antecedent" ),
|
|
Max ( 1 ),
|
|
Description ( "The hosting Service." )]
|
|
CIM_Service REF Antecedent;
|
|
|
|
|
|
};
|