Commit 0d290395 authored by Jeff Burke's avatar Jeff Burke
Browse files

ac2: made LdapPersistence abstract and default constructor protected.

parent 11df3702
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ import ca.nrc.cadc.profiler.Profiler;
 * Class that provides access to the LdapConnectionPool through
 * JNDI binding.
 */
public class LdapPersistence
public abstract class LdapPersistence
{

    // pool names
@@ -111,7 +111,7 @@ public class LdapPersistence
    // are created.
    private static Object jndiMonitor = new Object();

    LdapPersistence()
    protected LdapPersistence()
    {
        initPools();
    }