/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.type; /** * Marker interface for basic types. * * @author Steve Ebersole */ public interface BasicType extends Type { /** * Get the names under which this type should be registered in the type registry. * * @return The keys under which to register this type. */ String[] getRegistrationKeys(); }