com.microsoft.azure.sdk.iotcentral.device.IoTCentralCert Maven / Gradle / Ivy
// Copyright (c) Luca Druda. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
package com.microsoft.azure.sdk.iotcentral.device;
public class IoTCentralCert {
public IoTCentralCert(String certificate, String privateKey, String root) {
this.certificate = certificate;
this.privateKey = privateKey;
this.root = root;
}
public IoTCentralCert(String certificate, String privateKey, String root, String intermediate) {
this(certificate, privateKey, root);
this.intermediate = intermediate;
}
public String certificate;
public String privateKey;
public String root;
public String intermediate;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy