-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix cache compatibility with rest-client
- Loading branch information
Showing
39 changed files
with
781 additions
and
607 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 0 additions & 35 deletions
35
...ions/cache/deployment/src/main/java/io/quarkus/cache/deployment/CacheMethodValidator.java
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
...sions/cache/deployment/src/main/java/io/quarkus/cache/deployment/CacheNamesBuildItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package io.quarkus.cache.deployment; | ||
|
||
import java.util.Set; | ||
|
||
import io.quarkus.builder.item.SimpleBuildItem; | ||
|
||
/** | ||
* This build item is used to pass the full list of cache names from the validation step to the recording step. | ||
*/ | ||
public final class CacheNamesBuildItem extends SimpleBuildItem { | ||
|
||
private final Set<String> names; | ||
|
||
public CacheNamesBuildItem(Set<String> names) { | ||
this.names = names; | ||
} | ||
|
||
public Set<String> getNames() { | ||
return names; | ||
} | ||
} |
Oops, something went wrong.