io.camunda.connector.model.authentication.RefreshTokenAuthentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector-microsoft-teams Show documentation
Show all versions of connector-microsoft-teams Show documentation
Camunda Microsoft Teams Connector
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. Licensed under a proprietary license.
* See the License.txt file for more information. You may not use this file
* except in compliance with the proprietary license.
*/
package io.camunda.connector.model.authentication;
import com.microsoft.graph.requests.GraphServiceClient;
import io.camunda.connector.suppliers.GraphServiceClientSupplier;
import jakarta.validation.constraints.NotBlank;
import java.util.Objects;
import okhttp3.Request;
public class RefreshTokenAuthentication extends MSTeamsAuthentication {
@NotBlank private String clientId;
@NotBlank private String tenantId;
@NotBlank private String clientSecret;
@NotBlank private String token;
@Override
public GraphServiceClient buildAndGetGraphServiceClient(
final GraphServiceClientSupplier clientSupplier) {
return clientSupplier.buildAndGetGraphServiceClient(this);
}
public String getClientId() {
return clientId;
}
public void setClientId(final String clientId) {
this.clientId = clientId;
}
public String getTenantId() {
return tenantId;
}
public void setTenantId(final String tenantId) {
this.tenantId = tenantId;
}
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(final String clientSecret) {
this.clientSecret = clientSecret;
}
public String getToken() {
return token;
}
public void setToken(final String token) {
this.token = token;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final RefreshTokenAuthentication that = (RefreshTokenAuthentication) o;
return Objects.equals(clientId, that.clientId)
&& Objects.equals(tenantId, that.tenantId)
&& Objects.equals(clientSecret, that.clientSecret)
&& Objects.equals(token, that.token);
}
@Override
public int hashCode() {
return Objects.hash(clientId, tenantId, clientSecret, token);
}
@Override
public String toString() {
return "RefreshTokenAuthentication{"
+ "clientId='"
+ clientId
+ "'"
+ ", tenantId='"
+ tenantId
+ "'"
+ ", clientSecret='"
+ "[REDACTED]"
+ "'"
+ ", token='"
+ "[REDACTED]"
+ "'"
+ "}";
}
}