made all FunctionTemplate constructors public
This commit is contained in:
@@ -26,12 +26,12 @@ public class GemfireOnServerFunctionTemplate extends AbstractFunctionTemplate {
|
||||
private final Pool pool;
|
||||
|
||||
|
||||
GemfireOnServerFunctionTemplate (RegionService cache) {
|
||||
public GemfireOnServerFunctionTemplate (RegionService cache) {
|
||||
this.cache = cache;
|
||||
this.pool = null;
|
||||
}
|
||||
|
||||
GemfireOnServerFunctionTemplate (Pool pool) {
|
||||
public GemfireOnServerFunctionTemplate (Pool pool) {
|
||||
this.pool = pool;
|
||||
this.cache = null;
|
||||
}
|
||||
|
||||
@@ -26,12 +26,12 @@ public class GemfireOnServersFunctionTemplate extends AbstractFunctionTemplate
|
||||
private final Pool pool;
|
||||
|
||||
|
||||
GemfireOnServersFunctionTemplate (RegionService cache) {
|
||||
public GemfireOnServersFunctionTemplate (RegionService cache) {
|
||||
this.cache = cache;
|
||||
this.pool = null;
|
||||
}
|
||||
|
||||
GemfireOnServersFunctionTemplate (Pool pool) {
|
||||
public GemfireOnServersFunctionTemplate (Pool pool) {
|
||||
this.pool = pool;
|
||||
this.cache = null;
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ import org.springframework.util.ObjectUtils;
|
||||
* {@code DelegatingSmartContextLoader} is an implementation of the {@link SmartContextLoader}
|
||||
* SPI that delegates to a set of <em>candidate</em> SmartContextLoaders (i.e.,
|
||||
* {@link GenericXmlContextLoader} and {@link AnnotationConfigContextLoader}) to
|
||||
* determine which context loader is appropriate for a given test class<EFBFBD>s configuration.
|
||||
* determine which context loader is appropriate for a given test class's configuration.
|
||||
* Each candidate is given a chance to {@link #processContextConfiguration process} the
|
||||
* {@link ContextConfigurationAttributes} for each class in the test class hierarchy that
|
||||
* is annotated with {@link ContextConfiguration @ContextConfiguration}, and the candidate
|
||||
|
||||
Reference in New Issue
Block a user