Package be.uclouvain.orthanc
Class FindAnswers
- java.lang.Object
-
- be.uclouvain.orthanc.FindAnswers
-
public class FindAnswers extends java.lang.ObjectAnswers to a DICOM C-FIND query
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFindAnswers(long self)Construct a Java object wrapping a C object that is managed by Orthanc.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfindAddAnswer(byte[] dicom)Add one answer to some C-Find request.voidfindMarkIncomplete()Mark the set of C-Find answers as incomplete.protected longgetSelf()Return the C object that is associated with this Java wrapper.
-
-
-
Method Detail
-
getSelf
protected long getSelf()
Return the C object that is associated with this Java wrapper.- Returns:
- Pointer to the C object.
-
findAddAnswer
public void findAddAnswer(byte[] dicom)
Add one answer to some C-Find request. This function adds one answer (encoded as a DICOM file) to the set of answers corresponding to some C-Find SCP request that is not related to modality worklists.- Parameters:
dicom- The answer to be added, encoded as a DICOM file.
-
findMarkIncomplete
public void findMarkIncomplete()
Mark the set of C-Find answers as incomplete. This function marks as incomplete the set of answers corresponding to some C-Find SCP request that is not related to modality worklists. This must be used if canceling the handling of a request when too many answers are to be returned.
-
-