mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-12-18 20:04:17 +01:00
27 lines
540 B
Java
27 lines
540 B
Java
package stirling.software.SPDF.model;
|
|
|
|
import java.util.Collection;
|
|
|
|
public interface ProviderInterface {
|
|
|
|
public Collection<String> getScopes();
|
|
|
|
public void setScopes(String scopes);
|
|
|
|
public String getUseAsUsername();
|
|
|
|
public void setUseAsUsername(String useAsUsername);
|
|
|
|
public String getIssuer();
|
|
|
|
public void setIssuer(String issuer);
|
|
|
|
public String getClientSecret();
|
|
|
|
public void setClientSecret(String clientSecret);
|
|
|
|
public String getClientId();
|
|
|
|
public void setClientId(String clientId);
|
|
}
|