Skip to content

Commit 8f9befb

Browse files
Change visibility of FactoryBeans.
Closes: #1165
1 parent 8d25133 commit 8f9befb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-data-cassandra/src/main/java/org/springframework/data/cassandra/config/CqlSessionParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ String parseScript(Element element) {
163163
* Wrapper to enable setting contact points as string to avoid over loaded setContactPoints reflection confusion that
164164
* depends on the reflection method load order.
165165
*/
166-
static class ExtendedCqlSessionFactoryBean extends CqlSessionFactoryBean {
166+
public static class ExtendedCqlSessionFactoryBean extends CqlSessionFactoryBean {
167167

168168
/**
169169
* Bridge method for {@link #setContactPoints(String)}.

spring-data-cassandra/src/main/java/org/springframework/data/cassandra/config/PersistentEntitiesFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Simple helper to be able to wire the {@link MappingContext} from a {@link CassandraConverter} bean available in the
2525
* application context.
2626
*/
27-
class PersistentEntitiesFactoryBean implements FactoryBean<PersistentEntities> {
27+
public class PersistentEntitiesFactoryBean implements FactoryBean<PersistentEntities> {
2828

2929
private final CassandraConverter converter;
3030

spring-data-cassandra/src/main/java/org/springframework/data/cassandra/config/SortedResourcesFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @author Mark Paluch
3636
* @since 3.0
3737
*/
38-
class SortedResourcesFactoryBean extends AbstractFactoryBean<Resource[]> implements ResourceLoaderAware {
38+
public class SortedResourcesFactoryBean extends AbstractFactoryBean<Resource[]> implements ResourceLoaderAware {
3939

4040
private final List<String> locations;
4141

0 commit comments

Comments
 (0)