1 21 package oracle.toplink.essentials.exceptions.i18n; 23 24 import java.util.ListResourceBundle ; 25 26 33 public class DeploymentExceptionResource extends ListResourceBundle { 34 static final Object [][] contents = { 35 { "14001", "No TopLink project was specified for this bean." }, 36 { "14003", "No TopLink project was found to be associated with the given identifier: [{0}]" }, 37 { "14004", "An error occurred while instantiating the DeploymentCustomization class [{0}]. {1}[{2}]" }, 38 { "14005", "An error occurred while running the DeploymentCustomization class [{0}]. {1}[{2}]" }, 39 { "14007", "Invalid transaction isolation string: [{0}]" }, 40 { "14008", "Invalid cache usage: [{0}]" }, 41 { "14011", "Unable to create the InitialContext to connect to the specified dataSource [{0}]: [{1}]" }, 42 { "14016", "An error occurred while setting up the project: [{0}]" }, 43 { "14019", "Deployment descriptor {0} was not found" }, 44 { "14020", "Error reading deployment descriptor {0}: [{1}]" }, 45 { "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." }, 46 { "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." }, 47 { "14024", "Could not read TopLink project during CMP concrete classes code generation" }, 48 { "14026", "For EJB2.0 descriptors, mapping for the attribute [{0}], in the class [{1}], must use Transparent indirection." }, 49 { "14027", "For EJB2.0 descriptors, one-to-one mapping for the attribute [{0}], in the class [{1}], must use ValueHolder indirection." }, 50 { "14028", "The descriptor for [{0}] does not contain a corresponding mapping for the container managed attribute [{1}]." }, 51 { "14029", "The finder {0} is declared in the ejb-jar.xml but not defined on the [{1}] home interface. " }, 52 { "14030", "The ejbSelect method {0} is declared in the ejb-jar.xml but not defined on the [{1}] abstract bean class. " }, 53 { "14031", "The cmp field [{0} is declared in the ejb-jar.xml but not defined on the bean [{1}]" }, 54 { "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." }, 55 { "14033", "The descriptor for [{0}] is missing." } 56 }; 57 58 61 protected Object [][] getContents() { 62 return contents; 63 } 64 } 65 | Popular Tags |