blob: e6dec8f882ccb32b45b4f84de2888471a5ffb71f [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.framework.naming;
import java.util.Hashtable;
import javax.naming.Context;
import javax.naming.NamingException;
import javax.naming.spi.InitialContextFactory;
/**
* A simple InitialContextFactory implementation.
* Copied from essentials org.eclipse.persistence.essentials.internal.ejb.cmp3.naming package.
*/
public class InitialContextFactoryImpl implements InitialContextFactory {
public InitialContextFactoryImpl() {
}
@Override
public Context getInitialContext(Hashtable environment) throws NamingException {
return new InitialContextImpl(environment);
}
}