Package com.emc.vipr.model.keystore

Examples of com.emc.vipr.model.keystore.TrustedCertificates


     * API Call: <tt>GET /vdc/truststore</tt>
     *
     * @return The list of trusted certificates
     */
    public List<String> getTrustedCertificates() {
        TrustedCertificates response =
                client.get(TrustedCertificates.class, TRUSTSTORE_URL);
        return defaultList(response.getTrustedCertificates());
    }
View Full Code Here


     *            trusted certificates changes
     * @return The list of trusted certificates
     */
    public List<String> updateTrustedCertificate(
            TrustedCertificateChanges trustedCertificateChanges) {
        TrustedCertificates response =
                client.put(TrustedCertificates.class, trustedCertificateChanges,
                        TRUSTSTORE_URL);
        return defaultList(response.getTrustedCertificates());
    }
View Full Code Here

TOP

Related Classes of com.emc.vipr.model.keystore.TrustedCertificates

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.