1 package org.hibernate.mapping;2 3 /**4 * Common interface for things that can handle meta attributes.5 * 6 * @since 3.0.17 */8 public interface MetaAttributable {9 10 public java.util.Map getMetaAttributes();11 12 public void setMetaAttributes(java.util.Map metas);13 14 public MetaAttribute getMetaAttribute(String name);15 16 }17