Example usage for org.hibernate.boot.model TypeContributions contributeType

List of usage examples for org.hibernate.boot.model TypeContributions contributeType

Introduction

In this page you can find the example usage for org.hibernate.boot.model TypeContributions contributeType.

Prototype

void contributeType(BasicType type);

Source Link

Usage

From source file:org.niord.core.db.MySQLSpatialDialect.java

License:Apache License

@Override
public void contributeTypes(TypeContributions typeContributions, ServiceRegistry serviceRegistry) {
    super.contributeTypes(typeContributions, serviceRegistry);
    typeContributions.contributeType(new GeolatteGeometryType(MySQLGeometryTypeDescriptor.INSTANCE));
    typeContributions.contributeType(new JTSGeometryType(MySQLGeometryTypeDescriptor.INSTANCE));
}