All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wicketstuff.javaee.naming.global.ModuleJndiNamingStrategy Maven / Gradle / Ivy

The newest version!
/*
 * 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.wicketstuff.javaee.naming.global;

import org.wicketstuff.javaee.naming.IJndiNamingStrategy;

/**
 * Simple Java EE 6 Global JNDI naming support for java:module prefixed JNDI names based on
 * the EJB 3.1 specification Section 4.4.1.2, page 85 
* The java:module prefix allows a component executing within a Java EE application to access a * module-specific namespace. This strategy can lookup JNDI names only from the current webmodule.
* With this you can use JNDI names in the following format:
* java:module/<bean-name>[!<fully-qualified-interface-name>]
*

* The moduleName is the name of the module in which the session bean is packaged. In a * stand-alone ejb-jar file or .war file, the moduleName defaults to the base name of the * module with any filename extension removed. In an ear file, the moduleName defaults to the * pathname of the module with any filename extension removed, but with any directory names * included. The default moduleName can be overriden using the module-name element of * ejb-jar.xml (for ejb-jar files) or web.xml (for .war files). *

* * @see EJB 3.1 * specification * * @author Peter Major */ public class ModuleJndiNamingStrategy implements IJndiNamingStrategy { private static final long serialVersionUID = 1L; /** * {@inheritDoc} */ @Override public String calculateName(String ejbName, Class ejbType) { return "java:module/" + (ejbName == null ? ejbType.getName() : ejbName); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy