Skip to content

Commit f124dda

Browse files
committed
fix: re-introduce methods that Quarkus depend on
Reverts: cf2cccb
1 parent 76f1820 commit f124dda

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

operator-framework-quarkus-extension/runtime/src/main/java/io/javaoperatorsdk/quarkus/extension/QuarkusControllerConfiguration.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,21 @@ public static Set<String> asSet(String[] namespaces) {
5656
: Set.of(namespaces);
5757
}
5858

59+
// Needed for Quarkus to find the associated constructor parameter
60+
public String getCrdName() {
61+
return getCRDName();
62+
}
63+
64+
// Needed for Quarkus to find the associated constructor parameter
65+
public String getCrClass() {
66+
return crClass;
67+
}
68+
69+
// Needed for Quarkus to find the associated constructor parameter
70+
public String getDoneableClassName() {
71+
return doneableClassName;
72+
}
73+
5974
@Override
6075
public String getName() {
6176
return name;

0 commit comments

Comments
 (0)