com.launchkey.sdk.auth.AuthorizeResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchkey-sdk Show documentation
Show all versions of launchkey-sdk Show documentation
SDK for interacting with the LaunchKey distributed authentication and authorization platform
package com.launchkey.sdk.auth;
public class AuthorizeResult {
private String authRequest;
private String launchkeyTime;
public String getAuthRequest() {
return authRequest;
}
public void setAuthRequest(String authRequest) {
this.authRequest = authRequest;
}
public String getLaunchkeyTime() {
return launchkeyTime;
}
public void setLaunchkeyTime(String launchkeyTime) {
this.launchkeyTime = launchkeyTime;
}
}