com.microsoft.aad.msal4j.Credential Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.mail.outlook.auth.connector.provider
Show all versions of com.liferay.mail.outlook.auth.connector.provider
Liferay Mail Outlook Auth Connector Provider
// Generated by delombok at Mon Apr 17 18:26:07 UTC 2023
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.aad.msal4j;
import com.fasterxml.jackson.annotation.JsonProperty;
class Credential {
@JsonProperty("home_account_id")
protected String homeAccountId;
@JsonProperty("environment")
protected String environment;
@JsonProperty("client_id")
protected String clientId;
@JsonProperty("secret")
protected String secret;
@JsonProperty("user_assertion_hash")
protected String userAssertionHash;
@java.lang.SuppressWarnings("all")
public String homeAccountId() {
return this.homeAccountId;
}
@java.lang.SuppressWarnings("all")
public String environment() {
return this.environment;
}
@java.lang.SuppressWarnings("all")
public String clientId() {
return this.clientId;
}
@java.lang.SuppressWarnings("all")
public String secret() {
return this.secret;
}
@java.lang.SuppressWarnings("all")
public String userAssertionHash() {
return this.userAssertionHash;
}
@java.lang.SuppressWarnings("all")
public Credential homeAccountId(final String homeAccountId) {
this.homeAccountId = homeAccountId;
return this;
}
@java.lang.SuppressWarnings("all")
public Credential environment(final String environment) {
this.environment = environment;
return this;
}
@java.lang.SuppressWarnings("all")
public Credential clientId(final String clientId) {
this.clientId = clientId;
return this;
}
@java.lang.SuppressWarnings("all")
public Credential secret(final String secret) {
this.secret = secret;
return this;
}
@java.lang.SuppressWarnings("all")
public Credential userAssertionHash(final String userAssertionHash) {
this.userAssertionHash = userAssertionHash;
return this;
}
}