thomsonreuters.dss.api.extractions.reportextractions.collection.request.OtherFileCollectionRequest Maven / Gradle / Ivy
The newest version!
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.OtherFile;
import thomsonreuters.dss.api.extractions.reportextractions.entity.request.OtherFileEntityRequest;
import thomsonreuters.dss.api.extractions.reportextractions.schema.SchemaInfo;
public class OtherFileCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public OtherFileCollectionRequest(ContextPath contextPath) {
super(contextPath, OtherFile.class, cp -> new OtherFileEntityRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy