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

com.manywho.sdk.api.run.EngineAuthorizationContext Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.manywho.sdk.api.run;

import com.manywho.sdk.api.AuthorizationType;

public class EngineAuthorizationContext {
    private String directoryName;
    private String directoryId;
    private String loginUrl;
    private AuthorizationType authenticationType;

    public String getDirectoryName() {
        return directoryName;
    }

    public void setDirectoryName(String directoryName) {
        this.directoryName = directoryName;
    }

    public String getDirectoryId() {
        return directoryId;
    }

    public void setDirectoryId(String directoryId) {
        this.directoryId = directoryId;
    }

    public String getLoginUrl() {
        return loginUrl;
    }

    public void setLoginUrl(String loginUrl) {
        this.loginUrl = loginUrl;
    }

    public AuthorizationType getAuthenticationType() {
        return authenticationType;
    }

    public void setAuthenticationType(AuthorizationType authenticationType) {
        this.authenticationType = authenticationType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy