Package org.hibernate.boot.jaxb.hbm.spi
Interface ResultSetMappingBindingDefinition
-
- All Known Implementing Classes:
JaxbHbmResultSetMappingType
public interface ResultSetMappingBindingDefinition
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()The ResultSet mapping namejava.util.ListgetValueMappingSources()Get the JAXB mappings for each defined value return in the ResultSet mapping.
-
-
-
Method Detail
-
getName
java.lang.String getName()
The ResultSet mapping name- Returns:
- The name.
-
getValueMappingSources
java.util.List getValueMappingSources()
Get the JAXB mappings for each defined value return in the ResultSet mapping. Needs to be a "grab bag", as opposed to individual Lists per return type, in order to maintain the defined order. And atm there is (unfortunately) not a common type for all the JAXB return mappings. But the list elements will be one of:- Returns:
- The value return JAXB mappings.
-
-