File tree Expand file tree Collapse file tree
src/main/java/pt/ieeta/dicoogle/plugin/demo/dicooglepluginsample Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 <dependency >
6262 <groupId >pt.ua.ieeta</groupId >
6363 <artifactId >dicoogle-sdk</artifactId >
64- <version >2.0-SNAPSHOT </version >
64+ <version >2.1.0 </version >
6565 </dependency >
6666 <dependency >
6767 <groupId >org.restlet.jse</groupId >
8181 <maven .compiler.target>1.7</maven .compiler.target>
8282 </properties >
8383 <name >dicooglePluginSample</name >
84- </project >
84+ </project >
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ private Report indexURI(StorageInputStream storage) throws IOException
6363 }
6464
6565 @ Override
66- public Task <Report > index (final StorageInputStream file ) {
66+ public Task <Report > index (final StorageInputStream file , Object ... objects ) {
6767
6868
6969 return new Task <>(
@@ -98,7 +98,7 @@ public float getProgress() {
9898 }
9999
100100 @ Override
101- public Task <Report > index (final Iterable <StorageInputStream > files ) {
101+ public Task <Report > index (final Iterable <StorageInputStream > files , Object ... objects ) {
102102 return new Task <>(
103103 new ProgressCallable <Report >() {
104104 private float progress = 0.0f ;
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ public long getSize() throws IOException {
7272 }
7373
7474 @ Override
75- public URI store (DicomObject dicomObject ) {
75+ public URI store (DicomObject dicomObject , Object ... objects ) {
7676 ByteArrayOutputStream bos = new ByteArrayOutputStream ();
7777 DicomOutputStream dos = new DicomOutputStream (bos );
7878 try {
@@ -94,7 +94,7 @@ public URI store(DicomObject dicomObject) {
9494 }
9595
9696 @ Override
97- public URI store (DicomInputStream inputStream ) throws IOException {
97+ public URI store (DicomInputStream inputStream , Object ... objects ) throws IOException {
9898
9999 DicomObject obj = inputStream .readDicomObject ();
100100
You can’t perform that action at this time.
0 commit comments