90 lines
2.1 KiB
Java
90 lines
2.1 KiB
Java
package nlib.cmm.snslogin;
|
|
|
|
public class GoogleOAuthRequest {
|
|
private String redirectUri;
|
|
private String clientId;
|
|
private String clientSecret;
|
|
private String code;
|
|
private String responseType;
|
|
private String scope;
|
|
private String accessType;
|
|
private String grantType;
|
|
private String state;
|
|
private String includeGrantedScopes;
|
|
private String loginHint;
|
|
private String prompt;
|
|
|
|
public String getRedirectUri() {
|
|
return redirectUri;
|
|
}
|
|
public void setRedirectUri(String redirectUri) {
|
|
this.redirectUri = redirectUri;
|
|
}
|
|
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;
|
|
}
|
|
public String getCode() {
|
|
return code;
|
|
}
|
|
public void setCode(String code) {
|
|
this.code = code;
|
|
}
|
|
public String getResponseType() {
|
|
return responseType;
|
|
}
|
|
public void setResponseType(String responseType) {
|
|
this.responseType = responseType;
|
|
}
|
|
public String getScope() {
|
|
return scope;
|
|
}
|
|
public void setScope(String scope) {
|
|
this.scope = scope;
|
|
}
|
|
public String getAccessType() {
|
|
return accessType;
|
|
}
|
|
public void setAccessType(String accessType) {
|
|
this.accessType = accessType;
|
|
}
|
|
public String getGrantType() {
|
|
return grantType;
|
|
}
|
|
public void setGrantType(String grantType) {
|
|
this.grantType = grantType;
|
|
}
|
|
public String getState() {
|
|
return state;
|
|
}
|
|
public void setState(String state) {
|
|
this.state = state;
|
|
}
|
|
public String getIncludeGrantedScopes() {
|
|
return includeGrantedScopes;
|
|
}
|
|
public void setIncludeGrantedScopes(String includeGrantedScopes) {
|
|
this.includeGrantedScopes = includeGrantedScopes;
|
|
}
|
|
public String getLoginHint() {
|
|
return loginHint;
|
|
}
|
|
public void setLoginHint(String loginHint) {
|
|
this.loginHint = loginHint;
|
|
}
|
|
public String getPrompt() {
|
|
return prompt;
|
|
}
|
|
public void setPrompt(String prompt) {
|
|
this.prompt = prompt;
|
|
}
|
|
|
|
} |