Package org.a2aproject.sdk.spec
Record Class OAuth2SecurityScheme
java.lang.Object
java.lang.Record
org.a2aproject.sdk.spec.OAuth2SecurityScheme
- Record Components:
flows- the OAuth 2.0 flow configuration (required)description- optional description of the security schemeoauth2MetadataUrl- optional URL to OAuth 2.0 metadata (RFC 8414)
- All Implemented Interfaces:
SecurityScheme
public record OAuth2SecurityScheme(OAuthFlows flows, @Nullable String description, @Nullable String oauth2MetadataUrl)
extends Record
implements SecurityScheme
OAuth 2.0 security scheme for agent authentication.
This security scheme uses OAuth 2.0 authorization flows to authenticate requests.
Supports authorization code, client credentials, implicit, and password flows
via the OAuthFlows configuration.
Corresponds to the OpenAPI "oauth2" security scheme type.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder for constructing immutableOAuth2SecuritySchemeinstances. -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionOAuth2SecurityScheme(OAuthFlows flows, @Nullable String description, @Nullable String oauth2MetadataUrl) Compact constructor with validation. -
Method Summary
Modifier and TypeMethodDescriptionstatic OAuth2SecurityScheme.Builderbuilder()Create a new Builder@Nullable StringReturns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.flows()Returns the value of theflowsrecord component.final inthashCode()Returns a hash code value for this object.@Nullable StringReturns the value of theoauth2MetadataUrlrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the type of the security scheme.
-
Field Details
-
TYPE
The type identifier for OAuth 2.0 security schemes: "oauth2SecurityScheme".- See Also:
-
-
Constructor Details
-
OAuth2SecurityScheme
public OAuth2SecurityScheme(OAuthFlows flows, @Nullable String description, @Nullable String oauth2MetadataUrl) Compact constructor with validation.- Parameters:
flows- the OAuth 2.0 flow configuration (required)description- optional description of the security schemeoauth2MetadataUrl- optional URL to OAuth 2.0 metadata (RFC 8414)- Throws:
IllegalArgumentException- if flows 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). -
flows
Returns the value of theflowsrecord component.- Returns:
- the value of the
flowsrecord component
-
description
Returns the value of thedescriptionrecord component.- Specified by:
descriptionin interfaceSecurityScheme- Returns:
- the value of the
descriptionrecord component
-
oauth2MetadataUrl
Returns the value of theoauth2MetadataUrlrecord component.- Returns:
- the value of the
oauth2MetadataUrlrecord component
-