maia/.svn/pristine/25/25e65b8f9af1c46aa13f4c82b2f...

14 lines
276 B
Plaintext
Executable File

package com.fp.dto.hb;
public interface HibernateBean {
public Object createInstance() throws Exception;
/**
* Clona la instancia del Bean
*
* @return Instancia nueva
* @throws Exception
*/
Object cloneMe() throws Exception;
}