/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.integration.ejb.container.interceptor.security; import java.net.UnknownHostException; import java.util.Hashtable; import java.util.Properties; import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; /** * Utility class for looking up EJBs. It contains also some common constants for this test. * * @author Josef Cacek */ class EJBUtil { protected static final String APPLICATION_NAME = "ejb-security-interceptors-test"; protected static final String CONNECTION_USERNAME = "guest"; protected static final String CONNECTION_PASSWORD = "guest"; // Public methods -------------------------------------------------------- /** * Lookup for remote EJBs using specified ejb client properties. * * @param beanImplClass * @param remoteInterface * @return * @throws NamingException */ @SuppressWarnings("unchecked") public static <T> T lookupEJB(Properties ejbClientProperties, Class<? extends T> beanImplClass, Class<T> remoteInterface) throws NamingException { final Properties jndiProperties = new Properties(); jndiProperties.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming"); jndiProperties.putAll(ejbClientProperties); final Context context = new InitialContext(jndiProperties); return (T) context.lookup("ejb:/" + APPLICATION_NAME + "/" + beanImplClass.getSimpleName() + "!" + remoteInterface.getName()); } /** * Lookup for remote EJBs. * * @param beanImplClass * @param remoteInterface * @return * @throws NamingException */ public static <T> T lookupEJB(Class<? extends T> beanImplClass, Class<T> remoteInterface) throws NamingException { final Hashtable<String, String> jndiProperties = new Hashtable<String, String>(); jndiProperties.put(Context.URL_PKG_PREFIXES, "org.jboss.ejb.client.naming"); // jndiProperties.put("jboss.naming.client.ejb.context", "true"); final Context context = new InitialContext(jndiProperties); return (T) context.lookup("ejb:/" + APPLICATION_NAME + "/" + beanImplClass.getSimpleName() + "!" + remoteInterface.getName()); } /** * Creates {@link Properties} for the EJB client configuration. * * <pre> * remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false * * remote.connections=default * * remote.connection.default.host=localhost * remote.connection.default.port = 8080 * remote.connection.default.username=guest * remote.connection.default.password=guest * * remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false * </pre> * * @param hostName * @return * @throws UnknownHostException */ public static Properties createEjbClientConfiguration(String hostName, String username) throws UnknownHostException { final Properties pr = new Properties(); pr.put("remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED", "false"); pr.put("remote.connections", "default"); pr.put("remote.connection.default.host", hostName); pr.put("remote.connection.default.port", "8080"); pr.put("remote.connection.default.username", username); return pr; } }