com.sap.cloud.rest.api.client.auth.none.NoAuthentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-client Show documentation
Show all versions of rest-api-client Show documentation
Java HTTP client library for HTTP handling, when building clients for RESTful APIs.
The newest version!
package com.sap.cloud.rest.api.client.auth.none;
import com.sap.cloud.rest.api.client.auth.Authentication;
import com.sap.cloud.rest.api.client.auth.AuthenticationType;
import com.sap.cloud.rest.api.client.config.RestApiClientConfig;
/**
* A class that represents no authentication for {@link RestApiClientConfig}.
*/
public class NoAuthentication implements Authentication {
@Override
public AuthenticationType getAuthenticationType() {
return AuthenticationType.NO_AUTH;
}
}