Skip to main content
summaryrefslogblamecommitdiffstats
blob: e249c7a76c43c3e245535fa0e9a64e298b80d2e2 (plain) (tree)
1
2
3
4
5
6
7
8
9
  
                                                                       






                                                                        
   

                              









                                                          
                                                      




                   



                                                                     
                                                                                  




                                                     
                                                         



                              
                                                                                



                                                    
/*
 * Copyright (c) 2004 - 2011 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.net4j.jms;

import org.eclipse.net4j.util.container.IManagedContainer;

import javax.naming.Context;
import javax.naming.NamingException;

/**
 * @author Eike Stepper
 */
public final class JMSUtil
{
  private static IManagedContainer transportContainer;

  private JMSUtil()
  {
  }

  public static Context createInitialContext() throws NamingException
  {
    if (transportContainer == null)
    {
      throw new IllegalStateException("transportContainer == null"); //$NON-NLS-1$
    }

    return new JMSInitialContext(transportContainer);
  }

  public static IManagedContainer getTransportContainer()
  {
    return transportContainer;
  }

  public static void setTransportContainer(IManagedContainer transportContainer)
  {
    JMSUtil.transportContainer = transportContainer;
  }
}

Back to the top