io.getunleash.repository.ToggleBootstrapProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unleash-client-java Show documentation
Show all versions of unleash-client-java Show documentation
A client library for Unleash
package io.getunleash.repository;
public interface ToggleBootstrapProvider {
/**
* Should return JSON string parsable to /api/client/features format Look in
* src/test/resources/features-v1.json or src/test/resources/unleash-repo-v1.json for example
* Example in {@link ToggleBootstrapFileProvider}
*
* @return JSON string that can be sent to {@link ToggleBootstrapHandler#parse(String)}
*/
String read();
}