thomsonreuters.dss.api.extractions.reportextractions.collection.request.ExtractedFileCollectionRequest Maven / Gradle / Ivy
package thomsonreuters.dss.api.extractions.reportextractions.collection.request;
import com.github.davidmoten.odata.client.CollectionPageEntityRequest;
import com.github.davidmoten.odata.client.ContextPath;
import thomsonreuters.dss.api.extractions.reportextractions.entity.ExtractedFile;
import thomsonreuters.dss.api.extractions.reportextractions.entity.request.ExtractedFileEntityRequest;
import thomsonreuters.dss.api.extractions.reportextractions.schema.SchemaInfo;
public class ExtractedFileCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public ExtractedFileCollectionRequest(ContextPath contextPath) {
super(contextPath, ExtractedFile.class, cp -> new ExtractedFileEntityRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy