From 7203f5405a5a9e5d5923a2a80fdf7e31bbf2f984 Mon Sep 17 00:00:00 2001
From: Fabio Pistolesi <fabio.pistolesi@forgerock.com>
Date: Fri, 13 Feb 2015 16:30:53 +0000
Subject: [PATCH] Same visibility changes as for pluggable backend where it does not break other things
---
opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/RootContainer.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/RootContainer.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/RootContainer.java
index 4991477..52455b0 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/RootContainer.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/RootContainer.java
@@ -96,7 +96,7 @@
* @param backend A reference to the JE back end that is creating this
* root container.
*/
- public RootContainer(Backend<?> backend, LocalDBBackendCfg config)
+ RootContainer(Backend<?> backend, LocalDBBackendCfg config)
{
this.backend = backend;
this.config = config;
@@ -227,7 +227,7 @@
* @throws ConfigException If an configuration error occurs while opening
* the entry container.
*/
- public EntryContainer openEntryContainer(DN baseDN, String name)
+ EntryContainer openEntryContainer(DN baseDN, String name)
throws DatabaseException, ConfigException
{
String databasePrefix;
@@ -254,7 +254,7 @@
* @throws InitializationException If an error occurs while opening the
* entry container.
*/
- public void registerEntryContainer(DN baseDN, EntryContainer entryContainer)
+ void registerEntryContainer(DN baseDN, EntryContainer entryContainer)
throws InitializationException
{
EntryContainer ec1 = this.entryContainers.get(baseDN);
@@ -307,7 +307,7 @@
* @return The entry container that was unregistered or NULL if a entry
* container for the base DN was not registered.
*/
- public EntryContainer unregisterEntryContainer(DN baseDN)
+ EntryContainer unregisterEntryContainer(DN baseDN)
{
return entryContainers.remove(baseDN);
}
--
Gitblit v1.10.0