document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. package javax.persistence;
  3.  
  4. public interface EntityManager {
  5.     public <T> T find(Class<T> entityClass, Object primaryKey);
  6.     public <T> T getReference(Class<T> entityClass, Object primaryKey);
  7. }
');