All Downloads are FREE. Search and download functionalities are using the official Maven repository.

thomsonreuters.dss.api.extractions.entity.set.ReportExtractions Maven / Gradle / Ivy

package thomsonreuters.dss.api.extractions.entity.set;

import com.github.davidmoten.odata.client.ContextPath;

import thomsonreuters.dss.api.extractions.entity.set.ExtractedFiles;
import thomsonreuters.dss.api.extractions.reportextractions.collection.request.ReportExtractionCollectionRequest;

public final class ReportExtractions extends ReportExtractionCollectionRequest {

    public ReportExtractions(ContextPath contextPath) {
        super(contextPath);
    }

    public ExtractedFiles files() {
        return new ExtractedFiles(contextPath.addSegment("Files"));
    }

    public ExtractedFiles fullFile() {
        return new ExtractedFiles(contextPath.addSegment("FullFile"));
    }

    public ExtractedFiles notesFile() {
        return new ExtractedFiles(contextPath.addSegment("NotesFile"));
    }

    public ExtractedFiles ricMaintenanceFile() {
        return new ExtractedFiles(contextPath.addSegment("RicMaintenanceFile"));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy