Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/main/java/loci/common/S3Handle.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,15 @@
/**
* Provides random access to S3 buckets using the IRandomAccess interface.
* Instances of S3Handle are read-only.
* @deprecated The S3 implementations and services will be removed from
* the ome-common library in version 7.0.0
*
* @see IRandomAccess
* @see StreamHandle
* @see java.net.URLConnection
*
*/
@Deprecated
public class S3Handle extends StreamHandle {

/**
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/loci/common/services/S3ClientService.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@

/**
* An S3 client
* @deprecated The S3 implementations and services will be removed from
* the ome-common library in version 7.0.0
*/
@Deprecated
public interface S3ClientService extends Service {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@

/**
* Exception thrown when internal error specific to the S3 client is raised
* @deprecated The S3 implementations and services will be removed from
* the ome-common library in version 7.0.0
*/
@Deprecated
public class S3ClientServiceException extends ServiceException
{
/**
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/loci/common/services/S3ClientServiceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@

/**
* An S3 client
* @deprecated The S3 implementations and services will be removed from
* the ome-common library in version 7.0.0
*/
@Deprecated
public class S3ClientServiceImpl extends AbstractService implements S3ClientService {

/**
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/loci/common/services/S3ClientStat.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@

/**
* Object stat (attributes) information
* @deprecated The S3 implementations and services will be removed from
* the ome-common library in version 7.0.0
*/
@Deprecated
public class S3ClientStat {
/**
* Create stat object storing length of object
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/loci/common/services/services.properties
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ loci.formats.services.JPEGTurboService=loci.formats.services.JPEGTurboServiceImp
loci.formats.services.EXIFService=loci.formats.services.EXIFServiceImpl
loci.formats.services.JPEGXRService=loci.formats.services.JPEGXRServiceImpl
# Minio S3 client service
# Deprecated: the S3 implementations and services will be removed from
# the ome-common library in version 7.0.0
loci.common.services.S3ClientService=loci.common.services.S3ClientServiceImpl
# OME Codecs JAI Image I/O service
ome.codecs.services.JAIIIOService=ome.codecs.services.JAIIIOServiceImpl
3 changes: 3 additions & 0 deletions src/test/java/loci/common/utests/S3ClientServiceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,12 @@

/**
* Unit tests for the loci.common.service.S3ClientServiceImpl class.
* @deprecated The S3 implementations and services will be removed from
* the ome-common library in version 7.0.0
*
* @see loci.common.URLHandle
*/
@Deprecated
@Test(groups="readTests")
public class S3ClientServiceTest {

Expand Down
3 changes: 3 additions & 0 deletions src/test/java/loci/common/utests/S3HandleTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,12 @@

/**
* Unit tests for the loci.common.S3Handle class.
* @deprecated The S3 implementations and services will be removed from
* the ome-common library in version 7.0.0
*
* @see loci.common.URLHandle
*/
@Deprecated
@Test(groups="readTests")
public class S3HandleTest {

Expand Down
Loading