//==========================
// Custom adapters go here
// Version&Schema-specific filling into the impl
@Override public FindPojo createImpl() {
FindPojo f = new FindPojo();
// Peel out the Frame from the Key
Value val = DKV.get(key);
if( val == null ) throw new IllegalArgumentException("Key not found");
if( !val.isFrame() ) throw new IllegalArgumentException("Not a Frame");
Frame fr = val.get();