I have following hibernate based XML properties.What i need is to convert following to JPA Annotations
<id column="PARTNER_PROPERTY_ID" name="id" unsaved-value="0">
<generator class="sequence">
<param name="sequence">CRICKET_TEST_SEQ</param>
<param name="parameters">INCREMENT BY 1 START WITH 200</param>
</generator>
</id>
can anyone help me to convert this code phrase to JPA annotation