Package io.quarkus.devservices.keycloak
Record Class KeycloakDevServicesConfigurator.ConfigPropertiesContext
java.lang.Object
java.lang.Record
io.quarkus.devservices.keycloak.KeycloakDevServicesConfigurator.ConfigPropertiesContext
- Enclosing interface:
KeycloakDevServicesConfigurator
-
Constructor Summary
ConstructorsConstructorDescriptionConfigPropertiesContext(String authServerInternalUrl, String oidcClientId, String oidcClientSecret, String authServerInternalBaseUrl) Creates an instance of aConfigPropertiesContextrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theauthServerInternalBaseUrlrecord component.Returns the value of theauthServerInternalUrlrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theoidcClientIdrecord component.Returns the value of theoidcClientSecretrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ConfigPropertiesContext
public ConfigPropertiesContext(String authServerInternalUrl, String oidcClientId, String oidcClientSecret, String authServerInternalBaseUrl) Creates an instance of aConfigPropertiesContextrecord class.- Parameters:
authServerInternalUrl- the value for theauthServerInternalUrlrecord componentoidcClientId- the value for theoidcClientIdrecord componentoidcClientSecret- the value for theoidcClientSecretrecord componentauthServerInternalBaseUrl- the value for theauthServerInternalBaseUrlrecord component
-
-
Method Details
-
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). -
authServerInternalUrl
Returns the value of theauthServerInternalUrlrecord component.- Returns:
- the value of the
authServerInternalUrlrecord component
-
oidcClientId
Returns the value of theoidcClientIdrecord component.- Returns:
- the value of the
oidcClientIdrecord component
-
oidcClientSecret
Returns the value of theoidcClientSecretrecord component.- Returns:
- the value of the
oidcClientSecretrecord component
-
authServerInternalBaseUrl
Returns the value of theauthServerInternalBaseUrlrecord component.- Returns:
- the value of the
authServerInternalBaseUrlrecord component
-