package com.ximple.eofms.jobs; import org.geotools.feature.SchemaException; import com.ximple.io.dgn7.Element; public interface ElementDispatchableStrategy { public boolean isDispatchable(Element element); public void execute(Element element) throws SchemaException; }