X509CAReferences Class

  • java.lang.Object
    • java.io.Serializable
      • Serializable
        • com.microsoft.azure.sdk.iot.provisioning.service.configs.X509CAReferences

public class X509CAReferences extends Serializable

Representation of a single Device Provisioning Service X509 Primary and Secondary CA reference.

this class creates a representation of an X509 CA references. It can receive primary and secondary CA references.

Users must provide the CA reference as aString 

</code> . This class will encapsulate both in a single <xref uid="com.microsoft.azure.sdk.iot.provisioning.service.configs.X509Attestation" data-throw-if-not-resolved="false" data-raw-source="X509Attestation"></xref>.</p>

The following JSON is an example of the result of this class.

{
    "primary": "ValidCAReference-1",

    "secondary": "validCAReference-2"

}

</code></pre></p>

Constructor Summary

Constructor Description
X509CAReferences(X509CAReferences x509CAReferences)

Constructor [COPY]

Creates a new instance of theX509CAReferences 

</code> copping the content of the provided one.</p>

Inherited Members

Constructor Details

X509CAReferences

public X509CAReferences(X509CAReferences x509CAReferences)

Constructor [COPY]

Creates a new instance of theX509CAReferences 

</code> copping the content of the provided one.</p>

Parameters:

x509CAReferences -

the originalX509CAReferences 

</code> to copy. </p>

Applies to