
org.wicketstuff.javaee.naming.global.AppJndiNamingStrategy 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.wicketstuff.javaee.naming.global;
import org.wicketstuff.javaee.naming.IJndiNamingStrategy;
/**
* Simple Java EE 6 Global JNDI naming support for java:app prefixed JNDI names
* based on the EJB 3.1 specification Section 4.4.1.1, page 84
*
* The java:app prefix allows a component executing within a Java EE application
* to access an application-specific namespace.
*
* With this you can use JNDI names in the following format:
*
* java:app/<moduleName>/<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 AppJndiNamingStrategy implements IJndiNamingStrategy {
private String baseName;
/**
* This naming strategy will use the java:global JNDI name format for
* lookups. Use this constructor, if the app-name is not defined.
*
* @param moduleName The name of the module
*/
public AppJndiNamingStrategy(String moduleName) {
baseName = "java:app/" + moduleName + "/";
}
/**
* {@inheritDoc}
*/
@Override
public String calculateName(String ejbName, Class> ejbType) {
return baseName + (ejbName == null ? ejbType.getName() : ejbName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy