Class JaxbAnyMappingKeyImpl

java.lang.Object
org.hibernate.boot.jaxb.mapping.spi.JaxbAnyMappingKeyImpl
All Implemented Interfaces:
Serializable, JaxbAnyMapping.Key

public class JaxbAnyMappingKeyImpl extends Object implements Serializable, JaxbAnyMapping.Key
Describes the "foreign key" of a discriminated association (any, many-to-any).

Java class for any-key complex type

.

The following schema fragment specifies the expected content contained within this class.


 <complexType name="any-key">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="column" type="{http://www.hibernate.org/xsd/orm/mapping}column" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

  • Constructor Details

    • JaxbAnyMappingKeyImpl

      public JaxbAnyMappingKeyImpl()
  • Method Details

    • getType

      public String getType()
      Gets the value of the type property.
      Returns:
      possible object is String
    • setType

      public void setType(String value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is String
    • getColumns

      public List<JaxbColumnImpl> getColumns()
      Gets the value of the columns property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the columns property.

      For example, to add a new item, do as follows:

       getColumns().add(newItem);
       

      Objects of the following type(s) are allowed in the list JaxbColumnImpl

      Specified by:
      getColumns in interface JaxbAnyMapping.Key
      Returns:
      The value of the columns property.