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

dev.dsf.fhir.webservice.specification.StructureDefinitionService Maven / Gradle / Ivy

package dev.dsf.fhir.webservice.specification;

import org.hl7.fhir.r4.model.Parameters;
import org.hl7.fhir.r4.model.StructureDefinition;

import jakarta.ws.rs.core.HttpHeaders;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.core.UriInfo;

public interface StructureDefinitionService extends BasicResourceService
{
	Response postSnapshotNew(String snapshotPath, Parameters parameters, UriInfo uri, HttpHeaders headers);

	Response getSnapshotNew(String snapshotPath, UriInfo uri, HttpHeaders headers);

	Response postSnapshotExisting(String snapshotPath, String id, UriInfo uri, HttpHeaders headers);

	Response getSnapshotExisting(String snapshotPath, String id, UriInfo uri, HttpHeaders headers);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy