![JAR search and dependency download from the Maven repository](/logo.png)
com.hp.autonomy.hod.client.api.developer.Authentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-hod-client Show documentation
Show all versions of java-hod-client Show documentation
Java Client for communicating with HP Haven OnDemand
package com.hp.autonomy.hod.client.api.developer;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.hp.autonomy.hod.client.api.authentication.TokenType;
import lombok.Data;
@Data
public class Authentication {
@JsonProperty("app_auth_mode")
private final ApplicationAuthMode applicationAuthMode;
@JsonProperty("user_auth_mode")
private final UserAuthMode userAuthMode;
@JsonProperty("token_type")
private final TokenType tokenType;
public Authentication(final ApplicationAuthMode applicationAuthMode, final UserAuthMode userAuthMode, final TokenType tokenType) {
this.applicationAuthMode = applicationAuthMode;
this.userAuthMode = userAuthMode;
this.tokenType = tokenType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy