com.emc.vipr.model.keystore.TrustedCertificates Maven / Gradle / Ivy
/*
* Copyright (c) 2014 EMC Corporation
* All Rights Reserved
*/
package com.emc.vipr.model.keystore;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "trusted_certificates")
public class TrustedCertificates {
private List trustedCertificates;
@XmlElement(name = "certificate")
public List getTrustedCertificates() {
return trustedCertificates;
}
public void setTrustedCertificates(List trustedCertificates) {
this.trustedCertificates = trustedCertificates;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy