Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 47c940d6 authored by Guillaume Thomazon's avatar Guillaume Thomazon
Browse files

PROXY-90 - Update pixelmed version

git-svn-id: https://scm.gforge.inria.fr/authscm/ycadoret/svn/gazelle/Maven/gazelle-proxy/trunk@43944 356b4b1a-1d2b-0410-8bf1-ffa24008f01e
parent 52f9bdc1
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<dependency> <dependency>
<groupId>com.pixelmed</groupId> <groupId>com.pixelmed</groupId>
<artifactId>dicom</artifactId> <artifactId>dicom</artifactId>
<version>20140128</version> <version>20141027</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>dcm4che</groupId> <groupId>dcm4che</groupId>
......
...@@ -5,7 +5,7 @@ import java.util.Map; ...@@ -5,7 +5,7 @@ import java.util.Map;
import java.util.TreeMap; import java.util.TreeMap;
import com.pixelmed.dicom.SOPClass; import com.pixelmed.dicom.SOPClass;
import com.pixelmed.network.MessageServiceElementCommand_; import com.pixelmed.network.MessageServiceElementCommand;
public class Dictionnaries { public class Dictionnaries {
...@@ -37,8 +37,8 @@ public class Dictionnaries { ...@@ -37,8 +37,8 @@ public class Dictionnaries {
0x0FFF }; 0x0FFF };
for (int command : commandFieldsIds) { for (int command : commandFieldsIds) {
commandFields.put(MessageServiceElementCommand_.toString(command), commandFields.put(MessageServiceElementCommand.toString(command),
MessageServiceElementCommand_.toString(command)); MessageServiceElementCommand.toString(command));
} }
} }
...@@ -218,10 +218,8 @@ public class Dictionnaries { ...@@ -218,10 +218,8 @@ public class Dictionnaries {
sopClassByUID.put(SOPClass.PrivatePhilipsLiveRunStorage,"Philips Private Live Run Storage"); sopClassByUID.put(SOPClass.PrivatePhilipsLiveRunStorage,"Philips Private Live Run Storage");
sopClassByUID.put(SOPClass.PrivatePhilipsRunStorage,"Philips Private Run Storage"); sopClassByUID.put(SOPClass.PrivatePhilipsRunStorage,"Philips Private Run Storage");
sopClassByUID.put(SOPClass.PrivatePhilipsReconstructionStorage,"Philips Private Reconstruction Storage"); sopClassByUID.put(SOPClass.PrivatePhilipsReconstructionStorage,"Philips Private Reconstruction Storage");
sopClassByUID.put(SOPClass.PrivatePhilipsPrivateXRayMFStorage,"Philips Private X-Ray Multiframe Storage");
sopClassByUID.put(SOPClass.PrivatePMODMultiframeImageStorage,"PMOD Private Multiframe Image Storage"); sopClassByUID.put(SOPClass.PrivatePMODMultiframeImageStorage,"PMOD Private Multiframe Image Storage");
sopClassByUID.put(SOPClass.PrivatePixelMedLegacyConvertedEnhancedCTImageStorage,"Private PixelMed Legacy Converted Enhanced CT Image Storage"); sopClassByUID.put(SOPClass.PrivatePixelMedLegacyConvertedEnhancedCTImageStorage,"Private PixelMed Legacy Converted Enhanced CT Image Storage");
sopClassByUID.put(SOPClass.PrivatePixelMedLegacyFloatingPointImageStorage,"Private PixelMed Floating Point Image Storage");
sopClassByUID.put(SOPClass.DICOSCTImageStorage,"DICOS CT Image Storage"); sopClassByUID.put(SOPClass.DICOSCTImageStorage,"DICOS CT Image Storage");
sopClassByUID.put(SOPClass.DICOSDigitalXRayImageStorageForPresentation,"DICOS Digital X-Ray Image Storage - For Presentation"); sopClassByUID.put(SOPClass.DICOSDigitalXRayImageStorageForPresentation,"DICOS Digital X-Ray Image Storage - For Presentation");
......
...@@ -50,7 +50,7 @@ import com.pixelmed.dicom.DicomDictionary; ...@@ -50,7 +50,7 @@ import com.pixelmed.dicom.DicomDictionary;
import com.pixelmed.dicom.DicomException; import com.pixelmed.dicom.DicomException;
import com.pixelmed.dicom.DicomInputStream; import com.pixelmed.dicom.DicomInputStream;
import com.pixelmed.dicom.SOPClassDescriptions; import com.pixelmed.dicom.SOPClassDescriptions;
import com.pixelmed.network.MessageServiceElementCommand_; import com.pixelmed.network.MessageServiceElementCommand;
@Entity @Entity
@Name("dicomMessage") @Name("dicomMessage")
...@@ -178,7 +178,7 @@ public class DicomMessage extends AbstractMessage implements java.io.Serializabl ...@@ -178,7 +178,7 @@ public class DicomMessage extends AbstractMessage implements java.io.Serializabl
} }
int[] integerValues = attributeValue.getIntegerValues(); int[] integerValues = attributeValue.getIntegerValues();
for (Integer fieldValue : integerValues) { for (Integer fieldValue : integerValues) {
String commandFieldTmp = MessageServiceElementCommand_.toString(fieldValue); String commandFieldTmp = MessageServiceElementCommand.toString(fieldValue);
bw.append(StringEscapeUtils.escapeHtml(commandFieldTmp)); bw.append(StringEscapeUtils.escapeHtml(commandFieldTmp));
bw.append(" "); bw.append(" ");
} }
...@@ -266,7 +266,7 @@ public class DicomMessage extends AbstractMessage implements java.io.Serializabl ...@@ -266,7 +266,7 @@ public class DicomMessage extends AbstractMessage implements java.io.Serializabl
try { try {
int[] integerValues = attributeValue.getIntegerValues(); int[] integerValues = attributeValue.getIntegerValues();
for (Integer fieldValue : integerValues) { for (Integer fieldValue : integerValues) {
String commandFieldTmp = MessageServiceElementCommand_.toString(fieldValue); String commandFieldTmp = MessageServiceElementCommand.toString(fieldValue);
infoCommandField=commandFieldTmp; infoCommandField=commandFieldTmp;
} }
} catch (Exception e) { } catch (Exception e) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment