com.wadpam.oauth2.json.JFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-client Show documentation
Show all versions of oauth2-client Show documentation
Implements OAuth2 authentication on top of Open-Server security
The newest version!
package com.wadpam.oauth2.json;
import com.wadpam.open.json.JBaseObject;
/**
* A ConnectionFactory entity.
* the ID is mapped to providerId.
* @author sosandstrom
*/
public class JFactory extends JBaseObject {
private String clientId;
private String clientSecret;
/** Base URL to the signin provider */
private String baseUrl;
public String getBaseUrl() {
return baseUrl;
}
public void setBaseUrl(String baseUrl) {
this.baseUrl = baseUrl;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
}