io.sphere.sdk.extensions.AuthorizationHeaderAuthenticationImpl Maven / Gradle / Ivy
package io.sphere.sdk.extensions;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.sphere.sdk.models.Base;
import java.lang.String;
import javax.annotation.Generated;
@Generated(
value = "io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator",
comments = "Generated from: io.sphere.sdk.extensions.AuthorizationHeaderAuthentication"
)
final class AuthorizationHeaderAuthenticationImpl extends Base implements AuthorizationHeaderAuthentication {
private String headerValue;
@JsonCreator
AuthorizationHeaderAuthenticationImpl(final String headerValue) {
this.headerValue = headerValue;
}
public String getHeaderValue() {
return headerValue;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy