mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-01-28 00:22:33 +01:00
wip
This commit is contained in:
parent
07cfc3a10e
commit
6beac41390
@ -2,7 +2,7 @@ package stirling.software.SPDF.model;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
public class Provider implements ProviderInterface {
|
||||
public abstract class Provider implements ProviderInterface {
|
||||
private String name;
|
||||
private String clientName;
|
||||
|
||||
|
@ -4,23 +4,23 @@ import java.util.Collection;
|
||||
|
||||
public interface ProviderInterface {
|
||||
|
||||
public Collection<String> getScopes();
|
||||
Collection<String> getScopes();
|
||||
|
||||
public void setScopes(String scopes);
|
||||
void setScopes(String scopes);
|
||||
|
||||
public String getUseAsUsername();
|
||||
String getUseAsUsername();
|
||||
|
||||
public void setUseAsUsername(String useAsUsername);
|
||||
void setUseAsUsername(String useAsUsername);
|
||||
|
||||
public String getIssuer();
|
||||
String getIssuer();
|
||||
|
||||
public void setIssuer(String issuer);
|
||||
void setIssuer(String issuer);
|
||||
|
||||
public String getClientSecret();
|
||||
String getClientSecret();
|
||||
|
||||
public void setClientSecret(String clientSecret);
|
||||
void setClientSecret(String clientSecret);
|
||||
|
||||
public String getClientId();
|
||||
String getClientId();
|
||||
|
||||
public void setClientId(String clientId);
|
||||
void setClientId(String clientId);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user