|
|
|
@ -33,6 +33,8 @@ public class RegistrationProfile {
|
|
|
|
|
private String[] contacts;
|
|
|
|
|
private String[] requestUris;
|
|
|
|
|
private String owner;
|
|
|
|
|
private String callbackUrl;
|
|
|
|
|
private String tokenScope;
|
|
|
|
|
|
|
|
|
|
public String getApplicationType() {
|
|
|
|
|
return applicationType;
|
|
|
|
@ -138,4 +140,20 @@ public class RegistrationProfile {
|
|
|
|
|
this.owner = owner;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCallbackUrl() {
|
|
|
|
|
return callbackUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCallbackUrl(String callbackUrl) {
|
|
|
|
|
this.callbackUrl = callbackUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getTokenScope() {
|
|
|
|
|
return tokenScope;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTokenScope(String tokenScope) {
|
|
|
|
|
this.tokenScope = tokenScope;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|