com.github.jamesnetherton.zulip.client.api.server.ExternalAuthenticationSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zulip-java-client Show documentation
Show all versions of zulip-java-client Show documentation
Java client for the Zulip REST API
The newest version!
package com.github.jamesnetherton.zulip.client.api.server;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Defines Zulip server external authentication settings.
*/
public class ExternalAuthenticationSettings {
@JsonProperty
private String displayIcon;
@JsonProperty
private String displayName;
@JsonProperty
private String loginUrl;
@JsonProperty
private String name;
@JsonProperty
private String signupUrl;
public String getDisplayIcon() {
return displayIcon;
}
public String getDisplayName() {
return displayName;
}
public String getLoginUrl() {
return loginUrl;
}
public String getName() {
return name;
}
public String getSignupUrl() {
return signupUrl;
}
}