Toggle navigation
Home
java.lang.String to java.util.function.Supplier<java.lang.String>
No. of Instances - 15
No. of Commits - 5
No. of Projects - {'javaparser', 'AxonFramework', 'keycloak', 'junit5', 'dropwizard'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Add or Remove Method invocation
value
to
value.get()
message
to
messageSupplier.get()
message
to
messageSupplier.get()
message
to
messageSupplier.get()
defaultName
to
defaultNameGenerator.get()
this.http.<PermissionResponse>post("/authz/protection/permission").authorizationBearer(this.pat).json(JsonSerialization.writeValueAsBytes(request)).response().json(PermissionResponse.class)
to
this.http.<PermissionResponse>post("/authz/protection/permission").authorizationBearer(this.pat.get()).json(JsonSerialization.writeValueAsBytes(request)).response().json(PermissionResponse.class)
this.http.<RegistrationResponse>post("/authz/protection/resource_set").authorizationBearer(this.pat).json(JsonSerialization.writeValueAsBytes(resource)).response().json(RegistrationResponse.class)
to
this.http.<RegistrationResponse>post("/authz/protection/resource_set").authorizationBearer(this.pat.get()).json(JsonSerialization.writeValueAsBytes(resource)).response().json(RegistrationResponse.class)
this.http.<RegistrationResponse>put("/authz/protection/resource_set/" + resource.getId()).authorizationBearer(this.pat).json(JsonSerialization.writeValueAsBytes(resource))
to
this.http.<RegistrationResponse>put("/authz/protection/resource_set/" + resource.getId()).authorizationBearer(this.pat.get()).json(JsonSerialization.writeValueAsBytes(resource))
this.http.<RegistrationResponse>get("/authz/protection/resource_set/" + id).authorizationBearer(this.pat).response().json(RegistrationResponse.class)
to
this.http.<RegistrationResponse>get("/authz/protection/resource_set/" + id).authorizationBearer(this.pat.get()).response().json(RegistrationResponse.class)
this.http.<Set>get("/authz/protection/resource_set").authorizationBearer(this.pat).param("filter",filter).response().json(Set.class)
to
this.http.<Set>get("/authz/protection/resource_set").authorizationBearer(this.pat.get()).param("filter",filter).response().json(Set.class)
this.http.<Set>get("/authz/protection/resource_set").authorizationBearer(this.pat).response().json(Set.class)
to
this.http.<Set>get("/authz/protection/resource_set").authorizationBearer(this.pat.get()).response().json(Set.class)
this.http.delete("/authz/protection/resource_set/" + id).authorizationBearer(this.pat)
to
this.http.delete("/authz/protection/resource_set/" + id).authorizationBearer(this.pat.get())
Rename Variable
message
to
messageSupplier
message
to
messageSupplier
message
to
messageSupplier
message
to
messageSupplier
defaultName
to
defaultNameGenerator