/** * */ package org.gcube.informationsystem.serialization; import org.gcube.informationsystem.base.reference.Element; import org.gcube.informationsystem.discovery.DiscoveredElementAction; /** * @author Luca Frosini (ISTI - CNR) */ public class ElementMappingAction implements DiscoveredElementAction { @Override public void analizeElement(Class e) throws Exception { ElementMapper.registerSubtype(e); } }