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

org.openmrs.module.ipd.api.service.ReferenceService Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.openmrs.module.ipd.api.service;

import org.openmrs.api.APIException;
import org.openmrs.api.OpenmrsService;
import org.openmrs.api.db.DAOException;
import org.openmrs.module.ipd.api.model.Reference;
import org.openmrs.module.ipd.api.model.Slot;
import org.springframework.stereotype.Service;

import java.util.Optional;


public interface ReferenceService extends OpenmrsService {

	//	@Authorized({ PrivilegeConstants.EDIT_IPD_SCHEDULES })
	Optional getReferenceByTypeAndTargetUUID(String type, String targetUuid) throws APIException;

	//	@Authorized({ PrivilegeConstants.EDIT_IPD_SCHEDULES })
	Reference saveReference(Reference reference) throws APIException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy