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

com.jayway.restassured.authentication.KeystoreProvider Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package com.jayway.restassured.authentication;

import java.security.KeyStore;

/**
 * Date: 22/04/2013
 * Time: 13:55
 */
public interface KeystoreProvider {
    /**
     * @return If this KeystoreSpec can build a keystore
     */
    Boolean canBuild();

    /**
     * @return the Keystore represented by this keystore spec
     */
    KeyStore build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy