Class JoinColumnMetadata

  • Direct Known Subclasses:
    JoinFieldMetadata

    public class JoinColumnMetadata
    extends RelationalColumnMetadata
    INTERNAL: Object to process JPA join columns EclipseLink database fields. Key notes: - any metadata mapped from XML to this class must be compared in the equals method. - when loading from annotations, the constructor accepts the metadata accessor this metadata was loaded from. Used it to look up any 'companion' annotation needed for processing. - methods should be preserved in alphabetical order.
    Since:
    TopLink EJB 3.0 Reference Implementation
    Author:
    Guy Pelletier
    • Constructor Detail

      • JoinColumnMetadata

        public JoinColumnMetadata()
        INTERNAL: Used for XML loading.
      • JoinColumnMetadata

        protected JoinColumnMetadata​(java.lang.String xmlElement)
        INTERNAL: Used for XML loading.
    • Method Detail

      • getInsertable

        public java.lang.Boolean getInsertable()
        INTERNAL: Used for OX mapping.
      • getNullable

        public java.lang.Boolean getNullable()
        INTERNAL: Used for OX mapping.
      • getTable

        public java.lang.String getTable()
        INTERNAL: USed for OX mapping.
      • getUnique

        public java.lang.Boolean getUnique()
        INTERNAL: Used for OX mapping.
      • getUpdatable

        public java.lang.Boolean getUpdatable()
        INTERNAL: Used for OX mapping.
      • setInsertable

        public void setInsertable​(java.lang.Boolean insertable)
        INTERNAL: Used for OX mapping.
      • setNullable

        public void setNullable​(java.lang.Boolean nullable)
        INTERNAL: Used for OX mapping.
      • setTable

        public void setTable​(java.lang.String table)
        INTERNAL: Used for OX mapping.
      • setUnique

        public void setUnique​(java.lang.Boolean unique)
        INTERNAL: Used for OX mapping.
      • setUpdatable

        public void setUpdatable​(java.lang.Boolean updatable)
        INTERNAL: Used for OX mapping.