org.apache.webbeans.util.JNDIUtil Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.webbeans.util;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NameNotFoundException;
import javax.naming.NamingException;
import org.apache.webbeans.config.OWBLogConst;
import org.apache.webbeans.exception.WebBeansException;
import org.apache.webbeans.logger.WebBeansLoggerFacade;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* This is the internal helper class for low level access to JNDI
* @see org.apache.webbeans.spi.JNDIService for transparent access over SPI
*/
public final class JNDIUtil
{
private static final Logger LOGGER = WebBeansLoggerFacade.getLogger(JNDIUtil.class);
private JNDIUtil()
{
}
public static void bind(String name, Object object)
{
Asserts.assertNotNull(name, "name parameter can not be null");
Asserts.assertNotNull(object, "object parameter can not be null");
try
{
InitialContext initialContext = new InitialContext();
Context context = initialContext;
String[] parts = name.split("/");
for(int i=0;i< parts.length -1;i++)
{
try
{
context = (Context)initialContext.lookup(parts[i]);
}
catch(NameNotFoundException e)
{
context = initialContext.createSubcontext(parts[i]);
}
}
context.bind(parts[parts.length -1], object);
}
catch (NamingException e)
{
LOGGER.log(Level.SEVERE, WebBeansLoggerFacade.constructMessage(OWBLogConst.ERROR_0005, name), e);
}
}
public static void unbind(String name)
{
Asserts.assertNotNull(name, "name parameter can not be null");
try
{
new InitialContext().unbind(name);
}
catch (NamingException e)
{
LOGGER.log(Level.SEVERE, e.getMessage(), e);
throw new WebBeansException(WebBeansLoggerFacade.getTokenString(OWBLogConst.EXCEPT_0009) + name, e);
}
}
@SuppressWarnings("unchecked")
public static T lookup(String name, Class extends T> expectedClass) throws WebBeansException
{
Asserts.assertNotNull(name, "name parameter can not be null");
try
{
return (T) new InitialContext().lookup(name);
}
catch (NamingException e)
{
LOGGER.log(Level.SEVERE, e.getMessage(), e);
throw new WebBeansException(WebBeansLoggerFacade.getTokenString(OWBLogConst.EXCEPT_0010) + name, e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy