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