1 package org.hibernate.engine; 3 4 import org.hibernate.MappingException; 5 import org.hibernate.type.Type; 6 7 17 public interface Mapping { 18 public Type getIdentifierType(String className) throws MappingException; 19 public String getIdentifierPropertyName(String className) throws MappingException; 20 public Type getReferencedPropertyType(String className, String propertyName) throws MappingException; 21 } 22 23 24 25 26 27 28 29 | Popular Tags |