File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
operator-framework/src/main/java/io/javaoperatorsdk/operator/api Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
package io .javaoperatorsdk .operator .api ;
2
2
3
- import io .fabric8 . kubernetes . client . CustomResource ;
3
+ import io .quarkus . runtime . annotations . RegisterForReflection ;
4
4
5
5
import java .lang .annotation .ElementType ;
6
6
import java .lang .annotation .Retention ;
7
7
import java .lang .annotation .RetentionPolicy ;
8
8
import java .lang .annotation .Target ;
9
9
10
10
@ Retention (RetentionPolicy .RUNTIME )
11
+ @ RegisterForReflection
11
12
@ Target ({ElementType .TYPE })
12
13
public @interface Controller {
13
14
String NULL = "" ;
14
15
15
16
String crdName ();
16
17
17
- Class <? extends CustomResource > customResourceClass ();
18
-
19
18
/**
20
19
* Optional finalizer name, if it is not,
21
20
* the crdName will be used as the name of the finalizer too.
You can’t perform that action at this time.
0 commit comments