Skip to content

Commit be5012f

Browse files
keep public
1 parent 877388c commit be5012f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • temporal-spring-boot-autoconfigure/src/main/java/io/temporal/spring/boot/autoconfigure/template

temporal-spring-boot-autoconfigure/src/main/java/io/temporal/spring/boot/autoconfigure/template/WorkersTemplate.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -730,17 +730,17 @@ public static class RegisteredInfo {
730730
private final HashMap<String, RegisteredNexusServiceInfo> registeredNexusServiceInfos =
731731
new HashMap<>();
732732

733-
private RegisteredInfo addActivityInfo(RegisteredActivityInfo activityInfo) {
733+
public RegisteredInfo addActivityInfo(RegisteredActivityInfo activityInfo) {
734734
registeredActivityInfo.put(activityInfo.getBeanName(), activityInfo);
735735
return this;
736736
}
737737

738-
private RegisteredInfo addNexusServiceInfo(RegisteredNexusServiceInfo nexusServiceInfo) {
738+
public RegisteredInfo addNexusServiceInfo(RegisteredNexusServiceInfo nexusServiceInfo) {
739739
registeredNexusServiceInfos.put(nexusServiceInfo.getBeanName(), nexusServiceInfo);
740740
return this;
741741
}
742742

743-
private RegisteredInfo addWorkflowInfo(RegisteredWorkflowInfo workflowInfo) {
743+
public RegisteredInfo addWorkflowInfo(RegisteredWorkflowInfo workflowInfo) {
744744
registeredWorkflowInfo.put(workflowInfo.getImplementationClass(), workflowInfo);
745745
return this;
746746
}

0 commit comments

Comments
 (0)