Skip to content

Commit 4d36922

Browse files
csvirimetacosm
authored andcommitted
putting back depracted method
1 parent f9ed880 commit 4d36922

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/DefaultControllerConfiguration.java

+23
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,29 @@ public DefaultControllerConfiguration(
5454
setConfigurationService(service);
5555
}
5656

57+
@Deprecated
58+
public DefaultControllerConfiguration(
59+
String associatedControllerClassName,
60+
String name,
61+
String crdName,
62+
String finalizer,
63+
boolean generationAware,
64+
Set<String> namespaces,
65+
RetryConfiguration retryConfiguration) {
66+
this(
67+
associatedControllerClassName,
68+
name,
69+
crdName,
70+
finalizer,
71+
generationAware,
72+
namespaces,
73+
retryConfiguration,
74+
null,
75+
null,
76+
null,
77+
null);
78+
}
79+
5780
@Override
5881
public String getName() {
5982
return name;

0 commit comments

Comments
 (0)