Skip to content

Commit 78f75fa

Browse files
committed
Go to 2.1.0 version.
1 parent 0b17a45 commit 78f75fa

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
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>
@@ -81,4 +81,4 @@
8181
<maven.compiler.target>1.7</maven.compiler.target>
8282
</properties>
8383
<name>dicooglePluginSample</name>
84-
</project>
84+
</project>

src/main/java/pt/ieeta/dicoogle/plugin/demo/dicooglepluginsample/RSIIndex.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

src/main/java/pt/ieeta/dicoogle/plugin/demo/dicooglepluginsample/RSIStorage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)