Skip to content

Commit

Permalink
fix: allow bean name access
Browse files Browse the repository at this point in the history
  • Loading branch information
bbortt committed May 14, 2024
1 parent 4f9e57f commit f5b7336
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
@ConditionalOnProperty(prefix = "citrus.simulator.endpoint", value = "enabled", havingValue = "true")
public class SimulatorEndpointAutoConfiguration {

private static final String SIMULATOR_ENDPOINT_ADAPTER_BEAN_NAME = "simulatorEndpointAdapter";
public static final String SIMULATOR_ENDPOINT_ADAPTER_BEAN_NAME = "simulatorEndpointAdapter";

private final ApplicationContext applicationContext;
private final SimulatorConfigurationProperties simulatorConfiguration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
@ConditionalOnProperty(prefix = "citrus.simulator.rest", value = "enabled", havingValue = "true", matchIfMissing = true)
public class SimulatorRestAutoConfiguration {

private static final String REST_ENDPOINT_ADAPTER_BEAN_NAME = "simulatorRestEndpointAdapter";
public static final String REST_ENDPOINT_ADAPTER_BEAN_NAME = "simulatorRestEndpointAdapter";

private final ApplicationContext applicationContext;
private final SimulatorRestConfigurationProperties simulatorRestConfiguration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
@ConditionalOnProperty(prefix = "citrus.simulator.jms", value = "enabled", havingValue = "true")
public class SimulatorJmsAutoConfiguration {

private static final String JMS_ENDPOINT_ADAPTER_BEAN_NAME = "simulatorJmsEndpointAdapter";
public static final String JMS_ENDPOINT_ADAPTER_BEAN_NAME = "simulatorJmsEndpointAdapter";

private final SimulatorConfigurationProperties simulatorConfiguration;
private final SimulatorJmsConfigurationProperties simulatorJmsConfiguration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
@ConditionalOnProperty(prefix = "citrus.simulator.ws", value = "enabled", havingValue = "true")
public class SimulatorWebServiceAutoConfiguration {

private static final String WS_ENDPOINT_ADAPTER_BEAN_NAME = "simulatorWsEndpointAdapter";
public static final String WS_ENDPOINT_ADAPTER_BEAN_NAME = "simulatorWsEndpointAdapter";

@Autowired(required = false)
private SimulatorWebServiceConfigurer configurer;
Expand Down

0 comments on commit f5b7336

Please sign in to comment.