![JAR search and dependency download from the Maven repository](/logo.png)
com.aeontronix.anypointsdk.auth.credentials.AnypointClientCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anypoint-sdk Show documentation
Show all versions of anypoint-sdk Show documentation
Anypoint Software Development Toolkit
/*
* Copyright (c) 2023. Aeontronix Inc
*/
package com.aeontronix.anypointsdk.auth.credentials;
import com.aeontronix.anypointsdk.auth.AnypointClientCredentialsAuthenticationHandler;
import com.aeontronix.restclient.auth.AuthenticationHandler;
public class AnypointClientCredentials implements AnypointCredentials {
private String clientId;
private String clientSecret;
public AnypointClientCredentials() {
}
public AnypointClientCredentials(String clientId, String clientSecret) {
this.clientId = clientId;
this.clientSecret = clientSecret;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
@Override
public AuthenticationHandler toAuthenticationHandler() {
return new AnypointClientCredentialsAuthenticationHandler(clientId, clientSecret);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy