'How do get meta attribute tag from EntityPersister?

I have EntityPersister object. I want to know if the corresponding hibernate class,defined in hibernate-mapping.xml has meta attribute tag with given value?

 For example:
<class name="mypackage.user" table="user">
    <meta attribute="Test"/>
......
....
</class>

Now if I have EntityPersister object representing this, can I know if there is a meta attribute with value as "Test" ?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source