org.hibernate.boot.spi.MetadataContributor Java Examples
The following examples show how to use
org.hibernate.boot.spi.MetadataContributor.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: LocalMetadataContributor.java From mPaaS with Apache License 2.0 | 5 votes |
@Override public void contribute(InFlightMetadataCollector metadataCollector, IndexView jandexIndex) { for (MetadataContributor contributor : contributors) { contributor.contribute(metadataCollector, jandexIndex); } }
Example #2
Source File: HibernateMappingContextConfiguration.java From gorm-hibernate5 with Apache License 2.0 | 4 votes |
public void setMetadataContributor(MetadataContributor metadataContributor) { this.metadataContributor = metadataContributor; }
Example #3
Source File: HibernateConnectionSourceFactory.java From gorm-hibernate5 with Apache License 2.0 | 4 votes |
@Autowired(required = false) public void setMetadataContributor(MetadataContributor metadataContributor) { this.metadataContributor = metadataContributor; }