Package org.a2aproject.sdk.spec
Record Class HTTPAuthSecurityScheme
java.lang.Object
java.lang.Record
org.a2aproject.sdk.spec.HTTPAuthSecurityScheme
- Record Components:
bearerFormat- the bearer token format (optional)scheme- the authentication scheme (required)description- the scheme description (optional)
- All Implemented Interfaces:
SecurityScheme
public record HTTPAuthSecurityScheme(@Nullable String bearerFormat, String scheme, @Nullable String description)
extends Record
implements SecurityScheme
HTTP authentication security scheme for agent authentication.
This security scheme uses HTTP authentication mechanisms, supporting both basic authentication
and bearer token authentication (e.g., JWT). The scheme parameter specifies the
HTTP authentication scheme name as defined in RFC 7235.
Common schemes:
basic- HTTP Basic authentication (RFC 7617)bearer- Bearer token authentication (RFC 6750), typically used with OAuth 2.0
For bearer tokens, the bearerFormat field can provide additional information about
the token format (e.g., "JWT").
Example usage:
HTTPAuthSecurityScheme scheme = HTTPAuthSecurityScheme.builder()
.scheme("bearer")
.bearerFormat("JWT")
.description("JWT bearer token authentication")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder for constructingHTTPAuthSecuritySchemeinstances. -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionHTTPAuthSecurityScheme(@Nullable String bearerFormat, String scheme, @Nullable String description) Compact constructor with validation. -
Method Summary
Modifier and TypeMethodDescription@Nullable StringReturns the value of thebearerFormatrecord component.builder()Create a new Builder@Nullable StringReturns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.scheme()Returns the value of theschemerecord component.final StringtoString()Returns a string representation of this record class.type()Returns the type of the security scheme.
-
Field Details
-
TYPE
The HTTP security scheme type identifier.- See Also:
-
-
Constructor Details
-
HTTPAuthSecurityScheme
public HTTPAuthSecurityScheme(@Nullable String bearerFormat, String scheme, @Nullable String description) Compact constructor with validation.- Parameters:
bearerFormat- the bearer token format (optional)scheme- the authentication scheme (required)description- the scheme description (optional)- Throws:
IllegalArgumentException- if scheme is null
-
-
Method Details
-
type
Description copied from interface:SecuritySchemeReturns the type of the security scheme.- Specified by:
typein interfaceSecurityScheme- Returns:
- the type of the security scheme.
-
builder
Create a new Builder- Returns:
- the builder
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
bearerFormat
Returns the value of thebearerFormatrecord component.- Returns:
- the value of the
bearerFormatrecord component
-
scheme
Returns the value of theschemerecord component.- Returns:
- the value of the
schemerecord component
-
description
Returns the value of thedescriptionrecord component.- Specified by:
descriptionin interfaceSecurityScheme- Returns:
- the value of the
descriptionrecord component
-