/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* // Copyright (c) 1998, 2007, Oracle. All rights reserved.
*
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can obtain
* a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
* or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
* Sun designates this particular file as subject to the "Classpath" exception
* as provided by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the License
* Header, with the fields enclosed by brackets [] replaced by your own
* identifying information: "Portions Copyrighted [year]
* [name of copyright owner]"
*
* Contributor(s):
*
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package oracle.toplink.essentials.exceptions.i18n;
import java.util.ListResourceBundle;
/**
* INTERNAL:
* English ResourceBundle for DeploymentException messages.
*
* Creation date: (2/26/01 9:47:38 AM)
* @author: TopLink maintenance team
*/
public class DeploymentExceptionResource extends ListResourceBundle {
static final Object[][] contents = {
{ "14001", "No TopLink project was specified for this bean." },
{ "14003", "No TopLink project was found to be associated with the given identifier: [{0}]" },
{ "14004", "An error occurred while instantiating the DeploymentCustomization class [{0}]. {1}[{2}]" },
{ "14005", "An error occurred while running the DeploymentCustomization class [{0}]. {1}[{2}]" },
{ "14007", "Invalid transaction isolation string: [{0}]" },
{ "14008", "Invalid cache usage: [{0}]" },
{ "14011", "Unable to create the InitialContext to connect to the specified dataSource [{0}]: [{1}]" },
{ "14016", "An error occurred while setting up the project: [{0}]" },
{ "14019", "Deployment descriptor {0} was not found" },
{ "14020", "Error reading deployment descriptor {0}: [{1}]" },
{ "14022", "An error occurred while configuring the descriptor for the bean [{0}]. " + "The project is set to use remote relationships but the bean does not contain " + "a remote home interface. Add the correct remoteHome and remote bean interfaces " + "or change the project to use local relationships by removing the " + "<use-remote-relationships> tag in the toplink-ejb-jar.xml or setting it to false." },
{ "14023", "Could not find the generated subclass for the bean {0}. " + "Make sure you've run ejbc to create the deployable jar file if you have " + "added any new beans to your project." },
{ "14024", "Could not read TopLink project during CMP concrete classes code generation" },
{ "14026", "For EJB2.0 descriptors, mapping for the attribute [{0}], in the class [{1}], must use Transparent indirection." },
{ "14027", "For EJB2.0 descriptors, one-to-one mapping for the attribute [{0}], in the class [{1}], must use ValueHolder indirection." },
{ "14028", "The descriptor for [{0}] does not contain a corresponding mapping for the container managed attribute [{1}]." },
{ "14029", "The finder {0} is declared in the ejb-jar.xml but not defined on the [{1}] home interface. " },
{ "14030", "The ejbSelect method {0} is declared in the ejb-jar.xml but not defined on the [{1}] abstract bean class. " },
{ "14031", "The cmp field [{0} is declared in the ejb-jar.xml but not defined on the bean [{1}]" },
{ "14032", "The cmp field [{0}] is declared in the ejb-jar.xml but the " + "corresponding abstract getter and/or setter is not defined on the [{1}] abstract bean class." },
{ "14033", "The descriptor for [{0}] is missing." }
};
/**
* Return the lookup table.
*/
protected Object[][] getContents() {
return contents;
}
}
|