Weird Calibers.... .41
/**
* Nothing like back to home.
* Believe or not, i saw some "vultures around". like "ghosts".
* So far this interfaces compiles, but the call on spring framework is throwing
* an error on compiler.
* Nice class here.
**/
package org.nanotek.util;
import org.nanotek.util.Base;
public interface BaseBeanBuilder<R,K>{
public K buildBean(R r, K k);
}
package org.nanotek.util;
public interface PersistenceBaseBeanBuilder<R,K> {
public K createBeanInstance( R ref , K clazz);
public void deleteBean(R r, K k);
}