Record Class ExtensionLaunchProviderResolveRequest
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.ExtensionLaunchProviderResolveRequest
@Generated("copilot-sdk-codegen")
public record ExtensionLaunchProviderResolveRequest(String id, String name, String modulePath, ExtensionSource source)
extends Record
A discovered extension entrypoint that the registered integrator may classify and resolve to an opaque launch profile.
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionExtensionLaunchProviderResolveRequest(String id, String name, String modulePath, ExtensionSource source) Creates an instance of aExtensionLaunchProviderResolveRequestrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.Returns the value of themodulePathrecord component.name()Returns the value of thenamerecord component.source()Returns the value of thesourcerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ExtensionLaunchProviderResolveRequest
public ExtensionLaunchProviderResolveRequest(String id, String name, String modulePath, ExtensionSource source) Creates an instance of aExtensionLaunchProviderResolveRequestrecord class.- Parameters:
id- the value for theidrecord componentname- the value for thenamerecord componentmodulePath- the value for themodulePathrecord componentsource- the value for thesourcerecord component
-
-
Method Details
-
toString
-
hashCode
-
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). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
modulePath
Returns the value of themodulePathrecord component.- Returns:
- the value of the
modulePathrecord component
-
source
Returns the value of thesourcerecord component.- Returns:
- the value of the
sourcerecord component
-