package com.ximple.eofms.jobs.context.shapefile; import com.ximple.eofms.jobs.context.AbstractDgnFileJobContext; public abstract class AbstractDgnToShapefileJobContext extends AbstractDgnFileJobContext { public AbstractDgnToShapefileJobContext(String dataPath) { super(dataPath); } public abstract String getDataOutPath(); }