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

io.github.jpmorganchase.fusion.oauth.credential.OAuthDatasetCredentials Maven / Gradle / Ivy

package io.github.jpmorganchase.fusion.oauth.credential;

import lombok.*;

@Getter
@ToString
@EqualsAndHashCode
@AllArgsConstructor
@Builder
public class OAuthDatasetCredentials implements Credentials {

    private String token;
    private String catalog;
    private String dataset;
    private String authServerUrl;

    @Override
    public CredentialType getCredentialType() {
        return CredentialType.DATASET;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy