20 lines
692 B
Plaintext
20 lines
692 B
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[Association, Version ( "6.0.0" ),
|
|
Description (
|
|
"This relationship defines a service context of a TLS Credential."
|
|
)]
|
|
class AMT_TLSCredentialContext : CIM_CredentialContext {
|
|
|
|
[Key, Override ( "ElementInContext" ),
|
|
Description ( "A certificate whose context is defined." )]
|
|
AMT_PublicKeyCertificate REF ElementInContext;
|
|
|
|
[Key, Override ( "ElementProvidingContext" ),
|
|
Description (
|
|
"The TLSProtocolEndpointCollection that provides context "
|
|
"or scope for the Credential." )]
|
|
AMT_TLSProtocolEndpointCollection REF ElementProvidingContext;
|
|
|
|
|
|
};
|