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 2323import 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 */
4631public interface Ds3Client {
You can’t perform that action at this time.
0 commit comments