File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed
ds3-sdk/src/main/java/com/spectralogic/ds3client Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change 23
23
import java .security .SignatureException ;
24
24
25
25
/**
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
27
27
* this class.
28
28
*
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
- *
44
29
* See {@link Ds3ClientBuilder} on what options can be used to create a Ds3Client instance.
45
30
*/
46
31
public interface Ds3Client {
You can’t perform that action at this time.
0 commit comments