com.jayway.restassured.authentication.KeystoreProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-assured Show documentation
Show all versions of rest-assured Show documentation
Java DSL for easy testing of REST services
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