All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emc.vipr.model.keystore.KeyAndCertificateChain Maven / Gradle / Ivy

There is a newer version: 3.5.0.0
Show newest version
/*
 * Copyright (c) 2014 EMC Corporation
 * All Rights Reserved
 */
package com.emc.vipr.model.keystore;

import javax.xml.bind.annotation.XmlElement;

public class KeyAndCertificateChain {

    private String privateKey;
    private String certificateChain;

    @XmlElement(name = "private_key")
    public String getPrivateKey() {
        return privateKey;
    }

    public void setPrivateKey(String privateKey) {
        this.privateKey = privateKey;
    }

    @XmlElement(name = "certificate_chain")
    public String getCertificateChain() {
        return certificateChain;
    }

    public void setCertificateChain(String certificateChain) {
        this.certificateChain = certificateChain;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy