Make a constant public
This commit is contained in:
parent
aad5a30a3d
commit
63c310c168
|
@ -134,13 +134,15 @@ import static org.apache.commons.lang3.StringUtils.trim;
|
||||||
@Scope("prototype")
|
@Scope("prototype")
|
||||||
public class SearchBuilder implements ISearchBuilder {
|
public class SearchBuilder implements ISearchBuilder {
|
||||||
|
|
||||||
private static final List<ResourcePersistentId> EMPTY_LONG_LIST = Collections.unmodifiableList(new ArrayList<>());
|
|
||||||
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(SearchBuilder.class);
|
|
||||||
/**
|
/**
|
||||||
* See loadResourcesByPid
|
* See loadResourcesByPid
|
||||||
* for an explanation of why we use the constant 800
|
* for an explanation of why we use the constant 800
|
||||||
*/
|
*/
|
||||||
private static final int MAXIMUM_PAGE_SIZE = 800;
|
// NB: keep public
|
||||||
|
public static final int MAXIMUM_PAGE_SIZE = 800;
|
||||||
|
|
||||||
|
private static final List<ResourcePersistentId> EMPTY_LONG_LIST = Collections.unmodifiableList(new ArrayList<>());
|
||||||
|
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(SearchBuilder.class);
|
||||||
private static ResourcePersistentId NO_MORE = new ResourcePersistentId(-1L);
|
private static ResourcePersistentId NO_MORE = new ResourcePersistentId(-1L);
|
||||||
private final boolean myDontUseHashesForSearch;
|
private final boolean myDontUseHashesForSearch;
|
||||||
private final DaoConfig myDaoConfig;
|
private final DaoConfig myDaoConfig;
|
||||||
|
|
Loading…
Reference in New Issue