All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.launchkey.sdk.auth.AuthorizeResult Maven / Gradle / Ivy

Go to download

SDK for interacting with the LaunchKey distributed authentication and authorization platform

There is a newer version: 4.0.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy