|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@Transactional public interface HL7Service
OpenMRS HL7 API
Method Summary | |
---|---|
java.lang.Integer |
countHL7InArchive(int messageState,
java.lang.String query)
the total count of all HL7InArchive objects in the database |
java.lang.Integer |
countHL7InError(java.lang.String query)
the total count of all HL7InError objects in the database |
java.lang.Integer |
countHL7InQueue(int messageState,
java.lang.String query)
the total count of all HL7InQueue objects in the database |
void |
createHL7InArchive(HL7InArchive hl7InArchive)
Deprecated. use saveHL7InArchive(HL7InArchive) |
void |
createHL7InError(HL7InError hl7InError)
Deprecated. use saveHL7InError(HL7InError) |
void |
createHL7InQueue(HL7InQueue hl7InQueue)
Deprecated. use saveHL7InQueue(HL7InQueue) |
void |
createHL7Source(HL7Source hl7Source)
Deprecated. use saveHL7Source(HL7Source) |
Person |
createPersonFromNK1(ca.uhn.hl7v2.model.v25.segment.NK1 nk1)
creates a Person from information held in an NK1 segment; if valid PatientIdentifiers exist, a Patient will be created and returned |
void |
deleteHL7InArchive(HL7InArchive hl7InArchive)
Deprecated. use purgeHL7InArchive(HL7InArchive) |
void |
deleteHL7InError(HL7InError hl7InError)
Deprecated. use purgeHL7InError(HL7InError) |
void |
deleteHL7InQueue(HL7InQueue hl7InQueue)
Deprecated. use purgeHL7InQueue(HL7InQueue) |
void |
deleteHL7Source(HL7Source hl7Source)
Deprecated. use purgeHL7Source(HL7Source) |
void |
encounterCreated(Encounter encounter)
Deprecated. This method is no longer needed. When an encounter is created in the ROUR01 handler, it is created with all obs. Any AOP hooking should be done on the EncounterService.createEncounter(Encounter) method |
void |
garbageCollect()
Clean up the current memory consumption |
java.util.List<HL7InArchive> |
getAllHL7InArchives()
Get all archive hl7 queue items from the database |
java.util.List<HL7InError> |
getAllHL7InErrors()
Get all HL7InError items from the database |
java.util.List<HL7InQueue> |
getAllHL7InQueues()
Return a list of all hl7 in queues in the database |
java.util.List<HL7Source> |
getAllHL7Sources()
Get all of the hl7 source objects from the database. |
HL7InArchive |
getHL7InArchive(java.lang.Integer hl7InArchiveId)
Get the archive item with the given id, If hl7 archives were moved to the file system, you can't do a look up by hl7ArchiveId, instead call getHL7InArchiveByUuid(String) |
java.util.List<HL7InArchive> |
getHL7InArchiveBatch(int start,
int length,
int messageState,
java.lang.String query)
Return a list of all hl7 in archives based on batch settings and a query string |
java.util.List<HL7InArchive> |
getHL7InArchiveByState(java.lang.Integer state)
If hl7 migration has been run and the state matches that of processed items, the method returns a list of all archives in the file system, for any other state , it returns an empty list, this is because all archives would have a status of 'processed' after migration and all deleted archives moved back into the queue with a status of 'deleted' otherwise it returns archives with a matching state if migration hasn't yet been run. |
HL7InArchive |
getHL7InArchiveByUuid(java.lang.String uuid)
Get the archive item with the given uuid |
java.util.Collection<HL7InArchive> |
getHL7InArchives()
Deprecated. use getAllHL7InArchives() |
HL7InError |
getHL7InError(java.lang.Integer hl7InErrorId)
Get the error item with the given id |
java.util.List<HL7InError> |
getHL7InErrorBatch(int start,
int length,
java.lang.String query)
Return a list of all hl7 in errors based on batch settings and a query string |
java.util.Collection<HL7InError> |
getHL7InErrors()
Deprecated. use getAllHL7InErrors() |
HL7InQueue |
getHL7InQueue(java.lang.Integer hl7InQueueId)
Get the hl7 queue item with the given primary key id |
java.util.List<HL7InQueue> |
getHL7InQueueBatch(int start,
int length,
int messageState,
java.lang.String query)
Return a list of all hl7 in queues based on batch settings and a query string |
java.util.List<HL7InQueue> |
getHL7InQueueByState(java.lang.Integer state)
Get the queue items given a state (deleted, error, pending, processing, processed). |
java.util.Collection<HL7InQueue> |
getHL7InQueues()
Deprecated. use getAllHL7InQueues() |
HL7Source |
getHL7Source(java.lang.Integer hl7SourceId)
Auto generated method comment |
HL7Source |
getHL7Source(java.lang.String name)
Deprecated. use getHL7SourceByName(String) |
HL7Source |
getHL7SourceByName(java.lang.String name)
Get the hl7 source object from the database that has the given name |
java.util.Collection<HL7Source> |
getHL7Sources()
Deprecated. use getAllHL7Sources() |
HL7InQueue |
getNextHL7InQueue()
Get the first queue item in the database |
java.lang.String |
getUuidFromIdentifiers(ca.uhn.hl7v2.model.v25.datatype.CX[] identifiers)
finds a UUID from an array of identifiers |
void |
loadHL7InArchiveData(HL7InArchive archive)
Loads HL7 data from the filesystem for an archived HL7InArchive |
void |
loadHL7InArchiveData(java.util.List<HL7InArchive> archives)
Loads data for a list of HL7 archives from the filesystem |
void |
migrateHl7InArchivesToFileSystem(java.util.Map<java.lang.String,java.lang.Integer> progressStatusMap)
Method is called by the archives migration thread to transfer hl7 in archives from the hl7_in_archives database table to the file system |
ca.uhn.hl7v2.model.Message |
parseHL7String(java.lang.String hl7String)
Parses the given string and returns the resulting Message |
HL7InQueue |
processHL7InQueue(HL7InQueue inQueue)
Process the given HL7InQueue item. |
ca.uhn.hl7v2.model.Message |
processHL7Message(ca.uhn.hl7v2.model.Message hl7Message)
Parses the given Message and saves the resulting content to the database |
void |
purgeHL7InArchive(HL7InArchive hl7InArchive)
Completely delete the hl7 in archive item from the database |
void |
purgeHL7InError(HL7InError hl7InError)
Completely remove this error item from the database |
void |
purgeHL7InQueue(HL7InQueue hl7InQueue)
Completely delete the hl7 in queue item from the database. |
void |
purgeHL7Source(HL7Source hl7Source)
Completely remove the source from the database. |
java.lang.Integer |
resolveLocationId(ca.uhn.hl7v2.model.v25.datatype.PL pl)
|
java.lang.Integer |
resolvePatientId(ca.uhn.hl7v2.model.v25.segment.PID pid)
|
Person |
resolvePersonFromIdentifiers(ca.uhn.hl7v2.model.v25.datatype.CX[] identifiers)
determines a person (or patient) based on identifiers from a CX array, as found in a PID or NK1 segment; the first resolving identifier in the list wins |
java.lang.Integer |
resolvePersonId(ca.uhn.hl7v2.model.v25.datatype.XCN xcn)
|
java.lang.Integer |
resolveUserId(ca.uhn.hl7v2.model.v25.datatype.XCN xcn)
|
HL7Source |
retireHL7Source(HL7Source hl7Source)
Mark the given hl7Source as no longer active |
HL7InArchive |
saveHL7InArchive(HL7InArchive hl7InArchive)
Save the given hl7 in archive to the database |
HL7InError |
saveHL7InError(HL7InError hl7InError)
Save the given error item to the database |
HL7InQueue |
saveHL7InQueue(HL7InQueue hl7InQueue)
Save the given hl7InQueue to the database |
HL7Source |
saveHL7Source(HL7Source hl7Source)
Save the given hl7Source to the database |
void |
setHL7DAO(HL7DAO dao)
Auto generated method comment |
void |
updateHL7InArchive(HL7InArchive hl7InArchive)
Deprecated. use saveHL7InArchive(HL7InArchive) |
void |
updateHL7InError(HL7InError hl7InError)
Deprecated. use saveHL7InError(HL7InError) |
void |
updateHL7Source(HL7Source hl7Source)
Deprecated. use saveHL7Source(HL7Source) |
Methods inherited from interface org.openmrs.api.OpenmrsService |
---|
onShutdown, onStartup |
Method Detail |
---|
void setHL7DAO(HL7DAO dao)
dao
- @Authorized(value="Update HL7 Source") HL7Source saveHL7Source(HL7Source hl7Source) throws APIException
hl7Source
to the database
hl7Source
- the source to save
APIException
@Deprecated @Authorized(value="Update HL7 Source") void createHL7Source(HL7Source hl7Source) throws APIException
saveHL7Source(HL7Source)
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Source") HL7Source getHL7Source(java.lang.Integer hl7SourceId) throws APIException
hl7SourceId
-
HL7Source
object for given identifier
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Source") HL7Source getHL7SourceByName(java.lang.String name) throws APIException
name
- string to 'search' on
APIException
@Deprecated @Transactional(readOnly=true) @Authorized(value="View HL7 Source") HL7Source getHL7Source(java.lang.String name)
getHL7SourceByName(String)
@Transactional(readOnly=true) @Authorized(value="View HL7 Source") java.util.List<HL7Source> getAllHL7Sources() throws APIException
APIException
@Deprecated @Transactional(readOnly=true) @Authorized(value="View HL7 Source") java.util.Collection<HL7Source> getHL7Sources()
getAllHL7Sources()
@Deprecated @Authorized(value="Update HL7 Source") void updateHL7Source(HL7Source hl7Source)
saveHL7Source(HL7Source)
@Authorized(value="Update HL7 Source") HL7Source retireHL7Source(HL7Source hl7Source) throws APIException
hl7Source
as no longer active
hl7Source
- the source to retire
APIException
@Authorized(value="Purge HL7 Source") void purgeHL7Source(HL7Source hl7Source) throws APIException
retireHL7Source(HL7Source)
hl7Source
-
APIException
@Deprecated @Authorized(value="Update HL7 Source") void deleteHL7Source(HL7Source hl7Source)
purgeHL7Source(HL7Source)
retireHL7Source(HL7Source)
@Authorized(value={"Update HL7 Inbound Queue","Add HL7 Inbound Queue"}, requireAll=false) HL7InQueue saveHL7InQueue(HL7InQueue hl7InQueue) throws APIException
hl7InQueue
to the database
hl7InQueue
- the queue item to save
APIException
@Deprecated @Authorized(value="Add HL7 Inbound Queue") void createHL7InQueue(HL7InQueue hl7InQueue)
saveHL7InQueue(HL7InQueue)
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") HL7InQueue getHL7InQueue(java.lang.Integer hl7InQueueId) throws APIException
hl7InQueueId
- the id to search on
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") java.util.List<HL7InQueue> getAllHL7InQueues() throws APIException
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") java.util.List<HL7InQueue> getHL7InQueueBatch(int start, int length, int messageState, java.lang.String query) throws APIException
start
- beginning indexlength
- size of the batchmessageState
- status of the HL7InQueue messagequery
- search string
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") java.lang.Integer countHL7InQueue(int messageState, java.lang.String query) throws APIException
messageState
- HL7InQueue statusquery
- search string
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") java.util.List<HL7InError> getHL7InErrorBatch(int start, int length, java.lang.String query) throws APIException
start
- beginning indexlength
- size of the batchquery
- search string
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") java.lang.Integer countHL7InError(java.lang.String query) throws APIException
query
- search string
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Archive") java.util.List<HL7InArchive> getHL7InArchiveBatch(int start, int length, int messageState, java.lang.String query) throws APIException
start
- beginning indexlength
- size of the batchmessageState
- status of the HL7InArchive messagequery
- search string
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Archive") java.lang.Integer countHL7InArchive(int messageState, java.lang.String query) throws APIException
messageState
- status of the HL7InArchive messagequery
- search string
APIException
@Deprecated @Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") java.util.Collection<HL7InQueue> getHL7InQueues()
getAllHL7InQueues()
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") HL7InQueue getNextHL7InQueue() throws APIException
APIException
@Authorized(value="Purge HL7 Inbound Queue") void purgeHL7InQueue(HL7InQueue hl7InQueue)
hl7InQueue
- @Deprecated @Authorized(value="Delete HL7 Inbound Queue") void deleteHL7InQueue(HL7InQueue hl7InQueue)
purgeHL7InQueue(HL7InQueue)
@Authorized(value={"Update HL7 Inbound Archive","Add HL7 Inbound Archive"}, requireAll=false) HL7InArchive saveHL7InArchive(HL7InArchive hl7InArchive) throws APIException
hl7InArchive
- the archive to save
APIException
@Deprecated @Authorized(value="Add HL7 Inbound Archive") void createHL7InArchive(HL7InArchive hl7InArchive)
saveHL7InArchive(HL7InArchive)
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Archive") HL7InArchive getHL7InArchive(java.lang.Integer hl7InArchiveId)
getHL7InArchiveByUuid(String)
hl7InArchiveId
- the id to search on
HL7InArchive getHL7InArchiveByUuid(java.lang.String uuid) throws APIException
uuid
- to search on
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Archive") java.util.List<HL7InArchive> getHL7InArchiveByState(java.lang.Integer state) throws APIException
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Queue") java.util.List<HL7InQueue> getHL7InQueueByState(java.lang.Integer state) throws APIException
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Archive") java.util.List<HL7InArchive> getAllHL7InArchives() throws APIException
APIException
@Deprecated @Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Archive") java.util.Collection<HL7InArchive> getHL7InArchives()
getAllHL7InArchives()
@Deprecated @Authorized(value="Update HL7 Inbound Archive") void updateHL7InArchive(HL7InArchive hl7InArchive)
saveHL7InArchive(HL7InArchive)
@Authorized(value="Purge HL7 Inbound Archive") void purgeHL7InArchive(HL7InArchive hl7InArchive) throws APIException
hl7InArchive
- the archived item to delete
APIException
@Deprecated @Authorized(value="Delete HL7 Inbound Archive") void deleteHL7InArchive(HL7InArchive hl7InArchive)
purgeHL7InArchive(HL7InArchive)
@Authorized(value={"Update HL7 Inbound Exception","Add HL7 Inbound Exception"}, requireAll=false) HL7InError saveHL7InError(HL7InError hl7InError) throws APIException
hl7InError
- the item to save
APIException
@Deprecated @Authorized(value="Add HL7 Inbound Exception") void createHL7InError(HL7InError hl7InError)
saveHL7InError(HL7InError)
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Exception") HL7InError getHL7InError(java.lang.Integer hl7InErrorId) throws APIException
hl7InErrorId
- the id to search on
APIException
@Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Exception") java.util.List<HL7InError> getAllHL7InErrors() throws APIException
HL7InError
items from the database
HL7InError
items from the database
APIException
@Deprecated @Transactional(readOnly=true) @Authorized(value="View HL7 Inbound Exception") java.util.Collection<HL7InError> getHL7InErrors()
getAllHL7InErrors()
@Deprecated @Authorized(value="Update HL7 Inbound Exception") void updateHL7InError(HL7InError hl7InError)
saveHL7InError(HL7InError)
@Authorized(value="Purge HL7 Inbound Exception") void purgeHL7InError(HL7InError hl7InError) throws APIException
hl7InError
- the item to remove
APIException
@Deprecated @Authorized(value="Delete HL7 Inbound Exception") void deleteHL7InError(HL7InError hl7InError)
purgeHL7InError(HL7InError)
java.lang.Integer resolveUserId(ca.uhn.hl7v2.model.v25.datatype.XCN xcn) throws ca.uhn.hl7v2.HL7Exception
xcn
- HL7 component of data type XCN (extended composite ID number and name for persons)
(see HL7 2.5 manual Ch.2A.86)
ca.uhn.hl7v2.HL7Exception
java.lang.Integer resolvePersonId(ca.uhn.hl7v2.model.v25.datatype.XCN xcn) throws ca.uhn.hl7v2.HL7Exception
xcn
- HL7 component of data type XCN (extended composite ID number and name for persons)
(see HL7 2.5 manual Ch.2A.86)
ca.uhn.hl7v2.HL7Exception
java.lang.Integer resolveLocationId(ca.uhn.hl7v2.model.v25.datatype.PL pl) throws ca.uhn.hl7v2.HL7Exception
pl
- HL7 component of data type PL (person location) (see Ch 2.A.53)
ca.uhn.hl7v2.HL7Exception
java.lang.Integer resolvePatientId(ca.uhn.hl7v2.model.v25.segment.PID pid) throws ca.uhn.hl7v2.HL7Exception
pid
- A PID segment of an hl7 message
ca.uhn.hl7v2.HL7Exception
Person resolvePersonFromIdentifiers(ca.uhn.hl7v2.model.v25.datatype.CX[] identifiers) throws ca.uhn.hl7v2.HL7Exception
identifiers
- CX identifier list from an identifier (either PID or NK1)
ca.uhn.hl7v2.HL7Exception
void garbageCollect()
@Deprecated void encounterCreated(Encounter encounter)
encounter
- HL7InQueue processHL7InQueue(HL7InQueue inQueue) throws ca.uhn.hl7v2.HL7Exception
HL7InQueue
item. HL7InError
is created and saved. HL7InArchive
is created and saved.HL7InQueue
is removed from the hl7 in queue table regardless of success or
failure of the processing.
inQueue
- the HL7InQueue
to parse and save all encounters/obs to the db
HL7InQueue
ca.uhn.hl7v2.HL7Exception
@Logging(ignoreAllArgumentValues=true) ca.uhn.hl7v2.model.Message parseHL7String(java.lang.String hl7String) throws ca.uhn.hl7v2.HL7Exception
Message
hl7String
- the hl7 string to parse and save
Message
that the given hl7 string represents
ca.uhn.hl7v2.HL7Exception
processHL7InQueue(HL7InQueue)
ca.uhn.hl7v2.model.Message processHL7Message(ca.uhn.hl7v2.model.Message hl7Message) throws ca.uhn.hl7v2.HL7Exception
Message
and saves the resulting content to the database
hl7Message
- the Message
to process and save to the db.
ca.uhn.hl7v2.HL7Exception
#processHL7String(String)}
,
processHL7InQueue(HL7InQueue)
@Authorized(requireAll=true, value={"View HL7 Inbound Archive","Purge HL7 Inbound Archive","Add HL7 Inbound Queue"}) void migrateHl7InArchivesToFileSystem(java.util.Map<java.lang.String,java.lang.Integer> progressStatusMap) throws APIException
progressStatusMap
- the map holding the number of archives transferred and failed
transfers
APIException
java.lang.String getUuidFromIdentifiers(ca.uhn.hl7v2.model.v25.datatype.CX[] identifiers) throws ca.uhn.hl7v2.HL7Exception
identifiers
-
ca.uhn.hl7v2.HL7Exception
Person createPersonFromNK1(ca.uhn.hl7v2.model.v25.segment.NK1 nk1) throws ca.uhn.hl7v2.HL7Exception
nk1
- the NK1 segment with person information
ca.uhn.hl7v2.HL7Exception
void loadHL7InArchiveData(java.util.List<HL7InArchive> archives) throws APIException
archives
-
APIException
void loadHL7InArchiveData(HL7InArchive archive) throws APIException
archive
-
APIException
|
OpenMRS-1.7.x | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |