Skip to content

Commit 4b0401f

Browse files
committed
Updating more documentation
1 parent d7851bf commit 4b0401f

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,9 @@
2323
import java.security.SignatureException;
2424

2525
/**
26-
* The main interface for communicating with a DS3 appliance. All communication with a DS3 appliance should start with
26+
* The main interface for communicating with a DS3 appliance. All communication with a DS3 appliance starts with
2727
* this class.
2828
*
29-
* Here is an example showing how the Ds3Client interface is used to get a list of buckets from a remote DS3 appliance.
30-
*
31-
* <pre>
32-
* {@code
33-
* final Ds3Client client = Ds3ClientBuilder.create("ds3Endpoint:8080",
34-
* new Credentials("accessKey", "secretKey")).build();
35-
*
36-
* final GetServiceResponse response = client.getService(new GetServiceRequest());
37-
*
38-
* for(final Bucket bucket: response.getResult().getBuckets()) {
39-
* System.out.println(bucket.getName());
40-
* }
41-
* }
42-
* </pre>
43-
*
4429
* See {@link Ds3ClientBuilder} on what options can be used to create a Ds3Client instance.
4530
*/
4631
public interface Ds3Client {

0 commit comments

Comments
 (0)