Class ORMetadata

    • Constructor Detail

      • ORMetadata

        protected ORMetadata()
        INTERNAL: Used for defaulting case.
      • ORMetadata

        public ORMetadata​(String xmlElement)
        INTERNAL: Used for OX loading.
      • ORMetadata

        protected ORMetadata​(MetadataAccessibleObject accessibleObject,
                             MetadataProject project,
                             Object location)
        INTERNAL: Used for defaulting. At minimum, all metadata should have this information available to them at process time (to ensure no errors during processing). Depending on the metadata processing needs you can get away with not having them set, however, any dependencies on the loader, metadata logger or the metadata project etc. will require these.
      • ORMetadata

        public ORMetadata​(ORMetadata orm)
        INTERNAL: Used for annotation loading and switching from one metadata object to a more specific one.
    • Method Detail

      • equals

        public abstract boolean equals​(Object objectToCompare)
        INTERNAL: For merging and overriding to work properly, all ORMetadata must be able to compare themselves for metadata equality. equals plays a big role in the shouldOverride() method from this class.
        Overrides:
        equals in class Object
      • getAccessibleObject

        protected MetadataAccessibleObject getAccessibleObject()
        INTERNAL: Returns the accessible object for this accessor.
      • getAccessibleObjectName

        public String getAccessibleObjectName()
        INTERNAL: Returns the name of the accessible object. If it is a field, it will return the field name. For a method it will return the method name.
      • getBoxedType

        protected String getBoxedType​(String type)
        INTERNAL: Quick lookup of a primitive boxed type.
      • getLoader

        public ClassLoader getLoader()
        INTERNAL: This method will return the current loader from the metadata factory used to created this ORMetadata.
      • getDatabaseTypeEnum

        protected DatabaseType getDatabaseTypeEnum​(String type)
        Return the DataType enum constant for the String type name. If not a type defined by the enums, then return a record type.
      • getFullyQualifiedClassName

        protected String getFullyQualifiedClassName​(String className)
        INTERNAL: Return the fully qualified className using the package (if any) setting from XML.
      • getJavaClass

        protected Class<?> getJavaClass​(MetadataClass metadataClass)
        INTERNAL: Return the Java class for the metadata class using the metadata loader. Callers to this method should only do so when the application loader (from deploy) is available. This method should not be called with the temp loader, see getJavaClassName instead which will provide a valid string class name that can be initialized at runtime instead.
      • getJavaClassName

        public String getJavaClassName​(MetadataClass metadataClass)
        INTERNAL: Return the Java class name for the metadata class. This is the class name name metadata processing should set on descriptors and mappings to be initialized during the convertClassNamesToClasses call at runtime.
      • getLocation

        public Object getLocation()
        INTERNAL:
      • getLogger

        public MetadataLogger getLogger()
        INTERNAL: Return the metadata logger.
      • getMetadataClass

        public MetadataClass getMetadataClass​(Class<?> javaClass)
        INTERNAL: Return the MetadataClass for the class.
      • getMetadataClass

        public MetadataClass getMetadataClass​(String className)
        INTERNAL: Return the MetadataClass for the class name.
      • getMetadataClass

        public MetadataClass getMetadataClass​(String className,
                                              boolean isLazy)
        INTERNAL: Return the MetadataClass for the class name.
      • getMetadataFactory

        public MetadataFactory getMetadataFactory()
        INTERNAL:
      • getName

        protected String getName​(String name,
                                 String defaultName,
                                 String context)
        INTERNAL: Helper method to return a field name from a candidate field name and a default field name. Requires the context from where this method is called to output the correct logging message when defaulting the field name. In some cases, both the name and defaultName could be "" or null, therefore, don't log a message and return name.
      • getPrimitiveClassForName

        protected Class<?> getPrimitiveClassForName​(String className)
        INTERNAL:
      • getProject

        public MetadataProject getProject()
        INTERNAL: Return the MetadataProject.
      • getText

        protected String getText()
        INTERNAL: Any ORMetadata that supported mixed types, that is, text or other metadata should override this method.
      • getXMLElement

        protected String getXMLElement()
        INTERNAL: This is a value is that is used when logging messages for overriding.
        See Also:
        shouldOverride(ORMetadata)
      • hasIdentifier

        protected boolean hasIdentifier()
        INTERNAL:
      • hasText

        protected boolean hasText()
        INTERNAL: Any ORMetadata that supported mixed types, that is, text or other metadata should override this method.
      • initXMLClassName

        protected MetadataClass initXMLClassName​(String className)
        INTERNAL: This method should only be called on those objects that were loaded from XML and that need to initialize a class name. The assumption here is that an entity mappings object will be available.
      • initXMLObject

        public void initXMLObject​(MetadataAccessibleObject accessibleObject,
                                  XMLEntityMappings entityMappings)
        INTERNAL: Any subclass that cares to do any more initialization (e.g. initialize a class) should override this method.
      • initXMLObjects

        protected <T extends ORMetadata> void initXMLObjects​(List<T> metadatas,
                                                             MetadataAccessibleObject accessibleObject)
        INTERNAL: It is assumed this is a list of ORMetadata
      • initXMLTextObject

        protected <T extends ORMetadataString initXMLTextObject​(List<T> metadatas)
        INTERNAL: This is to support legacy orm instance docs. In some cases, previous simple text elements may have been changed to a list of ORMetadata through spec churn. (e.g. <convert>). Method helps support backwards compatibility. If the text object is initialized the metadata list is set to null to ease further processing (logging, warnings, overrides etc.)
      • loadedFromAnnotation

        public boolean loadedFromAnnotation()
        INTERNAL: Note: That annotations can default so the annotation may be null.
      • loadedFromEclipseLinkXML

        public boolean loadedFromEclipseLinkXML()
        INTERNAL:
      • loadedFromXML

        public boolean loadedFromXML()
        INTERNAL:
      • merge

        protected void merge​(ORMetadata metadata)
        INTERNAL: Subclasses that care to handle deeper merges should extend this method.
      • mergeORObjectLists

        protected <T extends ORMetadataList<T> mergeORObjectLists​(List<T> list1,
                                                                    List<T> list2)
        INTERNAL: Convenience method to merge two lists of metadata objects. This does not check for duplicates or any overrides at this time. Just appends all items from list2 to list1.
      • mergeORObjects

        protected ORMetadata mergeORObjects​(ORMetadata obj1,
                                            ORMetadata obj2)
        INTERNAL: Convenience method to merge two objects that were loaded from XML. The merge is complete. If value2 is specified it will override value1, otherwise, value1 does not change.
      • mergeSimpleObjects

        protected Object mergeSimpleObjects​(Object obj1,
                                            Object obj2,
                                            ORMetadata otherMetadata,
                                            String xmlElement)
        INTERNAL: Convenience method to merge two objects that were loaded from XML. The merge is complete. If value2 is specified it will override value1, otherwise, value1 does not.
      • reloadEntity

        protected EntityAccessor reloadEntity​(EntityAccessor entity,
                                              MetadataDescriptor descriptor)
        INTERNAL: This method should be called to reload an entity (that was either loaded from XML or an annotation) as a way of cloning it. This is needed when we process TABLE_PER_CLASS inheritance. We must process the parent classes for every subclasses descriptor. The processing is similar to that of processing a mapped superclass, in that we process the parents with the subclasses context (that is, the descriptor we are given).
      • reloadMappedSuperclass

        protected MappedSuperclassAccessor reloadMappedSuperclass​(MappedSuperclassAccessor mappedSuperclass,
                                                                  MetadataDescriptor descriptor)
        INTERNAL: This method should be called to reload a mapped superclass (that was either loaded from XML or an annotation) as a way of cloning it. This is needed when processing TABLE_PER_CLASS inheritance and when building individual entity accessor's mapped superclass list.
      • setAccessibleObject

        public void setAccessibleObject​(MetadataAccessibleObject accessibleObject)
        INTERNAL: Set the accessible object for this accessor.
      • setEntityMappings

        public void setEntityMappings​(XMLEntityMappings entityMappings)
        INTERNAL: Set the entity mappings (mapping file) for this OR object.
      • setFieldName

        protected void setFieldName​(DatabaseField field,
                                    String name)
        INTERNAL: All field names should be set through this method to ensure delimited identifiers and upper casing defaults are set.
      • setFieldName

        protected void setFieldName​(DatabaseField field,
                                    String defaultName,
                                    String context)
        INTERNAL: Go through this method if you can default a name. Provide the defaulting context to log to the correct context message to the user.
      • setProject

        public void setProject​(MetadataProject project)
        INTERNAL: Set the metadata project.
      • shouldOverride

        public boolean shouldOverride​(ORMetadata existing)
        INTERNAL: Method to determine if this ORMetadata should override another. Assumes all ORMetadata that call this method have correctly implemented their equals method.
      • valuesMatch

        protected boolean valuesMatch​(List<Object> list1,
                                      List<Object> list2)
        INTERNAL: Two lists are the same if they are the same size and their ordered elements are the same.
      • valuesMatch

        protected boolean valuesMatch​(Object value1,
                                      Object value2)
        INTERNAL: