From 2a3aecab4e248d4aae2a8a417577fb66744f02fb Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Fri, 4 Aug 2017 14:08:22 -0600 Subject: [PATCH 01/38] Fix for https://jira.spectralogic.com/browse/JSDK-245 Null Pointer exception for get system info. Not exactly sure why we got the NPE, as extracting the files after pulling down the 'all' jar shows the .properties file where we expect it with the right contents, so... --- .../ds3client/utils/PropertyUtils.java | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java index c12170f8d..33e0164d5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java @@ -47,13 +47,18 @@ public static String getSdkVersion() { try (final InputStream propertiesStream = PropertyUtils.class.getClassLoader().getResourceAsStream(PROPERTIES_FILE_NAME)) { if (propertiesStream != null) { properties.load(propertiesStream); - final String versionFromPropFile = properties.get(SDK_VERSION_PROPERTY_NAME).toString(); - if (!Guard.isStringNullOrEmpty(versionFromPropFile)) { - versionProperty.set(versionFromPropFile); + final Object versionPropertyObject = properties.get(SDK_VERSION_PROPERTY_NAME); + + if (versionPropertyObject != null) { + final String versionFromPropFile = properties.get(SDK_VERSION_PROPERTY_NAME).toString(); + + if ( ! Guard.isStringNullOrEmpty(versionFromPropFile)) { + versionProperty.set(versionFromPropFile); + } } } - } catch (final IOException e) { - LOG.warn("Could not read properties file.", e); + } catch (final Throwable t) { + LOG.warn("Could not read properties file.", t); } return versionProperty.get(); From 23989dc72d2a417e6c8fe78c05ec3ae4763dfd14 Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Fri, 4 Aug 2017 14:26:59 -0600 Subject: [PATCH 02/38] Removing unused import --- .../java/com/spectralogic/ds3client/utils/PropertyUtils.java | 1 - 1 file changed, 1 deletion(-) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java index 33e0164d5..243693ba5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java @@ -15,7 +15,6 @@ package com.spectralogic.ds3client.utils; -import java.io.IOException; import java.io.InputStream; import java.util.Properties; import java.util.concurrent.atomic.AtomicReference; From 896ea8c0c291b9cf928d35ed5c08af2702c55524 Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Fri, 4 Aug 2017 14:50:23 -0600 Subject: [PATCH 03/38] Updating version number --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index ead13b699..fcb760a76 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ allprojects { group = 'com.spectralogic.ds3' - version = '3.5.0' + version = '3.5.1' } subprojects { From 64783ac526d883779b01287dd5dd2aa1dae3fbc7 Mon Sep 17 00:00:00 2001 From: DenverM80 Date: Mon, 21 Aug 2017 16:33:38 -0600 Subject: [PATCH 04/38] Force US locale for compatibility with English BP server --- .../ds3client/networking/NetworkClientImpl.java | 2 +- .../spectralogic/ds3client/utils/DateFormatter.java | 11 ++++++----- .../ds3client/utils/DateFormatter_Test.java | 13 ++++++++++++- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java index 91d821f6b..938be7c24 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java @@ -271,7 +271,7 @@ private String buildPath() { private void addHeaders(final HttpRequest httpRequest) { // Add common headers. - final String date = DateFormatter.dateToRfc882(); + final String date = DateFormatter.dateToRfc822(); httpRequest.addHeader(HOST, NetUtils.buildHostField(NetworkClientImpl.this.connectionDetails)); httpRequest.addHeader(DATE, date); httpRequest.addHeader(CONTENT_TYPE, this.ds3Request.getContentType()); diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/DateFormatter.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/DateFormatter.java index 80ad6d688..f39c15132 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/DateFormatter.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/DateFormatter.java @@ -17,19 +17,20 @@ import java.text.SimpleDateFormat; import java.util.Date; +import java.util.Locale; import java.util.TimeZone; public final class DateFormatter { final static private String RFC822FORMAT = "EEE, dd MMM yyyy HH:mm:ss Z"; /** - * Returns a RFC-882 formatted string with the current time. + * Returns a RFC-822 formatted string with the current time. */ - public static String dateToRfc882() { - return dateToRfc882(new Date()); + public static String dateToRfc822() { + return dateToRfc822(new Date()); } - public static String dateToRfc882(final Date date) { - final SimpleDateFormat sdf = new SimpleDateFormat(RFC822FORMAT); + public static String dateToRfc822(final Date date) { + final SimpleDateFormat sdf = new SimpleDateFormat(RFC822FORMAT, Locale.US); sdf.setTimeZone(TimeZone.getTimeZone("GMT")); return sdf.format(date); } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/DateFormatter_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/DateFormatter_Test.java index a43d926c2..93506a694 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/DateFormatter_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/DateFormatter_Test.java @@ -19,6 +19,7 @@ import org.junit.Test; import java.util.Date; +import java.util.Locale; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; @@ -29,6 +30,16 @@ public class DateFormatter_Test { public void formatDate() { final Date date = new Date(1390414308132L); - assertThat(DateFormatter.dateToRfc882(date), is("Wed, 22 Jan 2014 18:11:48 +0000")); + assertThat(DateFormatter.dateToRfc822(date), is("Wed, 22 Jan 2014 18:11:48 +0000")); + } + + @Test + public void formatDateMandarin() { + final Locale defaultLocale = Locale.getDefault(); + Locale.setDefault(Locale.CHINESE); + final Date date = new Date(1390414308132L); + + assertThat(DateFormatter.dateToRfc822(date), is("Wed, 22 Jan 2014 18:11:48 +0000")); + Locale.setDefault(defaultLocale); } } From 57e2c86acae537b6c8152d7c83439ffc5f29f86d Mon Sep 17 00:00:00 2001 From: Eric Bergstrom Date: Tue, 22 Aug 2017 15:22:03 -0600 Subject: [PATCH 05/38] Correcting issue where FileObjectGetter does not respect symlinks --- .gitignore | 1 + .../ds3client/helpers/FileObjectGetter.java | 2 +- .../helpers/FileObjectGetter_Test.java | 31 +++++++++++++++++++ 3 files changed, 33 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1440e929b..629bdb4d3 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ atlassian-ide-plugin.xml bin/ *.log *.rc +.DS_Store diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java index 4015f7664..4f99d36ee 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java @@ -44,7 +44,7 @@ public SeekableByteChannel buildChannel(final String key) throws IOException { final Path objectPath = this.root.resolve(key); final Path parentPath = objectPath.getParent(); if (parentPath != null) { - Files.createDirectories(parentPath); + Files.createDirectories(FileUtils.resolveForSymbolic(parentPath)); } if ( ! FileUtils.isTransferablePath(objectPath)) { diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java index 82c7ac73b..6df56d140 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java @@ -18,9 +18,13 @@ import com.spectralogic.ds3client.utils.Platform; import org.apache.commons.io.FileUtils; import org.junit.Assume; +import org.junit.Rule; import org.junit.Test; +import org.junit.rules.TemporaryFolder; import java.io.IOException; +import java.nio.ByteBuffer; +import java.nio.channels.SeekableByteChannel; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; @@ -28,8 +32,12 @@ import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; public class FileObjectGetter_Test { + @Rule + public TemporaryFolder temporaryFolder = new TemporaryFolder(); + @Test public void testThatNamedPipeThrows() throws IOException, InterruptedException { Assume.assumeFalse(Platform.isWindows()); @@ -77,4 +85,27 @@ public void testThatFileReportsAsRegularOnWindows() throws IOException, Interrup assertFalse(caughtException.get()); } + + @Test + public void testThatSymbolicLinksAreResolved() { + Assume.assumeTrue(Platform.isMac()); + final String message = "Hello World"; + final String file = "file.txt"; + try { + final Path tempDirectory = Files.createTempDirectory(Paths.get(System.getProperty("java.io.tmpdir")), "ds3"); + final Path realDirectory = Files.createDirectory(Paths.get(tempDirectory.toString(), "dir")); + final Path symbolicDirectory = Paths.get(tempDirectory.toString(), "symbolic"); + Files.createSymbolicLink(symbolicDirectory, realDirectory); + Files.createFile(Paths.get(realDirectory.toString(), file)); + final ByteBuffer bb = ByteBuffer.wrap(message.getBytes()); + + final SeekableByteChannel getterChannel = new FileObjectGetter(symbolicDirectory).buildChannel(file); + getterChannel.write(bb); + getterChannel.close(); + final String content = new String(Files.readAllBytes(Paths.get(realDirectory.toString(), file))); + assertTrue(message.equals(content)); + } catch (final IOException e) { + fail("Symbolic links are not handled correctly"); + } + } } From 6d7716ff26fdfd98b4f5147fbeae806806daa1c6 Mon Sep 17 00:00:00 2001 From: Eric Bergstrom Date: Mon, 7 Aug 2017 11:32:21 -0600 Subject: [PATCH 06/38] Re-adding removed class --- .../pagination/GetBucketLoaderFactory.java | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java new file mode 100644 index 000000000..3e2ba0520 --- /dev/null +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java @@ -0,0 +1,48 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.helpers.pagination; + +import com.spectralogic.ds3client.Ds3Client; +import com.spectralogic.ds3client.models.Contents; +import com.spectralogic.ds3client.utils.collections.LazyIterable; + +/** + * This class is a child of {@link GetBucketKeyLoaderFactory} + * that provides a sane default for mapping {@link com.spectralogic.ds3client.models.ListBucketResult} + */ +public class GetBucketLoaderFactory extends GetBucketKeyLoaderFactory { + + /** + * + * @param client + * @param bucket + * @param keyPrefix + * @param nextMarker + * @param maxKeys + * @param defaultListObjectsRetries + */ + public GetBucketLoaderFactory(final Ds3Client client, final String bucket, final String keyPrefix, final String nextMarker, final int maxKeys, final int defaultListObjectsRetries) { + super(client, bucket, keyPrefix, "/" , nextMarker, maxKeys, defaultListObjectsRetries, contentsFunction); + } + + /** + * @return {@link LazyIterable.LazyLoader} + */ + @Override + public LazyIterable.LazyLoader create() { + return super.create(); + } +} \ No newline at end of file From 4d80564220df28645066ee11b1e110be1cf5088f Mon Sep 17 00:00:00 2001 From: Eric Bergstrom Date: Mon, 7 Aug 2017 12:38:14 -0600 Subject: [PATCH 07/38] Adding some javadoc andd removing a stray newline --- .../ds3client/helpers/pagination/GetBucketLoaderFactory.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java index 3e2ba0520..48a1d6d4c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java @@ -22,6 +22,8 @@ /** * This class is a child of {@link GetBucketKeyLoaderFactory} * that provides a sane default for mapping {@link com.spectralogic.ds3client.models.ListBucketResult} + * "/" will be used for the delimiter, and {@link com.spectralogic.ds3client.models.ListBucketResult} will be mapped to + * {@link LazyIterable.LazyLoader} which was the old behavior. */ public class GetBucketLoaderFactory extends GetBucketKeyLoaderFactory { From 5e38ab763e12c8a5d73ee0f7b8819a6d3b3af6cb Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Tue, 22 Aug 2017 15:46:40 -0600 Subject: [PATCH 08/38] Run tests intended to use symbolic links on un*x-like platforms. --- .../spectralogic/ds3client/helpers/FileObjectGetter_Test.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java index 6df56d140..423d7d891 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java @@ -88,7 +88,7 @@ public void testThatFileReportsAsRegularOnWindows() throws IOException, Interrup @Test public void testThatSymbolicLinksAreResolved() { - Assume.assumeTrue(Platform.isMac()); + Assume.assumeFalse(Platform.isWindows()); final String message = "Hello World"; final String file = "file.txt"; try { From 6f073967c03a8546674db2dca5c2f361f7d9f3d4 Mon Sep 17 00:00:00 2001 From: Rachel Tucker Date: Fri, 7 Jul 2017 16:03:30 -0600 Subject: [PATCH 09/38] Created PutFolder command which wraps PutObject --- .../helpers/FileSystemHelper_Test.java | 49 +++++++++++++++---- .../com/spectralogic/ds3client/Ds3Client.java | 4 ++ .../spectralogic/ds3client/Ds3ClientImpl.java | 8 +++ .../commands/decorators/PutFolderRequest.java | 48 ++++++++++++++++++ .../decorators/PutFolderResponse.java | 29 +++++++++++ 5 files changed, 128 insertions(+), 10 deletions(-) create mode 100644 ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java create mode 100644 ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderResponse.java diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java index c38e226ef..15e6d7159 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java @@ -15,10 +15,11 @@ package com.spectralogic.ds3client.helpers; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - +import com.google.common.collect.ImmutableList; import com.spectralogic.ds3client.Ds3Client; +import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; +import com.spectralogic.ds3client.commands.spectrads3.PutBulkJobSpectraS3Request; +import com.spectralogic.ds3client.commands.spectrads3.PutBulkJobSpectraS3Response; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; import com.spectralogic.ds3client.integration.Util; import com.spectralogic.ds3client.integration.test.helpers.TempStorageIds; @@ -31,6 +32,8 @@ import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import java.io.BufferedReader; import java.io.IOException; @@ -39,17 +42,15 @@ import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; -import java.util.*; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.UUID; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicLong; import static com.spectralogic.ds3client.integration.Util.deleteAllContents; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.*; public class FileSystemHelper_Test { private static final Logger LOG = LoggerFactory.getLogger(FileSystemHelper_Test.class); @@ -313,4 +314,32 @@ public long getAvailableFileSpace(final Path path) throws IOException { throw new IOException("IOExceptionAtor"); } } + + @Test + public void createFolderWithSlash() throws IOException { + final String folderName = "FolderNameWithSlash/"; + + try { + final Ds3Object ds3Object = new Ds3Object(folderName, 0); + final PutBulkJobSpectraS3Response jobResponse = client.putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(BUCKET_NAME, ImmutableList.of(ds3Object))); + + client.putFolder(new PutFolderRequest(BUCKET_NAME, folderName, jobResponse.getMasterObjectList().getJobId())); + } finally { + deleteAllContents(client, BUCKET_NAME); + } + } + + @Test + public void createFolderWithNoSlash() throws IOException { + final String folderName = "FolderNameNoSlash"; + + try { + final Ds3Object ds3Object = new Ds3Object(folderName + "/", 0); + final PutBulkJobSpectraS3Response jobResponse = client.putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(BUCKET_NAME, ImmutableList.of(ds3Object))); + + client.putFolder(new PutFolderRequest(BUCKET_NAME, folderName, jobResponse.getMasterObjectList().getJobId())); + } finally { + deleteAllContents(client, BUCKET_NAME); + } + } } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java index 0268450de..514948d2f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java @@ -20,6 +20,8 @@ import com.spectralogic.ds3client.annotations.Resource; import com.spectralogic.ds3client.annotations.ResponsePayloadModel; import com.spectralogic.ds3client.commands.*; +import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; +import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.commands.spectrads3.notifications.*; import com.spectralogic.ds3client.models.JobNode; @@ -35,6 +37,8 @@ public interface Ds3Client extends Closeable { ConnectionDetails getConnectionDetails(); + PutFolderResponse putFolder(final PutFolderRequest request) + throws IOException; AbortMultiPartUploadResponse abortMultiPartUpload(final AbortMultiPartUploadRequest request) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java index 8a92e5bb3..9e29d492e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java @@ -18,6 +18,8 @@ import java.io.IOException; import com.spectralogic.ds3client.commands.*; +import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; +import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.commands.parsers.*; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.commands.spectrads3.notifications.*; @@ -45,6 +47,12 @@ public ConnectionDetails getConnectionDetails() { return this.netClient.getConnectionDetails(); } + @Override + public PutFolderResponse putFolder(final PutFolderRequest request) throws IOException { + final PutObjectResponse response = putObject(request.getPutObjectRequest()); + return new PutFolderResponse(response); + } + @Override public AbortMultiPartUploadResponse abortMultiPartUpload(final AbortMultiPartUploadRequest request) throws IOException { return new AbortMultiPartUploadResponseParser().response(this.netClient.getResponse(request)); diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java new file mode 100644 index 000000000..114ff396c --- /dev/null +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java @@ -0,0 +1,48 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.commands.decorators; + +import com.spectralogic.ds3client.commands.PutObjectRequest; + +import java.util.UUID; + +/** + * Decorates the {@link com.spectralogic.ds3client.commands.PutObjectRequest} and is used to + * ensure the correct creation of a folder using the Put Object command. + * + * A folder is created by putting an object with no content, of zero size, and with the + * content-length=0. Also, the name of the folder must end with a slash '/' + */ +public class PutFolderRequest { + + private final PutObjectRequest putObjectRequest; + + public PutFolderRequest(final String bucketName, final String folderName, final UUID job) { + putObjectRequest = new PutObjectRequest(bucketName, ensureEndsWithSlash(folderName), job, 0, 0, null); + putObjectRequest.getHeaders().put("Content-Length", "0"); + } + + private static String ensureEndsWithSlash(final String bucketName) { + if (bucketName.endsWith("/")) { + return bucketName; + } + return bucketName + "/"; + } + + public PutObjectRequest getPutObjectRequest() { + return putObjectRequest; + } +} diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderResponse.java new file mode 100644 index 000000000..1707e7996 --- /dev/null +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderResponse.java @@ -0,0 +1,29 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.commands.decorators; + +import com.spectralogic.ds3client.commands.PutObjectResponse; + +/** + * Decorates the {@link com.spectralogic.ds3client.commands.PutObjectResponse} and is used + * by command {@link com.spectralogic.ds3client.Ds3Client#putFolder(PutFolderRequest)} + */ +public class PutFolderResponse extends PutObjectResponse { + + public PutFolderResponse(final PutObjectResponse response) { + super(response.getChecksum(), response.getChecksumType()); + } +} From 3e13ef28e30e33d2fd38cee82f960eb5a5a9804a Mon Sep 17 00:00:00 2001 From: Rachel Tucker Date: Mon, 10 Jul 2017 12:47:27 -0600 Subject: [PATCH 10/38] Added helper for creating folder --- .../helpers/FileSystemHelper_Test.java | 17 ++++-------- .../ds3client/integration/Smoke_Test.java | 20 ++++++++++++++ .../commands/decorators/PutFolderRequest.java | 13 ++++----- ...FolderNameMissingTrailingForwardSlash.java | 26 ++++++++++++++++++ .../ds3client/helpers/Ds3ClientHelpers.java | 6 +++++ .../helpers/Ds3ClientHelpersImpl.java | 27 +++++++++++++++++++ .../ds3client/Ds3Client_Test.java | 7 +++++ 7 files changed, 98 insertions(+), 18 deletions(-) create mode 100644 ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/FolderNameMissingTrailingForwardSlash.java diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java index 15e6d7159..badd3dddc 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java @@ -15,11 +15,8 @@ package com.spectralogic.ds3client.helpers; -import com.google.common.collect.ImmutableList; import com.spectralogic.ds3client.Ds3Client; -import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; -import com.spectralogic.ds3client.commands.spectrads3.PutBulkJobSpectraS3Request; -import com.spectralogic.ds3client.commands.spectrads3.PutBulkJobSpectraS3Response; +import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; import com.spectralogic.ds3client.integration.Util; import com.spectralogic.ds3client.integration.test.helpers.TempStorageIds; @@ -320,10 +317,8 @@ public void createFolderWithSlash() throws IOException { final String folderName = "FolderNameWithSlash/"; try { - final Ds3Object ds3Object = new Ds3Object(folderName, 0); - final PutBulkJobSpectraS3Response jobResponse = client.putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(BUCKET_NAME, ImmutableList.of(ds3Object))); - - client.putFolder(new PutFolderRequest(BUCKET_NAME, folderName, jobResponse.getMasterObjectList().getJobId())); + final PutFolderResponse response = HELPERS.createFolder(BUCKET_NAME, folderName); + assertNotNull(response); } finally { deleteAllContents(client, BUCKET_NAME); } @@ -334,10 +329,8 @@ public void createFolderWithNoSlash() throws IOException { final String folderName = "FolderNameNoSlash"; try { - final Ds3Object ds3Object = new Ds3Object(folderName + "/", 0); - final PutBulkJobSpectraS3Response jobResponse = client.putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(BUCKET_NAME, ImmutableList.of(ds3Object))); - - client.putFolder(new PutFolderRequest(BUCKET_NAME, folderName, jobResponse.getMasterObjectList().getJobId())); + final PutFolderResponse response = HELPERS.createFolder(BUCKET_NAME, folderName); + assertNotNull(response); } finally { deleteAllContents(client, BUCKET_NAME); } diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java index 5df2ef496..60e27d24f 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java @@ -15,11 +15,14 @@ package com.spectralogic.ds3client.integration; +import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import com.spectralogic.ds3client.Ds3Client; import com.spectralogic.ds3client.commands.*; +import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; +import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.commands.interfaces.BulkResponse; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.helpers.*; @@ -1656,4 +1659,21 @@ public void testGetObjectsWithFullDetails() throws IOException, URISyntaxExcepti deleteAllContents(client, bucketName); } } + + @Test + public void createFolderWithSlash() throws IOException { + final String folderName = "FolderNameWithSlash/"; + final String bucketName = "FolderNameWithSlashTestBucket"; + + try { + HELPERS.ensureBucketExists(bucketName, envDataPolicyId); + final Ds3Object ds3Object = new Ds3Object(folderName, 0); + final PutBulkJobSpectraS3Response jobResponse = client.putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(bucketName, ImmutableList.of(ds3Object))); + + final PutFolderResponse response = client.putFolder(new PutFolderRequest(bucketName, folderName, jobResponse.getMasterObjectList().getJobId())); + assertNotNull(response); + } finally { + deleteAllContents(client, bucketName); + } + } } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java index 114ff396c..8f0b0d55e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java @@ -16,6 +16,7 @@ package com.spectralogic.ds3client.commands.decorators; import com.spectralogic.ds3client.commands.PutObjectRequest; +import com.spectralogic.ds3client.exceptions.FolderNameMissingTrailingForwardSlash; import java.util.UUID; @@ -24,22 +25,22 @@ * ensure the correct creation of a folder using the Put Object command. * * A folder is created by putting an object with no content, of zero size, and with the - * content-length=0. Also, the name of the folder must end with a slash '/' + * content-length=0. Also, the name of the folder must end with a forward slash '/'. */ public class PutFolderRequest { private final PutObjectRequest putObjectRequest; public PutFolderRequest(final String bucketName, final String folderName, final UUID job) { - putObjectRequest = new PutObjectRequest(bucketName, ensureEndsWithSlash(folderName), job, 0, 0, null); + validateNameEndsWithSlash(folderName); + putObjectRequest = new PutObjectRequest(bucketName, folderName, job, 0, 0, null); putObjectRequest.getHeaders().put("Content-Length", "0"); } - private static String ensureEndsWithSlash(final String bucketName) { - if (bucketName.endsWith("/")) { - return bucketName; + private static void validateNameEndsWithSlash(final String folderName) { + if (!folderName.endsWith("/")) { + throw new FolderNameMissingTrailingForwardSlash(folderName); } - return bucketName + "/"; } public PutObjectRequest getPutObjectRequest() { diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/FolderNameMissingTrailingForwardSlash.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/FolderNameMissingTrailingForwardSlash.java new file mode 100644 index 000000000..25614be28 --- /dev/null +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/FolderNameMissingTrailingForwardSlash.java @@ -0,0 +1,26 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.exceptions; + +/** + * Denotes an invalid folder name. Folder names must end with a forward slash '/'. + */ +public class FolderNameMissingTrailingForwardSlash extends IllegalArgumentException { + + public FolderNameMissingTrailingForwardSlash(final String folderName) { + super("Invalid folder name '" + folderName + "': folder names must end with a forward slash '/'."); + } +} diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java index 0e6072830..5845551c6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java @@ -18,6 +18,7 @@ import com.google.common.base.Function; import com.google.common.collect.FluentIterable; import com.spectralogic.ds3client.Ds3Client; +import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.helpers.options.ReadJobOptions; import com.spectralogic.ds3client.helpers.options.WriteJobOptions; import com.spectralogic.ds3client.helpers.strategy.transferstrategy.TransferStrategy; @@ -580,4 +581,9 @@ public static String stripLeadingPath(final String objectName, final String pref public abstract ObjectStorageSpaceVerificationResult objectsFromBucketWillFitInDirectory(final String bucketName, final Collection objectNames, final Path destinationDirectory); + + /** + * Creates a folder in the specified bucket + */ + public abstract PutFolderResponse createFolder(final String bucketName, final String folderName) throws IOException; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java index 3d08bf8e7..94e2b609d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java @@ -25,7 +25,10 @@ import com.spectralogic.ds3client.commands.HeadBucketRequest; import com.spectralogic.ds3client.commands.HeadBucketResponse; import com.spectralogic.ds3client.commands.PutBucketRequest; +import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; +import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.commands.spectrads3.*; +import com.spectralogic.ds3client.exceptions.FolderNameMissingTrailingForwardSlash; import com.spectralogic.ds3client.helpers.events.EventRunner; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; import com.spectralogic.ds3client.helpers.options.ReadJobOptions; @@ -593,4 +596,28 @@ public ObjectStorageSpaceVerificationResult objectsFromBucketWillFitInDirectory( return fileSystemHelper.objectsFromBucketWillFitInDirectory(this, bucketName, objectNames, destinationDirectory); } + + /** + * Creates a folder in the specified bucket. + */ + @Override + public PutFolderResponse createFolder(final String bucketName, final String folderName) throws IOException { + final String normalizedFolderName = ensureNameEndsWithSlash(folderName); + final Ds3Object ds3Object = new Ds3Object(normalizedFolderName, 0); + final PutBulkJobSpectraS3Response jobResponse = client + .putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(bucketName, ImmutableList.of(ds3Object))); + + return client.putFolder(new PutFolderRequest(bucketName, normalizedFolderName, jobResponse.getMasterObjectList().getJobId())); + } + + /** + * Ensures that a folder names ends with a trailing forward slash. This prevents the + * accidental creation of zero-length files when attempting to create a folder. + */ + private static String ensureNameEndsWithSlash(final String folderName) { + if (folderName.endsWith("/")) { + return folderName; + } + return folderName + "/"; + } } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java index 506e5b441..637799069 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java @@ -20,8 +20,10 @@ import com.google.common.collect.Multimap; import com.google.common.collect.TreeMultimap; import com.spectralogic.ds3client.commands.*; +import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.exceptions.ContentLengthNotMatchException; +import com.spectralogic.ds3client.exceptions.FolderNameMissingTrailingForwardSlash; import com.spectralogic.ds3client.models.*; import com.spectralogic.ds3client.models.Objects; import com.spectralogic.ds3client.models.bulk.Ds3Object; @@ -1136,4 +1138,9 @@ public void getObjectVerifyFullPayload() throws IOException { jobIdString, 0)); } + + @Test (expected = FolderNameMissingTrailingForwardSlash.class) + public void createFolderWithNoSlash() throws IOException { + new PutFolderRequest("BucketName", "FolderNameNoSlash", UUID.randomUUID()); + } } From 637ac993df0b3831976cf537d8b927af4e1526ff Mon Sep 17 00:00:00 2001 From: Rachel Tucker Date: Mon, 10 Jul 2017 12:53:23 -0600 Subject: [PATCH 11/38] Removed unused import --- .../com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java | 1 - 1 file changed, 1 deletion(-) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java index 94e2b609d..8b19d4d26 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java @@ -28,7 +28,6 @@ import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.commands.spectrads3.*; -import com.spectralogic.ds3client.exceptions.FolderNameMissingTrailingForwardSlash; import com.spectralogic.ds3client.helpers.events.EventRunner; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; import com.spectralogic.ds3client.helpers.options.ReadJobOptions; From 8a5c141e554572cd941f79b3cd0ab9715ed7f15b Mon Sep 17 00:00:00 2001 From: Rachel Tucker Date: Mon, 28 Aug 2017 16:20:34 -0600 Subject: [PATCH 12/38] Tests for zero length objects and moved create file to helpers --- .../helpers/FileSystemHelper_Test.java | 6 +- .../integration/PutJobManagement_Test.java | 128 ++++++++++++------ .../ds3client/integration/Smoke_Test.java | 19 --- .../com/spectralogic/ds3client/Ds3Client.java | 5 - .../spectralogic/ds3client/Ds3ClientImpl.java | 8 -- .../commands/decorators/PutFolderRequest.java | 49 ------- .../decorators/PutFolderResponse.java | 29 ---- .../ds3client/helpers/Ds3ClientHelpers.java | 6 +- .../helpers/Ds3ClientHelpersImpl.java | 20 ++- .../ds3client/Ds3Client_Test.java | 7 - .../commands/GetObjectRequest_Test.java | 5 +- 11 files changed, 111 insertions(+), 171 deletions(-) delete mode 100644 ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java delete mode 100644 ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderResponse.java diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java index badd3dddc..446b24601 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java @@ -16,7 +16,7 @@ package com.spectralogic.ds3client.helpers; import com.spectralogic.ds3client.Ds3Client; -import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; +import com.spectralogic.ds3client.commands.PutObjectResponse; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; import com.spectralogic.ds3client.integration.Util; import com.spectralogic.ds3client.integration.test.helpers.TempStorageIds; @@ -317,7 +317,7 @@ public void createFolderWithSlash() throws IOException { final String folderName = "FolderNameWithSlash/"; try { - final PutFolderResponse response = HELPERS.createFolder(BUCKET_NAME, folderName); + final PutObjectResponse response = HELPERS.createFolder(BUCKET_NAME, folderName); assertNotNull(response); } finally { deleteAllContents(client, BUCKET_NAME); @@ -329,7 +329,7 @@ public void createFolderWithNoSlash() throws IOException { final String folderName = "FolderNameNoSlash"; try { - final PutFolderResponse response = HELPERS.createFolder(BUCKET_NAME, folderName); + final PutObjectResponse response = HELPERS.createFolder(BUCKET_NAME, folderName); assertNotNull(response); } finally { deleteAllContents(client, BUCKET_NAME); diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java index ec279b579..e8e953fdb 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java @@ -15,6 +15,7 @@ package com.spectralogic.ds3client.integration; +import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import com.spectralogic.ds3client.Ds3Client; @@ -24,50 +25,31 @@ import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.commands.spectrads3.notifications.*; import com.spectralogic.ds3client.exceptions.Ds3NoMoreRetriesException; -import com.spectralogic.ds3client.helpers.ChecksumFunction; -import com.spectralogic.ds3client.helpers.Ds3ClientHelpers; -import com.spectralogic.ds3client.helpers.FailureEventListener; -import com.spectralogic.ds3client.helpers.FileObjectGetter; -import com.spectralogic.ds3client.helpers.FileObjectPutter; -import com.spectralogic.ds3client.helpers.JobPart; -import com.spectralogic.ds3client.helpers.ObjectCompletedListener; +import com.spectralogic.ds3client.helpers.*; import com.spectralogic.ds3client.helpers.events.FailureEvent; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; import com.spectralogic.ds3client.helpers.options.WriteJobOptions; -import com.spectralogic.ds3client.helpers.strategy.blobstrategy.BlobStrategy; -import com.spectralogic.ds3client.helpers.strategy.blobstrategy.ChunkAttemptRetryBehavior; -import com.spectralogic.ds3client.helpers.strategy.blobstrategy.ChunkAttemptRetryDelayBehavior; -import com.spectralogic.ds3client.helpers.strategy.blobstrategy.ClientDefinedChunkAttemptRetryDelayBehavior; -import com.spectralogic.ds3client.helpers.strategy.blobstrategy.MaxChunkAttemptsRetryBehavior; -import com.spectralogic.ds3client.helpers.strategy.blobstrategy.PutSequentialBlobStrategy; +import com.spectralogic.ds3client.helpers.strategy.blobstrategy.*; import com.spectralogic.ds3client.helpers.strategy.channelstrategy.ChannelStrategy; import com.spectralogic.ds3client.helpers.strategy.channelstrategy.SequentialFileReaderChannelStrategy; -import com.spectralogic.ds3client.helpers.strategy.transferstrategy.EventDispatcher; -import com.spectralogic.ds3client.helpers.strategy.transferstrategy.EventDispatcherImpl; -import com.spectralogic.ds3client.helpers.strategy.transferstrategy.MaxNumObjectTransferAttemptsDecorator; -import com.spectralogic.ds3client.helpers.strategy.transferstrategy.TransferMethod; -import com.spectralogic.ds3client.helpers.strategy.transferstrategy.TransferRetryDecorator; -import com.spectralogic.ds3client.helpers.strategy.transferstrategy.TransferStrategy; -import com.spectralogic.ds3client.helpers.strategy.transferstrategy.TransferStrategyBuilder; -import com.spectralogic.ds3client.integration.test.helpers.ABMTestHelper; -import com.spectralogic.ds3client.integration.test.helpers.Ds3ClientShimFactory; -import com.spectralogic.ds3client.integration.test.helpers.TempStorageIds; -import com.spectralogic.ds3client.integration.test.helpers.TempStorageUtil; +import com.spectralogic.ds3client.helpers.strategy.transferstrategy.*; +import com.spectralogic.ds3client.integration.test.helpers.*; +import com.spectralogic.ds3client.integration.test.helpers.Ds3ClientShimFactory.ClientFailureType; import com.spectralogic.ds3client.metadata.MetadataAccessImpl; import com.spectralogic.ds3client.models.*; +import com.spectralogic.ds3client.models.Objects; import com.spectralogic.ds3client.models.bulk.Ds3Object; import com.spectralogic.ds3client.networking.FailedRequestException; import com.spectralogic.ds3client.utils.ByteArraySeekableByteChannel; import com.spectralogic.ds3client.utils.Platform; import com.spectralogic.ds3client.utils.ResourceUtils; - -import com.spectralogic.ds3client.integration.test.helpers.Ds3ClientShimFactory.ClientFailureType; - import com.spectralogic.ds3client.utils.hashing.ChecksumUtils; import com.spectralogic.ds3client.utils.hashing.Hasher; import org.apache.commons.io.FileUtils; import org.apache.commons.io.IOUtils; import org.junit.*; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import java.io.BufferedInputStream; import java.io.File; @@ -83,26 +65,15 @@ import java.nio.file.NoSuchFileException; import java.nio.file.Path; import java.nio.file.Paths; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Date; -import java.util.List; -import java.util.UUID; +import java.util.*; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; -import com.spectralogic.ds3client.integration.test.helpers.Ds3ClientShim; - import static com.spectralogic.ds3client.integration.Util.RESOURCE_BASE_NAME; import static com.spectralogic.ds3client.integration.Util.deleteAllContents; import static org.hamcrest.Matchers.*; import static org.junit.Assert.*; -import com.spectralogic.ds3client.helpers.*; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - public class PutJobManagement_Test { private static final Logger LOG = LoggerFactory.getLogger(PutJobManagement_Test.class); @@ -157,6 +128,52 @@ public void nakedS3Put() throws IOException, URISyntaxException { } } + @SuppressWarnings("deprecation") + @Test + public void nakedS3PutEmptyFile() throws IOException, URISyntaxException { + try { + final String fileName = "emptyFile.txt"; + + final ByteArraySeekableByteChannel channel = new ByteArraySeekableByteChannel(0); + final PutObjectResponse putObjectResponse = client.putObject( + new PutObjectRequest(BUCKET_NAME, fileName, channel, 0)); + assertThat(putObjectResponse, is(notNullValue())); + + final GetBucketResponse request = client.getBucket(new GetBucketRequest(BUCKET_NAME)); + final ListBucketResult result = request.getListBucketResult(); + + assertThat(result.getObjects().size(), is(1)); + final Contents contents = result.getObjects().get(0); + assertThat(contents.getKey(), is(fileName)); + assertThat(contents.getSize(), is((long) 0)); + } finally { + deleteAllContents(client, BUCKET_NAME); + } + } + + @SuppressWarnings("deprecation") + @Test + public void nakedS3PutFolder() throws IOException, URISyntaxException { + try { + final String fileName = "NakedS3Folder/"; + + final ByteArraySeekableByteChannel channel = new ByteArraySeekableByteChannel(0); + final PutObjectResponse putObjectResponse = client.putObject( + new PutObjectRequest(BUCKET_NAME, fileName, channel, 0)); + + assertThat(putObjectResponse, is(notNullValue())); + final GetBucketResponse request = client.getBucket(new GetBucketRequest(BUCKET_NAME)); + final ListBucketResult result = request.getListBucketResult(); + assertThat(result.getObjects().size(), is(1)); + + final Contents contents = result.getObjects().get(0); + assertThat(contents.getKey(), is(fileName)); + assertThat(contents.getSize(), is((long) 0)); + } finally { + deleteAllContents(client, BUCKET_NAME); + } + } + @Test public void getActiveJobs() throws IOException, URISyntaxException { try { @@ -1102,6 +1119,39 @@ private interface ObjectTransferExceptionHandler { boolean handleException(final Throwable t); } + @Test + public void testWriteJobWithZeroLengthObject() throws Exception { + + final Ds3Client client = Ds3ClientBuilder.fromEnv() + .withHttps(false) + .build(); + + final Path tempDirectory = Files.createTempDirectory(Paths.get("."), null); + final Path tempFile = Files.createTempFile(tempDirectory, "EmptyFile", null); + final String fileName = tempFile.getFileName().toString(); + + try { + final Ds3ClientHelpers ds3ClientHelpers = Ds3ClientHelpers.wrap(client); + + final ImmutableList objects = ImmutableList.of(new Ds3Object(fileName, 0)); + + final Ds3ClientHelpers.Job writeJob = ds3ClientHelpers.startWriteJob(BUCKET_NAME, objects); + writeJob.transfer(new FileObjectPutter(tempDirectory)); + + final GetBucketResponse request = client.getBucket(new GetBucketRequest(BUCKET_NAME)); + final ListBucketResult result = request.getListBucketResult(); + assertThat(result.getObjects().size(), is(1)); + + final Contents contents = result.getObjects().get(0); + assertThat(contents.getKey(), is(fileName)); + assertThat(contents.getSize(), is((long) 0)); + + } finally { + FileUtils.deleteDirectory(tempDirectory.toFile()); + deleteAllContents(client, BUCKET_NAME); + } + } + @Test public void testWriteJobWithRetriesAndUserDefinedChecksum() throws Exception { final int maxNumObjectTransferAttempts = 3; diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java index 60e27d24f..2ed51564d 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java @@ -21,8 +21,6 @@ import com.google.common.collect.Lists; import com.spectralogic.ds3client.Ds3Client; import com.spectralogic.ds3client.commands.*; -import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; -import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.commands.interfaces.BulkResponse; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.helpers.*; @@ -1659,21 +1657,4 @@ public void testGetObjectsWithFullDetails() throws IOException, URISyntaxExcepti deleteAllContents(client, bucketName); } } - - @Test - public void createFolderWithSlash() throws IOException { - final String folderName = "FolderNameWithSlash/"; - final String bucketName = "FolderNameWithSlashTestBucket"; - - try { - HELPERS.ensureBucketExists(bucketName, envDataPolicyId); - final Ds3Object ds3Object = new Ds3Object(folderName, 0); - final PutBulkJobSpectraS3Response jobResponse = client.putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(bucketName, ImmutableList.of(ds3Object))); - - final PutFolderResponse response = client.putFolder(new PutFolderRequest(bucketName, folderName, jobResponse.getMasterObjectList().getJobId())); - assertNotNull(response); - } finally { - deleteAllContents(client, bucketName); - } - } } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java index 514948d2f..7f7661e22 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java @@ -20,8 +20,6 @@ import com.spectralogic.ds3client.annotations.Resource; import com.spectralogic.ds3client.annotations.ResponsePayloadModel; import com.spectralogic.ds3client.commands.*; -import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; -import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.commands.spectrads3.notifications.*; import com.spectralogic.ds3client.models.JobNode; @@ -36,9 +34,6 @@ public interface Ds3Client extends Closeable { ConnectionDetails getConnectionDetails(); - - PutFolderResponse putFolder(final PutFolderRequest request) - throws IOException; AbortMultiPartUploadResponse abortMultiPartUpload(final AbortMultiPartUploadRequest request) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java index 9e29d492e..8a92e5bb3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java @@ -18,8 +18,6 @@ import java.io.IOException; import com.spectralogic.ds3client.commands.*; -import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; -import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; import com.spectralogic.ds3client.commands.parsers.*; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.commands.spectrads3.notifications.*; @@ -47,12 +45,6 @@ public ConnectionDetails getConnectionDetails() { return this.netClient.getConnectionDetails(); } - @Override - public PutFolderResponse putFolder(final PutFolderRequest request) throws IOException { - final PutObjectResponse response = putObject(request.getPutObjectRequest()); - return new PutFolderResponse(response); - } - @Override public AbortMultiPartUploadResponse abortMultiPartUpload(final AbortMultiPartUploadRequest request) throws IOException { return new AbortMultiPartUploadResponseParser().response(this.netClient.getResponse(request)); diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java deleted file mode 100644 index 8f0b0d55e..000000000 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderRequest.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** - */ - -package com.spectralogic.ds3client.commands.decorators; - -import com.spectralogic.ds3client.commands.PutObjectRequest; -import com.spectralogic.ds3client.exceptions.FolderNameMissingTrailingForwardSlash; - -import java.util.UUID; - -/** - * Decorates the {@link com.spectralogic.ds3client.commands.PutObjectRequest} and is used to - * ensure the correct creation of a folder using the Put Object command. - * - * A folder is created by putting an object with no content, of zero size, and with the - * content-length=0. Also, the name of the folder must end with a forward slash '/'. - */ -public class PutFolderRequest { - - private final PutObjectRequest putObjectRequest; - - public PutFolderRequest(final String bucketName, final String folderName, final UUID job) { - validateNameEndsWithSlash(folderName); - putObjectRequest = new PutObjectRequest(bucketName, folderName, job, 0, 0, null); - putObjectRequest.getHeaders().put("Content-Length", "0"); - } - - private static void validateNameEndsWithSlash(final String folderName) { - if (!folderName.endsWith("/")) { - throw new FolderNameMissingTrailingForwardSlash(folderName); - } - } - - public PutObjectRequest getPutObjectRequest() { - return putObjectRequest; - } -} diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderResponse.java deleted file mode 100644 index 1707e7996..000000000 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/decorators/PutFolderResponse.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** - */ - -package com.spectralogic.ds3client.commands.decorators; - -import com.spectralogic.ds3client.commands.PutObjectResponse; - -/** - * Decorates the {@link com.spectralogic.ds3client.commands.PutObjectResponse} and is used - * by command {@link com.spectralogic.ds3client.Ds3Client#putFolder(PutFolderRequest)} - */ -public class PutFolderResponse extends PutObjectResponse { - - public PutFolderResponse(final PutObjectResponse response) { - super(response.getChecksum(), response.getChecksumType()); - } -} diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java index 5845551c6..99f25d7df 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java @@ -18,12 +18,12 @@ import com.google.common.base.Function; import com.google.common.collect.FluentIterable; import com.spectralogic.ds3client.Ds3Client; -import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; +import com.spectralogic.ds3client.commands.PutObjectResponse; import com.spectralogic.ds3client.helpers.options.ReadJobOptions; import com.spectralogic.ds3client.helpers.options.WriteJobOptions; +import com.spectralogic.ds3client.helpers.pagination.FileSystemKey; import com.spectralogic.ds3client.helpers.strategy.transferstrategy.TransferStrategy; import com.spectralogic.ds3client.models.Contents; -import com.spectralogic.ds3client.helpers.pagination.FileSystemKey; import com.spectralogic.ds3client.models.bulk.Ds3Object; import com.spectralogic.ds3client.utils.Predicate; @@ -585,5 +585,5 @@ public abstract ObjectStorageSpaceVerificationResult objectsFromBucketWillFitInD /** * Creates a folder in the specified bucket */ - public abstract PutFolderResponse createFolder(final String bucketName, final String folderName) throws IOException; + public abstract PutObjectResponse createFolder(final String bucketName, final String folderName) throws IOException; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java index 8b19d4d26..84200f074 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java @@ -22,11 +22,7 @@ import com.google.common.collect.ImmutableMultimap; import com.google.common.collect.Lists; import com.spectralogic.ds3client.Ds3Client; -import com.spectralogic.ds3client.commands.HeadBucketRequest; -import com.spectralogic.ds3client.commands.HeadBucketResponse; -import com.spectralogic.ds3client.commands.PutBucketRequest; -import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; -import com.spectralogic.ds3client.commands.decorators.PutFolderResponse; +import com.spectralogic.ds3client.commands.*; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.helpers.events.EventRunner; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; @@ -43,6 +39,7 @@ import com.spectralogic.ds3client.models.bulk.Ds3Object; import com.spectralogic.ds3client.models.common.Range; import com.spectralogic.ds3client.networking.FailedRequestException; +import com.spectralogic.ds3client.utils.ByteArraySeekableByteChannel; import com.spectralogic.ds3client.utils.collections.LazyIterable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -600,13 +597,22 @@ public ObjectStorageSpaceVerificationResult objectsFromBucketWillFitInDirectory( * Creates a folder in the specified bucket. */ @Override - public PutFolderResponse createFolder(final String bucketName, final String folderName) throws IOException { + public PutObjectResponse createFolder(final String bucketName, final String folderName) throws IOException { final String normalizedFolderName = ensureNameEndsWithSlash(folderName); + final Ds3Object ds3Object = new Ds3Object(normalizedFolderName, 0); final PutBulkJobSpectraS3Response jobResponse = client .putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(bucketName, ImmutableList.of(ds3Object))); - return client.putFolder(new PutFolderRequest(bucketName, normalizedFolderName, jobResponse.getMasterObjectList().getJobId())); + final PutObjectRequest folderRequest = new PutObjectRequest( + bucketName, + normalizedFolderName, + new ByteArraySeekableByteChannel(0), + jobResponse.getMasterObjectList().getJobId(), + 0, + 0); + + return client.putObject(folderRequest); } /** diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java index 637799069..93b9413fd 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java @@ -20,7 +20,6 @@ import com.google.common.collect.Multimap; import com.google.common.collect.TreeMultimap; import com.spectralogic.ds3client.commands.*; -import com.spectralogic.ds3client.commands.decorators.PutFolderRequest; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.exceptions.ContentLengthNotMatchException; import com.spectralogic.ds3client.exceptions.FolderNameMissingTrailingForwardSlash; @@ -35,7 +34,6 @@ import com.spectralogic.ds3client.utils.ResourceUtils; import org.junit.Before; import org.junit.Test; -import static org.junit.Assert.assertTrue; import java.io.IOException; import java.net.URISyntaxException; @@ -1138,9 +1136,4 @@ public void getObjectVerifyFullPayload() throws IOException { jobIdString, 0)); } - - @Test (expected = FolderNameMissingTrailingForwardSlash.class) - public void createFolderWithNoSlash() throws IOException { - new PutFolderRequest("BucketName", "FolderNameNoSlash", UUID.randomUUID()); - } } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/GetObjectRequest_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/GetObjectRequest_Test.java index 0aea872ba..3163096f2 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/GetObjectRequest_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/GetObjectRequest_Test.java @@ -16,6 +16,7 @@ package com.spectralogic.ds3client.commands; import com.spectralogic.ds3client.models.common.Range; +import com.spectralogic.ds3client.utils.ByteArraySeekableByteChannel; import org.junit.Test; import java.util.ArrayList; @@ -33,7 +34,7 @@ public void singleRangeFormat() { final GetObjectRequest request = new GetObjectRequest( "bucketName", "objectName", - null, + new ByteArraySeekableByteChannel(0), UUID.randomUUID().toString(), 0); @@ -52,7 +53,7 @@ public void multipleRangeFormat() { final GetObjectRequest request = new GetObjectRequest( "bucketName", "objectName", - null, + new ByteArraySeekableByteChannel(0), UUID.randomUUID().toString(), 0); From 89cf1cf1f783b3f9337dc5535208acdda674598a Mon Sep 17 00:00:00 2001 From: Rachel Tucker Date: Mon, 28 Aug 2017 16:58:32 -0600 Subject: [PATCH 13/38] Removed unnecessary client creation --- .../ds3client/integration/PutJobManagement_Test.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java index e8e953fdb..067bf9fb0 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java @@ -1121,11 +1121,6 @@ private interface ObjectTransferExceptionHandler { @Test public void testWriteJobWithZeroLengthObject() throws Exception { - - final Ds3Client client = Ds3ClientBuilder.fromEnv() - .withHttps(false) - .build(); - final Path tempDirectory = Files.createTempDirectory(Paths.get("."), null); final Path tempFile = Files.createTempFile(tempDirectory, "EmptyFile", null); final String fileName = tempFile.getFileName().toString(); From f769b6cc275e5dc9a6515c831db690a24d19747b Mon Sep 17 00:00:00 2001 From: Rachel Tucker Date: Tue, 29 Aug 2017 13:56:01 -0600 Subject: [PATCH 14/38] Updated create folder helper to have void return type --- .../ds3client/helpers/FileSystemHelper_Test.java | 6 ++---- .../spectralogic/ds3client/helpers/Ds3ClientHelpers.java | 2 +- .../ds3client/helpers/Ds3ClientHelpersImpl.java | 4 ++-- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java index 446b24601..ebe263f06 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java @@ -317,8 +317,7 @@ public void createFolderWithSlash() throws IOException { final String folderName = "FolderNameWithSlash/"; try { - final PutObjectResponse response = HELPERS.createFolder(BUCKET_NAME, folderName); - assertNotNull(response); + HELPERS.createFolder(BUCKET_NAME, folderName); } finally { deleteAllContents(client, BUCKET_NAME); } @@ -329,8 +328,7 @@ public void createFolderWithNoSlash() throws IOException { final String folderName = "FolderNameNoSlash"; try { - final PutObjectResponse response = HELPERS.createFolder(BUCKET_NAME, folderName); - assertNotNull(response); + HELPERS.createFolder(BUCKET_NAME, folderName); } finally { deleteAllContents(client, BUCKET_NAME); } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java index 99f25d7df..1818dfe05 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java @@ -585,5 +585,5 @@ public abstract ObjectStorageSpaceVerificationResult objectsFromBucketWillFitInD /** * Creates a folder in the specified bucket */ - public abstract PutObjectResponse createFolder(final String bucketName, final String folderName) throws IOException; + public abstract void createFolder(final String bucketName, final String folderName) throws IOException; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java index 84200f074..8db5373f1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java @@ -597,7 +597,7 @@ public ObjectStorageSpaceVerificationResult objectsFromBucketWillFitInDirectory( * Creates a folder in the specified bucket. */ @Override - public PutObjectResponse createFolder(final String bucketName, final String folderName) throws IOException { + public void createFolder(final String bucketName, final String folderName) throws IOException { final String normalizedFolderName = ensureNameEndsWithSlash(folderName); final Ds3Object ds3Object = new Ds3Object(normalizedFolderName, 0); @@ -612,7 +612,7 @@ public PutObjectResponse createFolder(final String bucketName, final String fold 0, 0); - return client.putObject(folderRequest); + client.putObject(folderRequest); } /** From c84066f28335d69b615f4fe561baafd8d04ed804 Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Wed, 30 Aug 2017 10:36:27 -0600 Subject: [PATCH 15/38] Merging the Java8 changes into the 3.5 branch --- .travis.yml | 2 - build.gradle | 30 +++-- ds3-metadata/build.gradle | 29 +++-- ds3-sdk-integration/build.gradle | 8 +- .../ds3client/integration/Util.java | 18 +-- .../test/helpers/TempStorageUtil.java | 2 +- ds3-sdk-samples/build.gradle | 2 +- ds3-sdk/build.gradle | 34 ++++-- .../commands/interfaces/AbstractRequest.java | 2 +- .../ds3client/helpers/Ds3ClientHelpers.java | 25 ++-- .../helpers/Ds3ClientHelpersImpl.java | 109 +++++++----------- .../helpers/strategy/StrategyUtils.java | 1 - .../GetSequentialBlobStrategy.java | 2 - .../helpers/util/PartialObjectHelpers.java | 5 +- .../ds3client/models/bulk/Ds3ObjectList.java | 12 +- .../ds3client/serializer/XmlOutput.java | 3 + .../ds3client/utils/JobUtils.java | 1 - .../utils/collections/StreamWrapper.java | 43 +++---- .../ds3client/helpers/DeleteBucket.kt | 38 ++++++ .../ds3client/helpers/FileTreeWalker.kt | 35 ++++++ .../utils/collections/IterableExtensions.kt | 24 ++++ .../utils/collections/WindowedIterator.kt | 43 +++++++ .../ds3client/ConnectionFixture.java | 2 +- .../ds3client/Ds3Client_Test.java | 22 +--- .../spectralogic/ds3client/MockNetwork.java | 2 +- .../SeekableByteChannelInputStream_Test.java | 2 +- .../utils/ResponseParserUtils_Test.java | 2 +- .../helpers/Ds3ClientHelpers_Test.java | 6 +- .../ds3client/helpers/RequestMatchers.java | 4 +- .../channelbuilders/StreamObjectPutter.java | 2 +- .../ds3client/utils/NetUtils_Test.java | 6 +- .../ds3client/utils/Signature_Test.java | 3 - .../ds3client/helpers/FileTreeWalker_Test.kt | 50 ++++++++ .../collections/WindowedIterator_Test.kt | 76 ++++++++++++ ds3-utils/build.gradle | 31 +---- .../exceptions/AggregateException.java | 0 .../exceptions/AggregateException_Test.java | 0 gradle.properties | 11 ++ gradle/wrapper/gradle-wrapper.jar | Bin 54208 -> 54783 bytes gradle/wrapper/gradle-wrapper.properties | 4 +- 40 files changed, 466 insertions(+), 225 deletions(-) rename ds3-interfaces/build.gradle => ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/StreamWrapper.java (54%) create mode 100644 ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/DeleteBucket.kt create mode 100644 ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker.kt create mode 100644 ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/IterableExtensions.kt create mode 100644 ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator.kt create mode 100644 ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker_Test.kt create mode 100644 ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator_Test.kt rename {ds3-interfaces => ds3-utils}/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java (100%) rename {ds3-interfaces => ds3-utils}/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java (100%) create mode 100644 gradle.properties diff --git a/.travis.yml b/.travis.yml index 5b850af23..8d5b0b1e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,4 @@ language: java jdk: - oraclejdk8 - - oraclejdk7 - - openjdk7 script: ./gradlew -S clean jar ds3-sdk:test ds3-utils:test ds3-metadata:test diff --git a/build.gradle b/build.gradle index fcb760a76..1fd5a771b 100644 --- a/build.gradle +++ b/build.gradle @@ -13,45 +13,61 @@ * **************************************************************************** */ +buildscript { + ext.kotlin_version = '1.1.4-2' + + repositories { + mavenCentral() + } + + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + + allprojects { group = 'com.spectralogic.ds3' - version = '3.5.1' + version = '3.5.2' } subprojects { apply plugin: 'maven' apply plugin: 'java' + apply plugin: 'kotlin' apply plugin: 'findbugs' - sourceCompatibility = JavaVersion.VERSION_1_7 + sourceCompatibility = JavaVersion.VERSION_1_8 repositories { mavenCentral() mavenLocal() } dependencies { - compile 'org.slf4j:slf4j-api:1.7.22' - testCompile ('org.mockito:mockito-core:1.10.19') { + compile "org.slf4j:slf4j-api:$slf4jVersion" + testCompile ("org.mockito:mockito-core:$mockitoVersion") { exclude group: 'org.hamcrest' } - testCompile 'junit:junit:4.12' - testCompile 'org.slf4j:slf4j-simple:1.7.22' + testCompile "junit:junit:$junitVersion" + testCompile "org.slf4j:slf4j-simple:$slf4jVersion" } } task wrapper(type: Wrapper) { - gradleVersion = '3.5' + gradleVersion = '4.1' } project(':ds3-sdk') { dependencies { + compile project(':ds3-interfaces') compile project(':ds3-utils') } } project(':ds3-metadata') { dependencies { + compile project(':ds3-interfaces') compile project(':ds3-utils') } } diff --git a/ds3-metadata/build.gradle b/ds3-metadata/build.gradle index 9d45f587d..6002069a0 100644 --- a/ds3-metadata/build.gradle +++ b/ds3-metadata/build.gradle @@ -16,7 +16,7 @@ buildscript { repositories { jcenter() } dependencies { - classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3' + classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1' } } @@ -26,14 +26,19 @@ shadowJar { relocate 'org.apache', 'ds3metafatjar.org.apache' relocate 'com.google', 'ds3metafatjar.com.google' relocate 'com.sun.jna', 'ds3metafatjar.net.java.dev.jna' + relocate 'org.jetbrains', 'ds3metafatjar.org.jetbrains' + relocate 'org.intellij', 'ds3metafatjar.org.intellij' + relocate 'org.codehaus', 'ds3metafatjar.org.codehaus' dependencies { - exclude(dependency('org.hamcrest:hamcrest-library:1.3')) - exclude(dependency('org.mockito:mockito-core:1.10.19')) - exclude(dependency('junit:junit:4.12')) - exclude(dependency('org.slf4j:slf4j-api:1.7.22')) - exclude(dependency('org.slf4j:slf4j-simple:1.7.22')) - exclude(dependency('org.apache.commons:commons-lang3:3.0')) + exclude(project(":ds3-interfaces")) // this is being excluded since it must be used with the sdk, which already has this dependency included + exclude(project(":ds3-utils")) // this is being excluded since it must be used with the sdk, which already has this dependency included + exclude(dependency("org.hamcrest:hamcrest-library:$hamcrestVersion")) + exclude(dependency("org.mockito:mockito-core:$mockitoVersion")) + exclude(dependency("junit:junit:$junitVersion")) + exclude(dependency("org.slf4j:slf4j-api:$slf4jVersion")) + exclude(dependency("org.slf4j:slf4j-simple:$slf4jVersion")) + exclude(dependency("org.apache.commons:commons-lang3:$commonslangVersion")) } } @@ -42,10 +47,10 @@ artifacts { } dependencies { - compile group: 'net.java.dev.jna', name: 'jna-platform', version: '4.2.2' - compile group: 'net.java.dev.jna', name: 'jna', version: '4.2.2' - compile 'commons-io:commons-io:2.4' - compile 'org.apache.httpcomponents:httpclient:4.5.1' + compile group: 'net.java.dev.jna', name: 'jna-platform', version: "$jnaVersion" + compile group: 'net.java.dev.jna', name: 'jna', version: "$jnaVersion" + compile "commons-io:commons-io:$commonsioVersion" + compile "org.apache.httpcomponents:httpclient:$httpclientVersion" - testCompile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0' + testCompile group: 'org.apache.commons', name: 'commons-lang3', version: "$commonslangVersion" } diff --git a/ds3-sdk-integration/build.gradle b/ds3-sdk-integration/build.gradle index 56fcfed45..362cf2907 100644 --- a/ds3-sdk-integration/build.gradle +++ b/ds3-sdk-integration/build.gradle @@ -14,9 +14,9 @@ */ dependencies { - compile 'commons-codec:commons-codec:1.10' - compile 'junit:junit:4.12' - testCompile 'org.hamcrest:hamcrest-library:1.3' - testCompile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0' + compile "commons-codec:commons-codec:$commonscodecVersion" + compile "junit:junit:$junitVersion" + testCompile "org.hamcrest:hamcrest-library:$hamcrestVersion" + testCompile group: 'org.apache.commons', name: 'commons-lang3', version: "$commonslangVersion" } diff --git a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java index 166f73532..069eafbde 100644 --- a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java +++ b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java @@ -20,6 +20,7 @@ import com.spectralogic.ds3client.commands.DeleteBucketRequest; import com.spectralogic.ds3client.commands.DeleteObjectRequest; import com.spectralogic.ds3client.commands.spectrads3.GetSystemInformationSpectraS3Request; +import com.spectralogic.ds3client.helpers.DeleteBucket; import com.spectralogic.ds3client.helpers.Ds3ClientHelpers; import com.spectralogic.ds3client.helpers.channelbuilders.PrefixAdderObjectChannelBuilder; import com.spectralogic.ds3client.models.Contents; @@ -39,7 +40,7 @@ import static org.junit.Assume.assumeThat; -public class Util { +public final class Util { private static final Logger LOG = LoggerFactory.getLogger(Util.class); public static final String RESOURCE_BASE_NAME = "books/"; public static final String[] BOOKS = {"beowulf.txt", "sherlock_holmes.txt", "tale_of_two_cities.txt", "ulysses.txt"}; @@ -103,22 +104,11 @@ public static void loadBookTestDataWithPrefix(final Ds3Client client, final Stri } public static void deleteAllContents(final Ds3Client client, final String bucketName) throws IOException { - final Ds3ClientHelpers helpers = Ds3ClientHelpers.wrap(client); - - final Iterable objects = helpers.listObjects(bucketName); - for(final Contents contents : objects) { - client.deleteObject(new DeleteObjectRequest(bucketName, contents.getKey())); - } - - client.deleteBucket(new DeleteBucketRequest(bucketName)); + Ds3ClientHelpers.wrap(client).deleteBucket(bucketName); } public static void deleteBucketContents(final Ds3Client client, final String bucketName) throws IOException { final Ds3ClientHelpers helpers = Ds3ClientHelpers.wrap(client); - - final Iterable objects = helpers.listObjects(bucketName); - for(final Contents contents : objects) { - client.deleteObject(new DeleteObjectRequest(bucketName, contents.getKey())); - } + DeleteBucket.INSTANCE.deleteBucketContents(helpers, bucketName); } } diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java index 34d4af2e7..f6cf1f665 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java @@ -30,7 +30,7 @@ * and partition for use in the integration tests to avoid error if the BP does not currently * have a partition available for running the unit tests. */ -public class TempStorageUtil { +public final class TempStorageUtil { private static final String DATA_POLICY_NAME = "_dp"; private static final String STORAGE_DOMAIN_NAME = "_sd"; diff --git a/ds3-sdk-samples/build.gradle b/ds3-sdk-samples/build.gradle index e0b2a6709..f71a1040a 100644 --- a/ds3-sdk-samples/build.gradle +++ b/ds3-sdk-samples/build.gradle @@ -18,5 +18,5 @@ apply plugin: 'application' mainClassName = 'com.spectralogic.ds3client.samples.PartialObjectGetExample' dependencies { - compile 'org.slf4j:slf4j-simple:1.7.22' + compile "org.slf4j:slf4j-simple:$slf4jVersion" } diff --git a/ds3-sdk/build.gradle b/ds3-sdk/build.gradle index 87f7c6925..5b74d8b55 100644 --- a/ds3-sdk/build.gradle +++ b/ds3-sdk/build.gradle @@ -19,7 +19,7 @@ import java.nio.file.Path buildscript { repositories { jcenter() } dependencies { - classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3' + classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1' } } @@ -27,17 +27,25 @@ apply plugin: 'com.github.johnrengelman.shadow' shadowJar { relocate 'com.google', 'ds3fatjar.com.google' - relocate 'org.apache', 'ds3fatjar.org.apache' + relocate 'org.jetbrains', 'ds3fatjar.org.jetbrains' + relocate 'org.intellij', 'ds3fatjar.org.intellij' relocate 'org.codehaus', 'ds3fatjar.org.codehaus' + relocate 'kotlin', 'ds3fatjar.kotlin' + relocate 'edu.umd', 'ds3fatjar.edu.emd' + relocate 'net.jcip', 'ds3fatjar.net.jcip' + relocate 'com.ctc', 'ds3fatjar.com.ctc' + relocate 'org.apache', 'ds3fatjar.org.apache' relocate 'com.fasterxml', 'ds3fatjar.com.fasterxml' dependencies { - exclude(dependency('org.hamcrest:hamcrest-library:1.3')) - exclude(dependency('org.mockito:mockito-core:1.10.19')) - exclude(dependency('junit:junit:4.12')) - exclude(dependency('org.slf4j:slf4j-api:1.7.22')) - exclude(dependency('org.slf4j:slf4j-simple:1.7.22')) - exclude(dependency('org.apache.commons:commons-lang3:3.0')) + exclude(dependency("org.hamcrest:hamcrest-library:$hamcrestVersion")) + exclude(dependency("org.mockito:mockito-core:$mockitoVersion")) + exclude(dependency("junit:junit:$junitVersion")) + exclude(dependency("org.slf4j:slf4j-api:$slf4jVersion")) + exclude(dependency("org.slf4j:slf4j-simple:$slf4jVersion")) + exclude(dependency("org.apache.commons:commons-lang3:$commonslangVersion")) } + + mergeServiceFiles() } artifacts { @@ -78,10 +86,12 @@ jar { jar.dependsOn genConfigProperties dependencies { - compile 'org.apache.httpcomponents:httpclient:4.5.1' + compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" + compile "org.apache.httpcomponents:httpclient:$httpclientVersion" + compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:$jacksonVersion" + compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:$jacksonVersion" + compile "com.google.guava:guava:$guavaVersion" compile 'org.codehaus.woodstox:woodstox-core-asl:4.4.1' - compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.7.1' - compile 'com.google.guava:guava:20.0' compile 'com.google.code.findbugs:annotations:3.0.1' - testCompile 'org.hamcrest:hamcrest-library:1.3' + testCompile "org.hamcrest:hamcrest-library:$hamcrestVersion" } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractRequest.java index faae9155a..4097d8425 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractRequest.java @@ -36,7 +36,7 @@ private static RequestHeaders buildDefaultHeaders() { @Override public String getContentType() { - return ContentType.APPLICATION_XML.toString(); + return ContentType.APPLICATION_XML.getMimeType(); } @Override diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java index 1818dfe05..f01d4f4dc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java @@ -509,6 +509,12 @@ public abstract Iterable listObjects(final String bucket, final String */ public abstract Iterable remoteListDirectory(final String bucket, final String keyPrefix, final String delimiter, final String nextMarker, final int maxKeys) throws IOException; + /** + * + * @param bucket + */ + public abstract void deleteBucket(final String bucket) throws IOException; + /** * Returns an Iterable of {@link Ds3Object} that have a prefix added. */ @@ -526,20 +532,12 @@ public abstract Iterable listObjects(final String bucket, final String @SafeVarargs public final Iterable toDs3Iterable(final Iterable objects, final Predicate... filters) { - FluentIterable fluentIterable = FluentIterable.from(objects).filter(new com.google.common.base.Predicate() { - @Override - public boolean apply(@Nullable final Contents input) { - return input != null; - } - }); + FluentIterable fluentIterable = FluentIterable.from(objects).filter(input -> input != null); if (filters != null) { for (final Predicate filter : filters) { - fluentIterable = fluentIterable.filter(new com.google.common.base.Predicate() { - @Override - public boolean apply(@Nullable final Contents input) { - return filter == null || filter.test(input); // do not filter anything if filter is null - } + fluentIterable = fluentIterable.filter(input -> { + return filter == null || filter.test(input); // do not filter anything if filter is null }); } } @@ -586,4 +584,9 @@ public abstract ObjectStorageSpaceVerificationResult objectsFromBucketWillFitInD * Creates a folder in the specified bucket */ public abstract void createFolder(final String bucketName, final String folderName) throws IOException; + + /** + * Returns the client being wrapped + */ + public abstract Ds3Client getClient(); } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java index 8db5373f1..0d562443b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java @@ -15,12 +15,9 @@ package com.spectralogic.ds3client.helpers; -import com.google.common.base.Function; import com.google.common.base.Preconditions; -import com.google.common.collect.FluentIterable; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMultimap; -import com.google.common.collect.Lists; import com.spectralogic.ds3client.Ds3Client; import com.spectralogic.ds3client.commands.*; import com.spectralogic.ds3client.commands.spectrads3.*; @@ -40,20 +37,17 @@ import com.spectralogic.ds3client.models.common.Range; import com.spectralogic.ds3client.networking.FailedRequestException; import com.spectralogic.ds3client.utils.ByteArraySeekableByteChannel; +import com.spectralogic.ds3client.utils.collections.StreamWrapper; import com.spectralogic.ds3client.utils.collections.LazyIterable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import javax.annotation.Nullable; import java.io.IOException; -import java.nio.file.FileVisitResult; -import java.nio.file.Files; import java.nio.file.Path; -import java.nio.file.SimpleFileVisitor; -import java.nio.file.attribute.BasicFileAttributes; import java.util.Collection; -import java.util.List; import java.util.UUID; +import java.util.stream.Stream; +import java.util.stream.StreamSupport; class Ds3ClientHelpersImpl extends Ds3ClientHelpers { private final static Logger LOG = LoggerFactory.getLogger(Ds3ClientHelpersImpl.class); @@ -147,7 +141,7 @@ private Ds3ClientHelpers.Job innerStartWriteJob(final String bucket, final TransferStrategyBuilder transferStrategyBuilder) throws IOException { - final PutBulkJobSpectraS3Request request = new PutBulkJobSpectraS3Request(bucket, Lists.newArrayList(objectsToWrite)) + final PutBulkJobSpectraS3Request request = new PutBulkJobSpectraS3Request(bucket, objectsToWrite) .withPriority(options.getPriority()) .withAggregating(options.isAggregating()) .withForce(options.isForce()) @@ -166,19 +160,19 @@ private Ds3ClientHelpers.Job innerStartWriteJob(final String bucket, } @Override - public Job startWriteJob(final TransferStrategy transferStrategy) + public Ds3ClientHelpers.Job startWriteJob(final TransferStrategy transferStrategy) throws IOException { return new WriteJobImpl(transferStrategy); } @Override - public Job startWriteJobUsingStreamedBehavior(final String bucket, final Iterable objectsToWrite) throws IOException { + public Ds3ClientHelpers.Job startWriteJobUsingStreamedBehavior(final String bucket, final Iterable objectsToWrite) throws IOException { return startWriteJobUsingStreamedBehavior(bucket, objectsToWrite, WriteJobOptions.create()); } @Override - public Job startWriteJobUsingStreamedBehavior(final String bucket, + public Ds3ClientHelpers.Job startWriteJobUsingStreamedBehavior(final String bucket, final Iterable objectsToWrite, final WriteJobOptions options) throws IOException @@ -192,12 +186,12 @@ public Job startWriteJobUsingStreamedBehavior(final String bucket, } @Override - public Job startWriteJobUsingRandomAccessBehavior(final String bucket, final Iterable objectsToWrite) throws IOException { + public Ds3ClientHelpers.Job startWriteJobUsingRandomAccessBehavior(final String bucket, final Iterable objectsToWrite) throws IOException { return startWriteJobUsingRandomAccessBehavior(bucket, objectsToWrite, WriteJobOptions.create()); } @Override - public Job startWriteJobUsingRandomAccessBehavior(final String bucket, final Iterable objectsToWrite, final WriteJobOptions options) throws IOException { + public Ds3ClientHelpers.Job startWriteJobUsingRandomAccessBehavior(final String bucket, final Iterable objectsToWrite, final WriteJobOptions options) throws IOException { Preconditions.checkNotNull(options, "options may not be null."); final TransferStrategyBuilder transferStrategyBuilder = makeTransferStrategyBuilder(); @@ -212,10 +206,8 @@ public Ds3ClientHelpers.Job startReadJob(final String bucket, final Iterable objectsToRead, final ReadJobOptions options) - throws IOException - { - final List objects = Lists.newArrayList(objectsToRead); + public Ds3ClientHelpers.Job startReadJob(final String bucket, final Iterable objects, final ReadJobOptions options) + throws IOException { final GetBulkJobSpectraS3Request getBulkJobSpectraS3Request; @@ -230,13 +222,13 @@ public Ds3ClientHelpers.Job startReadJob(final String bucket, final Iterable objects, final ReadJobOptions options) { + private GetBulkJobSpectraS3Request makeGetBulkJobSpectraS3Request(final String bucket, final Iterable objects, final ReadJobOptions options) { return new GetBulkJobSpectraS3Request(bucket, objects) .withPriority(options.getPriority()) .withName(options.getName()); } - private Ds3ClientHelpers.Job innerStartReadJob(final List objects, + private Ds3ClientHelpers.Job innerStartReadJob(final Iterable objects, final GetBulkJobSpectraS3Request getBulkJobSpectraS3Request, final TransferStrategyBuilder transferStrategyBuilder) throws IOException @@ -255,21 +247,19 @@ private Ds3ClientHelpers.Job innerStartReadJob(final List objects, } @Override - public Job startReadJob(final TransferStrategy transferStrategy) throws IOException { + public Ds3ClientHelpers.Job startReadJob(final TransferStrategy transferStrategy) throws IOException { return new ReadJobImpl(transferStrategy); } @Override - public Job startReadJobUsingStreamedBehavior(final String bucket, final Iterable objectsToRead) throws IOException { + public Ds3ClientHelpers.Job startReadJobUsingStreamedBehavior(final String bucket, final Iterable objectsToRead) throws IOException { return startReadJobUsingStreamedBehavior(bucket, objectsToRead, ReadJobOptions.create()); } @Override - public Job startReadJobUsingStreamedBehavior(final String bucket, final Iterable objectsToRead, final ReadJobOptions options) throws IOException { + public Ds3ClientHelpers.Job startReadJobUsingStreamedBehavior(final String bucket, final Iterable objects, final ReadJobOptions options) throws IOException { Preconditions.checkNotNull(options, "options may not be null."); - final List objects = Lists.newArrayList(objectsToRead); - final GetBulkJobSpectraS3Request getBulkJobSpectraS3Request = makeGetBulkJobSpectraS3Request(bucket, objects, options); getBulkJobSpectraS3Request.withChunkClientProcessingOrderGuarantee(JobChunkClientProcessingOrderGuarantee.IN_ORDER); @@ -281,16 +271,14 @@ public Job startReadJobUsingStreamedBehavior(final String bucket, final Iterable } @Override - public Job startReadJobUsingRandomAccessBehavior(final String bucket, final Iterable objectsToRead) throws IOException { + public Ds3ClientHelpers.Job startReadJobUsingRandomAccessBehavior(final String bucket, final Iterable objectsToRead) throws IOException { return startReadJobUsingRandomAccessBehavior(bucket, objectsToRead, ReadJobOptions.create()); } @Override - public Job startReadJobUsingRandomAccessBehavior(final String bucket, final Iterable objectsToRead, final ReadJobOptions options) throws IOException { + public Ds3ClientHelpers.Job startReadJobUsingRandomAccessBehavior(final String bucket, final Iterable objects, final ReadJobOptions options) throws IOException { Preconditions.checkNotNull(options, "options may not be null."); - final List objects = Lists.newArrayList(objectsToRead); - final GetBulkJobSpectraS3Request getBulkJobSpectraS3Request = makeGetBulkJobSpectraS3Request(bucket, objects, options); getBulkJobSpectraS3Request.withChunkClientProcessingOrderGuarantee(JobChunkClientProcessingOrderGuarantee.NONE); @@ -319,7 +307,7 @@ private Ds3ClientHelpers.Job innerStartReadAllJob(final String bucket, final Rea return this.startReadJob(bucket, makeBlobList(bucket), options); } - private final Iterable makeBlobList(final String bucket) throws IOException { + private Iterable makeBlobList(final String bucket) throws IOException { final Iterable contentsList = listObjects(bucket); return toDs3Iterable(contentsList, FolderNameFilter.filter()); @@ -362,8 +350,7 @@ public Ds3ClientHelpers.Job recoverWriteJob(final UUID jobId) throws IOException /** * Verifies that the specified job is active. If the job is not active, then a * JobRecoveryNotActiveException is thrown. - * @throws IOException - * @throws JobRecoveryNotActiveException + * @throws JobRecoveryNotActiveException This is thrown when the job is no longer active when a recovery is attempted */ private void innerVerifyJobActive(final UUID jobId) throws IOException, JobRecoveryNotActiveException { try { @@ -421,7 +408,7 @@ public Ds3ClientHelpers.Job recoverReadJob(final UUID jobId) throws IOException, final TransferStrategyBuilder transferStrategyBuilder = makeTransferStrategyBuilder() .withMasterObjectList(masterObjectList) - .withRangesForBlobs(PartialObjectHelpers.mapRangesToBlob(masterObjectList.getObjects(), ImmutableMultimap.of())); + .withRangesForBlobs(PartialObjectHelpers.mapRangesToBlob(masterObjectList.getObjects(), ImmutableMultimap.of())); return new ReadJobImpl(transferStrategyBuilder); } @@ -433,28 +420,28 @@ private MasterObjectList masterObjectListForGetJob(final UUID jobId) throws IOEx } @Override - public Job recoverReadJobsingStreamedBehavior(final UUID jobId) throws IOException, JobRecoveryException { + public Ds3ClientHelpers.Job recoverReadJobsingStreamedBehavior(final UUID jobId) throws IOException, JobRecoveryException { innerVerifyJobActive(jobId); final MasterObjectList masterObjectList = masterObjectListForGetJob(jobId); final TransferStrategyBuilder transferStrategyBuilder = makeTransferStrategyBuilder() .withMasterObjectList(masterObjectList) - .withRangesForBlobs(PartialObjectHelpers.mapRangesToBlob(masterObjectList.getObjects(), ImmutableMultimap.of())) + .withRangesForBlobs(PartialObjectHelpers.mapRangesToBlob(masterObjectList.getObjects(), ImmutableMultimap.of())) .usingStreamedTransferBehavior(); return new ReadJobImpl(transferStrategyBuilder); } @Override - public Job recoverReadJobUsingRandomAccessBehavior(final UUID jobId) throws IOException, JobRecoveryException { + public Ds3ClientHelpers.Job recoverReadJobUsingRandomAccessBehavior(final UUID jobId) throws IOException, JobRecoveryException { innerVerifyJobActive(jobId); final MasterObjectList masterObjectList = masterObjectListForGetJob(jobId); final TransferStrategyBuilder transferStrategyBuilder = makeTransferStrategyBuilder() .withMasterObjectList(masterObjectList) - .withRangesForBlobs(PartialObjectHelpers.mapRangesToBlob(masterObjectList.getObjects(), ImmutableMultimap.of())) + .withRangesForBlobs(PartialObjectHelpers.mapRangesToBlob(masterObjectList.getObjects(), ImmutableMultimap.of())) .usingRandomAccessTransferBehavior(); return new ReadJobImpl(transferStrategyBuilder); @@ -514,20 +501,12 @@ public Iterable listObjects(final String bucket, final String keyPrefi @Override public Iterable listObjects(final String bucket, final String keyPrefix, final String nextMarker, final int maxKeys, final int retries) { - return new LazyIterable<>(new GetBucketKeyLoaderFactory(client, bucket, keyPrefix, DEFAULT_DELIMITER, nextMarker, maxKeys, retries, GetBucketKeyLoaderFactory.contentsFunction)); + return new LazyIterable<>(new GetBucketKeyLoaderFactory<>(client, bucket, keyPrefix, DEFAULT_DELIMITER, nextMarker, maxKeys, retries, GetBucketKeyLoaderFactory.contentsFunction)); } @Override public Iterable listObjectsForDirectory(final Path directory) throws IOException { - final ImmutableList.Builder objects = ImmutableList.builder(); - Files.walkFileTree(directory, new SimpleFileVisitor() { - @Override - public FileVisitResult visitFile(final Path file, final BasicFileAttributes attrs) throws IOException { - objects.add(new Ds3Object(directory.relativize(file).toString().replace("\\", "/"), Files.size(file))); - return FileVisitResult.CONTINUE; - } - }); - return objects.build(); + return FileTreeWalker.INSTANCE.walk(directory); } @Override @@ -545,31 +524,26 @@ public Iterable remoteListDirectory(final String bucket, final St } public Iterable remoteListDirectory(final String bucket, final String keyPrefix, final String delimiter, final String nextMarker, final int maxKeys) throws IOException { - return new LazyIterable<>(new GetBucketKeyLoaderFactory(client, bucket, keyPrefix, delimiter, nextMarker, maxKeys, DEFAULT_LIST_OBJECTS_RETRIES, GetBucketKeyLoaderFactory.getFileSystemKeysFunction)); + return new LazyIterable<>(new GetBucketKeyLoaderFactory<>(client, bucket, keyPrefix, delimiter, nextMarker, maxKeys, DEFAULT_LIST_OBJECTS_RETRIES, GetBucketKeyLoaderFactory.getFileSystemKeysFunction)); + } + + @Override + public void deleteBucket(final String bucket) throws IOException { + DeleteBucket.INSTANCE.deleteBucket(this, bucket); } + @Override public Iterable addPrefixToDs3ObjectsList(final Iterable objectsList, final String prefix) { - final FluentIterable objectIterable = FluentIterable.from(objectsList); + final Stream objectIterable = StreamSupport.stream(objectsList.spliterator(), false); - return objectIterable.transform(new Function() { - @Nullable - @Override - public Ds3Object apply(@Nullable final Ds3Object object) { - return new Ds3Object( prefix + object.getName(), object.getSize()); - } - }); + return StreamWrapper.wrapStream(objectIterable.map(obj -> new Ds3Object(prefix + obj.getName(), obj.getSize()))); } + @Override public Iterable removePrefixFromDs3ObjectsList(final Iterable objectsList, final String prefix) { - final FluentIterable objectIterable = FluentIterable.from(objectsList); + final Stream objectIterable = StreamSupport.stream(objectsList.spliterator(), false); - return objectIterable.transform(new Function() { - @Nullable - @Override - public Ds3Object apply(@Nullable final Ds3Object object) { - return new Ds3Object(stripLeadingPath(object.getName(), prefix), object.getSize()); - } - }); + return StreamWrapper.wrapStream(objectIterable.map(obj -> new Ds3Object(stripLeadingPath(obj.getName(), prefix), obj.getSize()))); } /** @@ -615,6 +589,11 @@ public void createFolder(final String bucketName, final String folderName) throw client.putObject(folderRequest); } + @Override + public Ds3Client getClient() { + return client; + } + /** * Ensures that a folder names ends with a trailing forward slash. This prevents the * accidental creation of zero-length files when attempting to create a folder. diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java index ab41b2127..4d7ee0386 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java @@ -19,7 +19,6 @@ import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableMultimap; -import com.spectralogic.ds3client.Ds3Client; import com.spectralogic.ds3client.models.BulkObject; import com.spectralogic.ds3client.models.JobNode; import com.spectralogic.ds3client.models.Objects; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/GetSequentialBlobStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/GetSequentialBlobStrategy.java index a8f6ff9c3..9501f2220 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/GetSequentialBlobStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/GetSequentialBlobStrategy.java @@ -25,8 +25,6 @@ import com.spectralogic.ds3client.models.BulkObject; import com.spectralogic.ds3client.models.MasterObjectList; import com.spectralogic.ds3client.models.Objects; -import org.slf4j.LoggerFactory; -import org.slf4j.Logger; import javax.annotation.Nullable; import java.io.IOException; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers.java index 89f6776ff..6296dd04a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers.java @@ -78,10 +78,9 @@ static ImmutableList dedupRanges(final ImmutableList rangesForBlob Range currentRange = null; Range nextRange; - final UnmodifiableIterator rangeIterator = sortedRanges.iterator(); - while (rangeIterator.hasNext()) { - nextRange = rangeIterator.next(); + for (final Range sortedRange : sortedRanges) { + nextRange = sortedRange; if (currentRange == null) { // This will only be called on the first iteration of the loop currentRange = nextRange; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java index 9a34369f4..e6f5d6565 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java @@ -21,11 +21,15 @@ import com.spectralogic.ds3client.models.Priority; import com.spectralogic.ds3client.models.JobChunkClientProcessingOrderGuarantee; import com.spectralogic.ds3client.models.WriteOptimization; +import com.spectralogic.ds3client.utils.collections.StreamWrapper; + +import java.util.stream.Stream; +import java.util.stream.StreamSupport; @JacksonXmlRootElement(localName = "Objects") public class Ds3ObjectList { @JsonProperty("Object") - private Iterable objects; + private Stream objects; @JacksonXmlProperty(isAttribute = true, namespace = "", localName = "Priority") private Priority priority; @@ -40,15 +44,15 @@ public Ds3ObjectList() { } public Ds3ObjectList(final Iterable objects) { - this.objects = objects; + this.objects = StreamSupport.stream(objects.spliterator(), false); } public Iterable getObjects() { - return objects; + return StreamWrapper.wrapStream(this.objects); } public void setObjects(final Iterable objects) { - this.objects = objects; + this.objects = StreamSupport.stream(objects.spliterator(), false); } public Priority getPriority() { diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlOutput.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlOutput.java index 346973197..ab2f78f90 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlOutput.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlOutput.java @@ -22,6 +22,7 @@ import com.fasterxml.jackson.databind.ser.impl.SimpleFilterProvider; import com.fasterxml.jackson.dataformat.xml.JacksonXmlModule; import com.fasterxml.jackson.dataformat.xml.XmlMapper; +import com.fasterxml.jackson.datatype.jdk8.Jdk8Module; import com.spectralogic.ds3client.models.bulk.Ds3ObjectList; import java.io.IOException; @@ -42,6 +43,8 @@ public final class XmlOutput { module = new JacksonXmlModule(); module.setDefaultUseWrapper(false); mapper = new XmlMapper(module); + + mapper.registerModule(new Jdk8Module()); final SimpleFilterProvider filterProvider = new SimpleFilterProvider().setFailOnUnknownId(false); mapper.setFilterProvider(filterProvider); if (isProductionBuild()) { diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/JobUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/JobUtils.java index 40655806a..3c3d6f19b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/JobUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/JobUtils.java @@ -24,7 +24,6 @@ import com.spectralogic.ds3client.models.*; import java.io.IOException; -import java.security.SignatureException; import java.util.ArrayList; import java.util.List; import java.util.Set; diff --git a/ds3-interfaces/build.gradle b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/StreamWrapper.java similarity index 54% rename from ds3-interfaces/build.gradle rename to ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/StreamWrapper.java index ac8ff43ef..8fdb7adf1 100644 --- a/ds3-interfaces/build.gradle +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/StreamWrapper.java @@ -13,30 +13,31 @@ * **************************************************************************** */ -buildscript { - repositories { jcenter() } - dependencies { - classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3' - } -} +package com.spectralogic.ds3client.utils.collections; -apply plugin: 'com.github.johnrengelman.shadow' +import org.jetbrains.annotations.NotNull; -dependencies { - compile 'commons-io:commons-io:2.4' -} +import java.util.Iterator; +import java.util.stream.Stream; + +/** + * Wraps a Stream as an Iterable + */ +public class StreamWrapper implements Iterable { -shadowJar { - relocate 'org.apache', 'ds3fatjar.org.apache' - dependencies { - exclude(dependency('org.hamcrest:hamcrest-library:1.3')) - exclude(dependency('org.mockito:mockito-core:1.10.19')) - exclude(dependency('junit:junit:4.12')) - exclude(dependency('org.slf4j:slf4j-api:1.7.22')) - exclude(dependency('org.slf4j:slf4j-simple:1.7.22')) + private final Stream stream; + + public static Iterable wrapStream(final Stream stream) { + return new StreamWrapper<>(stream); } -} -artifacts { - archives shadowJar + private StreamWrapper(final Stream stream) { + this.stream = stream; + } + + @NotNull + @Override + public Iterator iterator() { + return stream.iterator(); + } } diff --git a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/DeleteBucket.kt b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/DeleteBucket.kt new file mode 100644 index 000000000..8d03ff69e --- /dev/null +++ b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/DeleteBucket.kt @@ -0,0 +1,38 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.helpers + +import com.spectralogic.ds3client.commands.DeleteBucketRequest +import com.spectralogic.ds3client.commands.DeleteObjectsRequest +import com.spectralogic.ds3client.utils.collections.asIterable +import com.spectralogic.ds3client.utils.collections.take + +object DeleteBucket { + fun deleteBucket(helpers: Ds3ClientHelpers, bucket: String) { + deleteBucketContents(helpers, bucket) + helpers.client.deleteBucket(DeleteBucketRequest(bucket)) + } + + fun deleteBucketContents(helpers: Ds3ClientHelpers, bucket: String) { + val client = helpers.client + val objIterator = helpers.listObjects(bucket).iterator() + + while(objIterator.hasNext()) { + val subIterator = objIterator.take(1_000) + client.deleteObjects(DeleteObjectsRequest(bucket, subIterator.asIterable())) + } + } +} \ No newline at end of file diff --git a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker.kt b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker.kt new file mode 100644 index 000000000..18b1d4270 --- /dev/null +++ b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker.kt @@ -0,0 +1,35 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.helpers + +import com.spectralogic.ds3client.models.bulk.Ds3Object +import com.spectralogic.ds3client.utils.collections.StreamWrapper +import java.nio.file.Files +import java.nio.file.Path + +object FileTreeWalker { + /** + * Walks a file system starting at {@param startDir} and returns a Lazy Iterable with all the + * files represented as Ds3Objects. + */ + fun walk(startDir: Path) : Iterable { + return StreamWrapper.wrapStream(Files.walk(startDir).map { + Ds3Object(startDir.relativize(it).toString().replace("\\", "/"), Files.size(it)) + }.filter { + !it.name.isNullOrEmpty() + }) + } +} diff --git a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/IterableExtensions.kt b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/IterableExtensions.kt new file mode 100644 index 000000000..223dc15d7 --- /dev/null +++ b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/IterableExtensions.kt @@ -0,0 +1,24 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.utils.collections + +fun Iterator.asIterable(): Iterable { + return IterableWrapper(this) +} + +private class IterableWrapper constructor(private val iterator: Iterator): Iterable { + override fun iterator(): Iterator = iterator +} diff --git a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator.kt b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator.kt new file mode 100644 index 000000000..5b570c89e --- /dev/null +++ b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator.kt @@ -0,0 +1,43 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.utils.collections + +class WindowedIterator constructor(private val iterator: Iterator, private val windowSize: Int) : Iterator by iterator { + + init { + if (windowSize <= 0) throw IllegalArgumentException("windowSize must be larger than 0") + } + + private var count = 0 + + override fun next(): T { + if (!hasNext()) throw NoSuchElementException("There are no new items to return") + + count++ + return iterator.next() + } + + override fun hasNext(): Boolean { + return if (count >= windowSize) { + false + } else { + iterator.hasNext() + } + } +} + +fun Iterator.take(n: Int): Iterator = WindowedIterator(this, n) + diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/ConnectionFixture.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/ConnectionFixture.java index 389a30d3f..6f1dfc6c2 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/ConnectionFixture.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/ConnectionFixture.java @@ -18,7 +18,7 @@ import com.spectralogic.ds3client.models.common.Credentials; import com.spectralogic.ds3client.networking.ConnectionDetails; -public class ConnectionFixture { +public final class ConnectionFixture { public static ConnectionDetails getConnection() { return getConnection(8080); diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java index 93b9413fd..8eba5e4ef 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java @@ -22,7 +22,6 @@ import com.spectralogic.ds3client.commands.*; import com.spectralogic.ds3client.commands.spectrads3.*; import com.spectralogic.ds3client.exceptions.ContentLengthNotMatchException; -import com.spectralogic.ds3client.exceptions.FolderNameMissingTrailingForwardSlash; import com.spectralogic.ds3client.models.*; import com.spectralogic.ds3client.models.Objects; import com.spectralogic.ds3client.models.bulk.Ds3Object; @@ -50,6 +49,7 @@ import static org.hamcrest.CoreMatchers.*; import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.greaterThanOrEqualTo; public class Ds3Client_Test { private static final UUID MASTER_OBJECT_LIST_JOB_ID = UUID.fromString("1a85e743-ec8f-4789-afec-97e587a26936"); @@ -504,24 +504,12 @@ public void getObjectWithMetaData() throws IOException { @Test public void createPutJobSpectraS3() throws IOException { - this.runBulkTest(BulkCommand.PUT, new BulkTestDriver() { - @Override - public MasterObjectList performRestCall(final Ds3Client client, final String bucket, final List objects) - throws IOException { - return client.putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(bucket, objects)).getMasterObjectList(); - } - }); + this.runBulkTest(BulkCommand.PUT, (client, bucket, objects) -> client.putBulkJobSpectraS3(new PutBulkJobSpectraS3Request(bucket, objects)).getMasterObjectList()); } @Test public void createGetJobSpectraS3() throws IOException { - this.runBulkTest(BulkCommand.GET, new BulkTestDriver() { - @Override - public MasterObjectList performRestCall(final Ds3Client client, final String bucket, final List objects) - throws IOException { - return client.getBulkJobSpectraS3(new GetBulkJobSpectraS3Request(bucket, objects)).getMasterObjectList(); - } - }); + this.runBulkTest(BulkCommand.GET, (client, bucket, objects) -> client.getBulkJobSpectraS3(new GetBulkJobSpectraS3Request(bucket, objects)).getMasterObjectList()); } private interface BulkTestDriver { @@ -529,7 +517,7 @@ MasterObjectList performRestCall(final Ds3Client client, final String bucket, fi throws IOException; } - public void runBulkTest(final BulkCommand command, final BulkTestDriver driver) throws IOException { + private void runBulkTest(final BulkCommand command, final Ds3Client_Test.BulkTestDriver driver) throws IOException { final List objects = Arrays.asList( new Ds3Object("file1", 256), new Ds3Object("file2", 1202), @@ -926,7 +914,7 @@ public void testGettingDefaultUserAgent() { final String userAgent = newClient.getConnectionDetails().getUserAgent(); final String[] userAgentFields = userAgent.split("-"); - assertThat(userAgentFields.length >= 2, is(true)); + assertThat(userAgentFields.length, is(greaterThanOrEqualTo(2))); // look for a pattern like 3.4.0, but leave open the possibility of a string like 3.4.0-SNAPSHOT final Pattern matchPattern = Pattern.compile("\\d+\\.\\d+\\.\\d+"); diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockNetwork.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockNetwork.java index 35e73bba3..ec6e384da 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockNetwork.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockNetwork.java @@ -92,7 +92,7 @@ public MockNetwork returning( public MockNetwork returning( final int statusCode, final String responseContent) { - return returning(statusCode, responseContent, new HashMap()); + return returning(statusCode, responseContent, new HashMap<>()); } public Ds3Client asClient() { diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/SeekableByteChannelInputStream_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/SeekableByteChannelInputStream_Test.java index 1eadaa633..9ed9e4e43 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/SeekableByteChannelInputStream_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/SeekableByteChannelInputStream_Test.java @@ -100,7 +100,7 @@ private void readAndVerify(final InputStream inputStream, final byte[] expectedB final byte[] resultBuffer = new byte[expectedBytes.length]; final byte[] buffer = new byte[10]; int position = 0; - int bytesRead = 0; + int bytesRead; while (0 < (bytesRead = inputStream.read(buffer, 5, 5))) { for (int i = 0; i < bytesRead; i++) { resultBuffer[position] = buffer[5 + i]; diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java index 28071aec8..eafa594f0 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java @@ -47,7 +47,7 @@ public void getRequestId_WithoutRequestId_Test() { @Test public void getRequestId_EmptyHeaders_Test() { - final String result = ResponseParserUtils.getRequestId(new MockedHeaders(ImmutableMap.of())); + final String result = ResponseParserUtils.getRequestId(new MockedHeaders(ImmutableMap.of())); assertThat(result, is(nullValue())); } } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers_Test.java index abe990803..3181f7302 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers_Test.java @@ -109,7 +109,7 @@ public SeekableByteChannel buildChannel(final String key) throws IOException { public void testReadObjectsWithFailedGet() throws IOException, ParseException { final Ds3Client ds3Client = mock(Ds3Client.class); - Mockito.when(ds3Client.newForNode(Matchers.any())).thenReturn(ds3Client); + Mockito.when(ds3Client.newForNode(Matchers.any())).thenReturn(ds3Client); final GetBulkJobSpectraS3Response buildBulkGetResponse = buildBulkGetResponse(); Mockito.when(ds3Client.getBulkJobSpectraS3(hasChunkOrdering(JobChunkClientProcessingOrderGuarantee.NONE))).thenReturn(buildBulkGetResponse); @@ -204,7 +204,7 @@ public void testWriteObjectsWithFailedPut() throws IOException, ParseException { final ConnectionDetails details = mock(ConnectionDetails.class); Mockito.when(details.getEndpoint()).thenReturn("localhost"); - Mockito.when(ds3Client.newForNode(Matchers.any())).thenReturn(ds3Client); + Mockito.when(ds3Client.newForNode(Matchers.any())).thenReturn(ds3Client); Mockito.when(ds3Client.getConnectionDetails()).thenReturn(details); final PutBulkJobSpectraS3Response buildBulkPutResponse = buildBulkPutResponse(); @@ -424,7 +424,7 @@ private static Ds3Client buildDs3ClientForBulk() throws IOException, .thenReturn(jobChunksResponse2) .thenReturn(jobChunksResponse3); - Mockito.when(ds3Client.newForNode(Matchers.any())).thenReturn(ds3Client); + Mockito.when(ds3Client.newForNode(Matchers.any())).thenReturn(ds3Client); Mockito.when(ds3Client.getConnectionDetails()).thenReturn(details); return ds3Client; } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/RequestMatchers.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/RequestMatchers.java index 695666d4c..2e449cd00 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/RequestMatchers.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/RequestMatchers.java @@ -34,7 +34,7 @@ import static org.mockito.Matchers.argThat; -public class RequestMatchers { +public final class RequestMatchers { public static GetBulkJobSpectraS3Request hasChunkOrdering(final JobChunkClientProcessingOrderGuarantee chunkOrdering) { return argThat(new TypeSafeMatcher() { @Override @@ -225,7 +225,7 @@ public boolean matches(final Object argument) { && (marker == null ? null == getBucketRequest.getMarker() : marker.equals(getBucketRequest.getMarker())); - + } }); } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectPutter.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectPutter.java index 84e22db71..eb242aae6 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectPutter.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectPutter.java @@ -27,7 +27,7 @@ public StreamObjectPutter(final byte[] buf) { } @Override - public InputStream buildInputStream(String key) { + public InputStream buildInputStream(final String key) { return new ByteArrayInputStream(buf); } } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java index 229b6e4f1..1dfbbdbde 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java @@ -167,21 +167,21 @@ public void escapeSpacesInQueryParam() throws MalformedURLException { @Test public void getPortBack() throws MalformedURLException { final URL url = new URL("http://localhost:8080/path"); - int port = NetUtils.getPort(url); + final int port = NetUtils.getPort(url); assertTrue(port == 8080); } @Test public void getHttpsDefaultPort() throws MalformedURLException { final URL url = new URL("https://localhost/path"); - int port = NetUtils.getPort(url); + final int port = NetUtils.getPort(url); assertTrue(port == 443); } @Test public void getHttpDefaultPort() throws MalformedURLException { final URL url = new URL("http://localhost/path"); - int port = NetUtils.getPort(url); + final int port = NetUtils.getPort(url); assertTrue(port == 80); } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Signature_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Signature_Test.java index 3052ef645..6e3ff31d0 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Signature_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Signature_Test.java @@ -17,7 +17,6 @@ import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableMultimap; -import com.google.common.collect.Multimap; import com.spectralogic.ds3client.networking.HttpVerb; import com.spectralogic.ds3client.models.common.Credentials; import com.spectralogic.ds3client.models.common.SignatureDetails; @@ -32,7 +31,6 @@ public class Signature_Test { /** * Example taken from the AWS S3 documentation site: http://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html#ConstructingTheAuthenticationHeader - * @throws SignatureException */ @Test public void getSignature() throws SignatureException { @@ -47,7 +45,6 @@ public void getSignature() throws SignatureException { /** * Example taken from the AWS S3 documentation site: http://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html#ConstructingTheAuthenticationHeader - * @throws SignatureException */ @Test public void putSignature() throws SignatureException { diff --git a/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker_Test.kt b/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker_Test.kt new file mode 100644 index 000000000..ac1d0d7c6 --- /dev/null +++ b/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker_Test.kt @@ -0,0 +1,50 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.helpers + +import com.google.common.collect.ImmutableList +import com.spectralogic.ds3client.models.bulk.Ds3Object +import org.junit.Rule +import org.junit.Test +import org.junit.rules.TemporaryFolder + +import org.hamcrest.CoreMatchers.* +import org.hamcrest.MatcherAssert.assertThat + +class FileTreeWalker_Test { + + @get:Rule + val tempDir = TemporaryFolder() + + @Test + fun basicFileList() { + tempDir.newFile("bar") + tempDir.newFile("baz") + + val walk = FileTreeWalker.walk(tempDir.root.toPath()) + + val listBuilder = ImmutableList.Builder() + + walk.forEach { + listBuilder.add(it) + } + + val fileList = listBuilder.build() + + assertThat(fileList.size, `is`(2)) + + } +} \ No newline at end of file diff --git a/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator_Test.kt b/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator_Test.kt new file mode 100644 index 000000000..3a0951ac0 --- /dev/null +++ b/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator_Test.kt @@ -0,0 +1,76 @@ +/* + * ****************************************************************************** + * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + +package com.spectralogic.ds3client.utils.collections + +import com.google.common.collect.Lists +import org.junit.Test + +import org.hamcrest.CoreMatchers.* +import org.hamcrest.MatcherAssert.assertThat + +class WindowedIterator_Test { + @Test + fun iterateWholeCollection() { + val list = Lists.newArrayList("value", "hi", "anothervalue") + + val iterator = list.iterator().take(Int.MAX_VALUE) + + var count = 0 + iterator.forEach { + count++ + } + + assertThat(count, `is`(3)) + } + + @Test + fun iteratePart() { + val list = Lists.newArrayList("value", "hi", "anothervalue") + + val iterator = list.iterator().take(1) + + var count = 0 + iterator.forEach { + count++ + } + + assertThat(count, `is`(1)) + } + + @Test + fun iterateAfterFirstIteration() { + val list = Lists.newArrayList("value", "hi", "anothervalue") + + val parentIterator = list.iterator() + val firstIterator = parentIterator.take(1) + + var firstCount = 0 + firstIterator.forEach { + firstCount++ + } + + assertThat(firstCount, `is`(1)) + + val secondIterator = parentIterator.take(Int.MAX_VALUE) + + var secondCount = 0 + secondIterator.forEach { + secondCount++ + } + + assertThat(secondCount, `is`(2)) + } +} \ No newline at end of file diff --git a/ds3-utils/build.gradle b/ds3-utils/build.gradle index 6b89d6230..f8f974efa 100644 --- a/ds3-utils/build.gradle +++ b/ds3-utils/build.gradle @@ -14,34 +14,9 @@ * **************************************************************************** */ -buildscript { - repositories { jcenter() } - dependencies { - classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3' - } -} - -apply plugin: 'com.github.johnrengelman.shadow' - -shadowJar { - relocate 'org.apache', 'ds3utilfatjar.org.apache' - relocate 'com.google', 'ds3utilfatjar.com.google' - - dependencies { - exclude(dependency('org.hamcrest:hamcrest-library:1.3')) - exclude(dependency('org.mockito:mockito-core:1.10.19')) - exclude(dependency('junit:junit:4.12')) - exclude(dependency('org.slf4j:slf4j-api:1.7.22')) - exclude(dependency('org.slf4j:slf4j-simple:1.7.22')) - } -} - -artifacts { - archives shadowJar -} - dependencies { - compile 'commons-codec:commons-codec:1.10' - compile 'com.google.guava:guava:20.0' + compile "commons-codec:commons-codec:$commonscodecVersion" + compile "commons-io:commons-io:$commonsioVersion" + compile "com.google.guava:guava:$guavaVersion" } diff --git a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java similarity index 100% rename from ds3-interfaces/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java rename to ds3-utils/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java diff --git a/ds3-interfaces/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java b/ds3-utils/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java similarity index 100% rename from ds3-interfaces/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java rename to ds3-utils/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 000000000..8bee35caa --- /dev/null +++ b/gradle.properties @@ -0,0 +1,11 @@ +commonscodecVersion=1.10 +commonsioVersion=2.4 +commonslangVersion=3.6 +guavaVersion=23.0 +hamcrestVersion=1.3 +httpclientVersion=4.5.3 +jacksonVersion=2.9.0 +jnaVersion=4.2.2 +junitVersion=4.12 +mockitoVersion=1.10.+ +slf4jVersion=1.7.25 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 7b61d71aa610f3b12c0d96a3d392c2c47f5a6a78..1454129915e967f2239442034b31dae2c3787c80 100644 GIT binary patch delta 6637 zcmZ8m2RxPk_rI=@k-hicD=RW9E8_|m5v~;_!lle|@kLg|lf6R7DqCju-XWVPBRdi$ z{!jPb|F5s_=k3HApNOFGyU2 zcoMbv#wwW7CVz9^bH{=F2lSc)4-M|;$J~F2qwf_if|v2p6!2PX5v`}!Ro(+&Wxfuz zbOmgfIZ@IfM8#9v&uyN6i`0EQN%R~5*M zy-5wKE6il>bQ4tX9PL<{iJbXLooCH2SG&z<(D;zd&~0C8&pgh0n<=HXAEFd$3cHNo zW;jRQu`&NCP~Y|F+EvOLF=oZdVSa&6rZAzAuW z0bcb%a=CRzqHlA(r6>?qdwQAzJ0Y7-13wQ8RNxC;>=VuM5@-}R_JHo&cbCSBk1gzz z&ys{3Isig++mZn`N-8y8wYCH?Eb$EPs}zizmQ!%jy;0fae7&sf*d>k-^+IH{NN7j( zM7k}iE9#_L_(g~xS;X!d%NaDkmO#)wd zJ z{h`yvDMrylrxo8@D^cMxKb=^T#3RCL)qSOPP?h`Lqa>}ZhZ0;?-QgTCr^gH@VUd;c z+)xV(PG(htDWrRRHbI}i=0Q5MLQ4>{R|z#w(^9L%<`DdgGVDcPbT4I6YZbCK{|>jE zsB?8ff7qo7+Xh+-_Pi3ZV_CQ4VjTn(zD3ZpqC2sACj{rKra3j@6EPtf1j51sfp9_q zgLYa#k(m%BX6J0<;gN1eWKHwY=QN|TUW(}%naPb(>s{Ms!t~BgYm$FrgCT)D!F1sw z3^UwYH*T8_bXQaa%uYO89+rnuuPUdF>7`X}TW*HZ66tN`i8_9mXiTlvim8O9R=cER ztjF^Go}W=I8rOJ4yf&b4y7Bw$$Jvh3-m&YGuTl_CRCpu-)jJz&2J!LIAC6OxH7<+y zt<=3~sdM&kYi9K}ZgahVB#H|=dVp(l z5*@hEvD5QqA#s3x?I({lI(oi5L(z&yexk4g!fdt?bgGS zs=$(?R20WpX6)HMWr2U3a)RsuWT@#YBB8(l^@ejofJ8r z!Y-eQrMh;nsJyy%R}Zc;rDSh)vwZD zQwuvb^V~0&iPgSA2B9D7>id|l}tq^k=S2v5Y)>YPc`XXL$#xZdB z^(q3fHgHr?z0994vhW@6t7exT3nOz_2isQ_d1ZHts~3sKzSrwb*RY^kwe2_WuWJTQ zH|@2do?hr=iy+NlTpWwm2-NRQPc9R*Uw*zZ@Nmf6gv;K`>Ra)#&&&p!VdO77>1fU3 zE2(@J(`&?T&k6P=uSXvvMw364w|pU*(c!n$e2JX*xT~m;&ZeFBWG1#%L6}J8Gs4~Q zO+14rcYee06D|IAc8WD8%Z}psgyOWRE1VQ-UMT9y1{;C(N$%uYtr-P-Sl$?7R!~^R z#z*VQ;7x*)DIUv4M;X8|yS~tVVZhUB=dw$(d;0ok-Oh?WgO{_2Iic_aHN>;#l9DS| zqPM(aVn|nV`R2CUdR~<9+&AIkgmH!@08~Om3S0c?4Vyo|G+aDt{vzmy5R0oVd+9N} z_W(6iW+=_KoZI_~EVe`$sBWBRR3O(O@RgKO5~VbJR2_3Dms~4hK8@&V991}dzSVzJ z5oL)3|Lvk7#MvDa8*zYNGyS>HQ>y8z&d4M+BT9MsLrArZ<`xd|7l#S)iU^;jNw_=z ztJm7@jkVn>YcI;39G#}we#Ajj`xNUdX8lmJ{)W^gl_6}~6{9@`-|lS{Go-~|?zzMW z?~uS1v6NfWtrsB!Os3~6{F;*ukD3~*pe{o8PRmhSt4R$uGntRpYe{(@W+F-s|4x1xL^mH@$fvB>y`d`7a);WVNSAjd?$QZ6X0-zbw7Qx3?K*F|N`e!^;mtIrGq(+bI9K_c`8l0j z9=JSz>+O_~5aGcon=YIr<5Ksq{9`It#sAnm{rtfGtM&>w*6$1hI=WPPXmTDjB@01 zh=AM9(ooxW)8yxV7%)sqULy4#p+QciQ8wnu3HyLLUy?m9v^(_& z71vp9_j9}lX#n>`IF}8vxo$5-QPq}HuDZd4v;ae3Wp5nNt)vmMXE;pi9TK%JH_X59-iU-9{BIHp56+B$@>bf z551xKbw~c|JAdi)NM6yz z_$Aq5LUwd{QB7?1Z`H%fc&)wJNmF++(HyvB|LD)|6Trlj&Cz|ivo)*YVHfd$Q$KQc5{nJ6>tiw_Y1%rk22aF zax)@W5>M)LT6150`(B-aViT-&E8~fOcjp+Ui?IHgXhpG}(=z(aN=RU_K*7HByK^Rw zP)mD(nK){$-&>L{Wbd2sRhIZkPYqsJsWx0MCtMM4l2li)`besXD(}@P zuu`1-tUR72pww7#a*C=KPh{iuvPoVP?vD8Qc_o76p#GvWV&L$sZ8FG~v8Z+Y%o;zV zLfBh7x7b^^_)O2~z;(2C4Z*>)U9z}PL2H3nKjvhes#)w?NT@WL&U$>ex+I!)rQT1A zH^$eq=I||@YItvM&5e80-&aK5JCo2V8rzWg2svMawo#N)wi2Myy6_L-kitt{WpGJP z%7mMEhi%{DUpD!l_SHb&6F7>0lAOVh?xa);SV*b%92u!4+zX=Gf6Y~F%N(NjeW49u z9!;?jxdVS6T4WFr{8h`?xR5{ISeQ2Ei?L!4?Qv@Tz=O!w_nqE{eytvKBCJ%0exz{T zco#}RU&-5;npHN3(ta=_;HvNysW4%Cf$Lre-=Jh=ScI#FenCN$Di^XA)~ z5w1Wto^1OvPO5HOyPIwU(VdA0Y?je3Q+8vUB_&hl^h6p5B9}XUj2S6K)^1Fub(FBH z?MH@%*4#nPkUFEDJ*^S7{naP>Xh7yxapNP=s;}lVhV^tcL*osrjFmM{pyQt=L_9N0 zfW!IQgTXFbA}U)0o$(2EH?u{92g49^7J&M%{RRJ`rK~e~?v~VH?iP_cdDrX`smSfs zva0;7Z*_bhxk<&}zbrizLge%z+CGlSuKx6*gf%O%e1E=#Qm#X(Advw_b(wog-7gPp z*?%6@u>Zr*EI>)sMyb0f0JuI6_l)Y6*TW-~;^6is=HHbrP>u$U979)DwSJo!zK@V= z3XnRY8eHm=d-`_q+HJ}%S-BsuG}^}`VH|8Ud?K``vN_S!4M8=FPZ@?4_G}vBO~+sF z5&JW^avQNZpn~3~3nEk>#2D=0J2*r&>@+JF=sZiTt?@D>&eDfa`uR|lCE^;yzwW5t zV+(qq&=m1w=}EAW{+hRn@>P_`HQmIWUy2zq@O-?b1m<_#^9dbdEh~DbvmKdpC$*_6 zespC&?vD&`cDOb17*sE+O5>~3vh(q>|MH<7`n)j|SdBVVpOqRtzJiA!T$s_bG&@iv zg@^dDx6M&D?GPMx(IYt?qv$Tom=^gS4`j#4iHWn3ZMm)I`N(&-$;(UkE^ghmF%`OV zA%fBCWfJnjt_Uk!ecNxB(pZt$#Py2^dtL1k=OJ7tO!y}9?6(;U(>5Xb9i-gjS3f_< zrF1Ob&^$sVv9Oc7vAlI@)sL!B3e>w6^hrd+Hz@WhPxtsI??-+|YIHd~3_ke$Z{uY6 z%x=b)X+X27d~PlhbS{4)N}kKN%8QlXlk0phVN%y++~aNZU`pTgLwLydStD5zEpiE2 zjj@ifihZ@|Wwj~l_QZ!HxKSs*hL59;-tc`lIT7%~K@Apn#eDK1*ixKJN%ac~JVl=1 z`AMvd-z?`RnTD(XP|mgJu}ktrMbusw>0Jo=ys>L87x!tB)*p9c*G+EF^VKq+i@k|! zzh>IHe`y(iq*Qusm=&+`pqR}Ybyk8Md$oB@`25i52~OU@2i~%IV`+!P>)bc(E0Q!3Wv|VXPNH)4pU~FT7f5pL61_gC7pkiTibr-DDGr% zJF9d8JInWlH9ZKv)KIlLPOz-s0w~Xdr?rz9{a_C?c!N~C3#G)hC&kO@U!^I%8$^V? z$TUh(2{C&l@w!#oiG}IWG0O5r>yg#@@5wPe@wqH;XweH^5`RA@_1#_Xy4!nr=sJ2l zw0E(0$9!Hsde%Z5bd^SZNBF~iTD87I_2J<qzV(t( ze6)Asif)n%>Z^u9ky?eswfiFU#fc?arUL0pg2|*nU=A(d_J*Wl!0|P9aK!JvhJnwd#o=P8w+_2lwFYmlV%7S% z7GilTacqPb+|8m>EN`-A2TR#Bu;HRTPII;x%Ey5~@^B##IbhF|6`%kvRH%7$W4-IQ zTfmBJR<2>G_;NUw`u$iQ>x@D`J{88CSI!tVq{x?0>{E(I!&rTUsY4hFAZvx;vHCOW z09LJ6xbVR|Um%?D8Fi%w%NFzu{EY*pf&87o0d=iX{~N&p-&^I;)&QwCF$`hfCW9d| z+LSOvX(tnK+(r+4>g2;PNV=GyCIpxPOBV~rpP2ud!;ymty9y$tL92h4`~~bJh7$-M zxybPc{AW`0cTn>e3W1~&{r}hoSn8regU=tse}k9k{~t_t{!juf?KEgvyUFboBv^hF z7aZYkjAqbiQFRpW7UQrNy31h{&lL<;L2L7f4{JF@0mz|iH5IkT{VFh!xDF}gp z+Wxh;Ww2lZ;8HiHHUNt*W}F*n2i}Tb{JR7B4kjq24v^K(1*kAG0M9!xx^0gfh1b9^ zFoDN|?_ZiB5M~$%mge}Alsmrt3vr-}N<+Sio{ckkC85#_p zbRf!_8d&Sa26v&235sihea4BlxEwNU#RkfP<2nd8c>P@z_JCWD1jiq@{w%Pr(2E>< z$J|`O&+Q&ebD#`+Aojf!5YUf_gg4)kku|tUCK3ol;T%x#9tdOvSOzX}{4u-6 zP5Mm}JkC0xZHaThC1;?_kp)m3<;LXmc|Q}>+Xc-d^CJJBrN2$+zcHV51;GM;Bjeo1 z1by=e;Pl`Iiu$P0)-|dLe<*>Cq!-M^c{fu$(ZEFqe1Lz56AiW^S02p)-4wj=-y*-{ ziv?4O{I?6Jj?k@q1uZ-V1EF|se>_jnLOH|yXzh~Dx2m;4?Ra2A)i?*d7l;NHy7B@R zeb_8h4l+UMg3)~aK>gH09Bv5f7SeQ!Z6wAkeU_pTV z9UZ`i?HDXhbY%k|cm@Q^o&$@wIg_ zO+;(t?`6RFFE+vi6;DC)JVv-Myuo26D04c<;|54aSTQ{P0Vb$>CYl#BAcWyHg1pjf zkjDl58o=~3b8nZV7htNoz~;<%&O`Gm0QHg!_&kI?tI_*0gV*JPX@ zgJnqqrcVBx@ReqO?UCZ2^21nu3}%9~6-XM?L<^FiwcP^W0TA%b3}HVfxY!1;v~vEh nKnTGGR-pi$zbOS(b2qy%=QOMw-X22mO% z1^kv>{y#t7bLPx*?mYLocV_O)Iq&=}#&65Vr+lP@Pe2O-k&uAM{4Og-Q*x1<_G3rS zccP_q=$L-FZn@%t{*jJ-F{A=^0&L$0!}WWD*uLtL0V(OF(~#_`}PJj6IO!`MQELu^V!V3JecJ)e>`K$-Y1c+C-rBIZEYkedFk0 zU({9hBRV!?R`CO|^>`5%P%9R!M>cq_OYBX#Sy>`Z4tMcyGetUFiLRPuw=&^>o+3V0 z5#449?nO0Qn32~x+>fp+cbKKTca+3-cqnmC)Cg@BGHR}Ijc@e$QPVnWhG-Nijc)6OUB{o@ zq1$-+YWqpoGe-HTuhRM%?d4yoeS$~+sEfg_83j==AKX2b`PeheH zAc-8<5_C?si;4-XeEG-ASW>!rGbD2#5!@YhkZnt*lO`o}&nJ;_vwU%lvQdvk_)32> zkAkv{F}i0Q#-n#&QmlT1+0;w;<$h%0j~|SoLzQDoMMbo*OBH@5t*EH9VbfO2GEa+v zM4jwb)boR^kVO3)xhlkcsYt$Nc0PNy%iDpeBqPo zCVoaC@DsWl7r4~gxX|^A^glYC&KH`wPv3Nvt|poQS0Ye>i)UrSiziNqwE^ZtGq}MB z`A9If_P!lX!x=AtKvPU05C^9ASP=qd_9kv_X*#5SwB!CK>DBK=AVeJW7x~cTXcP(b z>O7idt~@%*xI&;>-uweP;_+phEn6!Y5%Mm_k;bx5EDqneZJ6IXjELJnzgs(uKZ(Bh z(Qzf}Ps=-TmANHrx8FBMxDTc#M_EULmb8tho8}SC8;Cx{{!rxf@e_~~G8XatM!Idg z?ol91dVGfnQSgg5g!l=Y0v9&KGv+Iw@6G7qZy?=Vy`GF5<+7ag+=iX#b&x}*tc=CV z7_C42xqzwm*pF;69l`E?oo#YkLK1#o+hCgt_;1_u7dMl*Z4XM`3^MIYw`9zQOSYJ^ zhY1pAo>0iS`yt!3x2_YN&>JB>MaP7<0(V;kJX^|UnMYnZ^~^qyIBI5T;R<%@ot1Lk zFB6?-dwP`poWoD`Phi%@~5Ac&xzdA_KcJYkPL!ttI(`#Rr8&~=)jde+({`{Zk01Cmbe zRwb*-p6#BWzA&*eOQ)9`3a**MT@jKgyHsSqYYiVPxeE1qdMJ|+9HzpH48;-$COQrp z6eeX%R4ijT9`^Jo>p1F_DW%{c#8pzuO7r*2-8fQQO5hW|Dm~o~5&2fzWzDpY++U)^ z3w7V}3X#~`T!kdm9ItOxcy)iS{v;DMfbLQ5Pfm7qh-^%;QwTkbT|4+;ui)XvFIchC znpo+!9o5GlE;+9|?NRkO2(|F7kGk-sx!r(ot*ZzSFRnPXpk z?Yo|afe6vk!EU9@2t=e=?9T=N=VO&Zm%VQ#?1jE}=vVUz01cxri0Lt@>q>F)b3M41 z{C%b8Xv<#g{gUpd-TD-IbQ3`XRB3p2XCxUduODLkZZTIwsktIsV87QP#_^i^q8OBi zBg`rvx-^`#_~pIhkHI`m(QoL-F!WDCkKTwihNQ0?lW*NazM~MllH=(EkMupaB7WzU zhA`OF%#D<)q(pbSnaA9W^{snTe;l8ppj70prMXzHbLFey1I8F3PS{HE4b3D*P2vUJ z{#E%!k$9)b1e5x*mg}|~CC0r)=HqU$ULRb%BL80DMW^eM*~6fzH7dof+z(fp{A7kmlV-rxdTNtlxKX z4-CniRGubrayP2D0O-Qd6qPM%mvC-JF{D7nB&~0b$~$^rQg1!(#+1Q>-B@lP~k< zJ@2AH(KQ=#!xj-%p9%#!pe#I2L!J7YFz}rptb?@oOm${5fnZe7e1}}tJnKBn=XYo5 za6u8l@PztB_kl^r&pjiGgAXgb(Ik zUdm148ursQ;Y7{E{A9WAZ&bKhVg#9JK6ol?VOU_Dejj1c*~z>a0+(Inj|>;mxY9{V zPub0!J)vBp9mlE?kz#r`HAn8MSm3C)!eR1UE~hS8yzMS?4@*BX*|i-$p{cHAs4MEy zLz|CGd*yx9d3&5yBlVK!=n#KpS)qm_L6+;D>FS&Tw|LUPLnNhs%i`d7`!PMq+s$_$ zf9GivOddn@dZzR~LhD=-M_pI(87PbKwiN2SGUM(y|3EP3_)GEr&9w(rZ`gLW8&dBv z=Vg6Ov9btZO<`2e^to=QDfG@Pw<$iUV^48y$+|F0VLDALkjqUut^j?Y{y|u&Se-*p z%V0puL-b=f-AeWc-TvBK#j!kxCwt<86Se)5`6p`yh~#8b^&ENEIN?rp_3xrjBwBWD z#q42$+As^#n=ASZ#Rh6n;$P`bRpO<_@|C-4Z*IMtqSn^Rn5r(dfGSO>byOX9>{iDO zZW2}${tVQ(mv5dp$`yS8D=jw|p&jQBcS=yKqD_8p#k=NH^gs%^zYE<3X~o8!Si4Vd zbMucpMzl^BqSfcD;x9$m8)=DDxP*o!TNc!ukY0{4j`*^-^abzn=C>#Le+s6L#A%|7 z2Ew=s$zmqr?Nrhnc3sMT;=Odp_x0?wGeDTudR4~+YTj+BFZ0i3@Pt3JmM+g~t|_e@KmOY7Z6%$tLxY0{?+29|}}dA5k97TsPIdE+Yh`@Gi@IR%U3pi*7^ z!Ed79U!?3Z8AD7$Kjz}SKBAa=#yjs-NyV`m`niN(!(jfXVEzF4g~u+Eti{X5;h@hm zt!my|pZ-pg0)Cm8Nd95=*TKafi&9&E*;1MmLNauioJhxV<29C)#|KCM#6NMbg#PYz zf_SSUcH*<%+O^+zSig$0(_-Kiab(hMxMQfj7qHyRtD#=C_V=2HTE%a)=_h|*X!@sK zucBN&yZP%!B_eYv1L>aYCdR9!FE@TjMvdDYaYZ%%YB|brD)qc~Ksf$v2W?_0$)K62 z^v>whn5P(9PeF+v;j28T=fHM?K_;cTd)cF`cEsb<2P|Ov7w8b1KIfa{8F)5jgIc8< zcXT|KQ-dvlvUG_Zd(Qr5X9*vJgPaSS4VnIUS%Ae?WJyrf-l#zGOv+r-i;KVUQ`-IiuDz^0?g{p`L~$wGJd zYLV{?Xu^;|TT%LuMfDXyGxwOV4ssn47E(Gyc`a;c>JllRF|@*AZJ6`<=3&U=wjlY8 z0C`pCo!$7oWf`AOj+dz;mI>{Z*KKXRXk-OUH1NiyU%0EzPHZlLYYk*YnWh>8R?_Xn z#>8aI*TnT+*VI2N`?2GcvzkAAaq4l~YuIRB^W<{a^6QmkGV}>rl~p_6fp9g1;N9&= z1Od7AMq|4X9yD_HkhSWhfqU@slAG%G$eknjlbJxHHo6_YyN9kQLT3@}x+qfylW+aj zUtT((l`?$2DkBkl*$l*t9d#xb>*i@GIgn|-LvjqiY1Z+YsO2{GSdiH_WM%H{yR{#S z%5Dmt34-rj)HgyAH6!3-tmkgf6lX_ce3g^eY`riD;pKMtg`wwAFI7lq)w8$u1a zBHu0eIVSA7dV_NP%QYx@y+!@XF^M!&OU=thGV~5lnB!NK>mEUS2B@h8uuuCRGW7IR zO#r?hy>pa{c6UhsE7HUqDEzMQ1NQu+36Z`qQK&~5FOn+$gQO183j4F*Hqj_ws%P4{ z`&pxE>)RToiK}yGrE6(`s$(q;F&*GhtnloVs!e<+9)`R&UiA;Ww}jGht?$ z!D0Ed3Q^fx+}4Nqyhwj{3nn%OZy&be@#E#CIA5qG75>R>i8U4z{&g97xmHp{m+lMiExFWg@NZ|PsbIQTKPMs6zl=_g zE4nuJ)xY^^6}oOvyfyyDLKf-9vflK9zi&*1E3)cn&FKf+IIDPh3&zL>yDBsumO)Kx z8jwP7fNRK(ByB3$3>n`j zjF94bP5yQXO+zvbXZx_pbU+fgVLKe>%UJ$8)I1>aHm8ChEGAR_TJ&em%=_va@>lfl zrm<9)b#i?@?u;q-=kND{E+A%JC9z*3GK)n!Sj}`7v+zSS8x=`lTjH{T#R`$FhK5{y z5&prAiUh%14+p@p&L9LzH_Fwcf=pt;{6ZE<5*(4XdD7qE%XU?Fm%A* z;wlzY=_O2qapJPJHw&Ukm4!Dq;(<})#lCmV4BraaB~-Z1^rPka!_ zj~sXu0jo0er#g!RPt!O{TPAt=49Q1soS{won6o%iF|23mB^JSFlUnakA#k-sDgw7U zB{+#Nk1NC^^It21XfTf@moV*-5+0Zq^zTguNbVH*?@(91lW5h{yoPT0%+`}z~*u8N#I`+7<5VaOy?|~AZDW0w=gz(z@(cI>s%LV zyplx*0`W3p+BxSAb*!^JCj)@^->QDatX`=h)_$Rj8!OOv;fZWC=8zl^fk6D{1T>AY zM8{rYz(|({;P1tyJ0Cb?#EK!ZVA|z#4%f_pcfCUFr9S-!ie=XqPjVfjd6w(gFqtZd^0Vv zI#U2Q`YCXB|3L`Y&I!wXKPZe96*jVn%)^K+V;avnQ6^U`an+p!kQkuAl2h#s2J`Vi zpghdkx^a$7=!PYqraL(d#gfDCh}rvL$mAHZU3`B zh+`huIRx}G{{$9HM`5!VXGhG!+&U+);fGDD{4E=xJcNrD zm|M+YMGXR>Fjc{Qj?5o`A&cT7ZDCdl9fNfi9D?I)e?LROhsgl*s2p~Fvb7|8GMKsb zV2+8@IidbktmEbY5isRJ2RIC#Ex!y#z$^n$Z5BA)60C^6mt$fqChd=yE987OHrW^= zCjk45yAA<^Aqei%;;MAHAa z;>(vWY|CNxR|(@Jbk3o<5#zuDKpYtU)u<4r_%)i&gf8Q<;lS*>dn;z&Z(*lG^|wPC zbJ2n@y9i=CCkSc>jygE_{&yFXVBW`1uk8PSPh;+b|M#i21B0WSltQP8VYZ;C{dDaA E00F&l(f|Me diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 258c82709..c57087b3b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Mon Jun 05 12:51:36 MDT 2017 +#Fri Aug 25 15:48:59 MDT 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-bin.zip From b86d7564fbe474d3a49c9d8ae92e50fa3e53376b Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Wed, 30 Aug 2017 14:34:33 -0600 Subject: [PATCH 16/38] =?UTF-8?q?Adding=20the=20bintray=20plugin=20to=20th?= =?UTF-8?q?e=20project=20so=20that=20it=20can=20be=20built=20and=20?= =?UTF-8?q?=E2=80=A6=20(#506)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Adding the bintray plugin to the project so that it can be built and pushed automatically * Updating the travis build to use the new project name --- .travis.yml | 2 +- build.gradle | 11 +++++++---- ds3-interfaces/build.gradle | 1 + ds3-metadata/build.gradle | 9 ++------- ds3-sdk/build.gradle | 9 ++------- ds3-utils/build.gradle | 3 ++- gradle/scripts/publish.gradle | 23 +++++++++++++++++++++++ settings.gradle | 1 + 8 files changed, 39 insertions(+), 20 deletions(-) create mode 100644 ds3-interfaces/build.gradle create mode 100644 gradle/scripts/publish.gradle diff --git a/.travis.yml b/.travis.yml index 8d5b0b1e1..b39a2f0a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ language: java jdk: - oraclejdk8 -script: ./gradlew -S clean jar ds3-sdk:test ds3-utils:test ds3-metadata:test +script: ./gradlew -S clean jar ds3_java_sdk:test ds3-utils:test ds3-metadata:test diff --git a/build.gradle b/build.gradle index 1fd5a771b..94aae99d1 100644 --- a/build.gradle +++ b/build.gradle @@ -14,14 +14,17 @@ */ buildscript { - ext.kotlin_version = '1.1.4-2' + ext.kotlin_version = '1.1.4-3' repositories { mavenCentral() + jcenter() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' + classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1' } } @@ -58,7 +61,7 @@ task wrapper(type: Wrapper) { gradleVersion = '4.1' } -project(':ds3-sdk') { +project(':ds3_java_sdk') { dependencies { compile project(':ds3-interfaces') compile project(':ds3-utils') @@ -74,14 +77,14 @@ project(':ds3-metadata') { project(':ds3-sdk-integration') { dependencies { - compile project(':ds3-sdk') + compile project(':ds3_java_sdk') compile project(':ds3-metadata') } } project(':ds3-sdk-samples') { dependencies { - compile project(':ds3-sdk') + compile project(':ds3_java_sdk') } } diff --git a/ds3-interfaces/build.gradle b/ds3-interfaces/build.gradle new file mode 100644 index 000000000..a82804d4d --- /dev/null +++ b/ds3-interfaces/build.gradle @@ -0,0 +1 @@ +apply from: "$rootDir/gradle/scripts/publish.gradle" diff --git a/ds3-metadata/build.gradle b/ds3-metadata/build.gradle index 6002069a0..19ee26af8 100644 --- a/ds3-metadata/build.gradle +++ b/ds3-metadata/build.gradle @@ -13,15 +13,10 @@ * **************************************************************************** */ -buildscript { - repositories { jcenter() } - dependencies { - classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1' - } -} - apply plugin: 'com.github.johnrengelman.shadow' +apply from: "$rootDir/gradle/scripts/publish.gradle" + shadowJar { relocate 'org.apache', 'ds3metafatjar.org.apache' relocate 'com.google', 'ds3metafatjar.com.google' diff --git a/ds3-sdk/build.gradle b/ds3-sdk/build.gradle index 5b74d8b55..a683f7683 100644 --- a/ds3-sdk/build.gradle +++ b/ds3-sdk/build.gradle @@ -16,15 +16,10 @@ import java.nio.file.Files import java.nio.file.Path -buildscript { - repositories { jcenter() } - dependencies { - classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1' - } -} - apply plugin: 'com.github.johnrengelman.shadow' +apply from: "$rootDir/gradle/scripts/publish.gradle" + shadowJar { relocate 'com.google', 'ds3fatjar.com.google' relocate 'org.jetbrains', 'ds3fatjar.org.jetbrains' diff --git a/ds3-utils/build.gradle b/ds3-utils/build.gradle index f8f974efa..219664d5c 100644 --- a/ds3-utils/build.gradle +++ b/ds3-utils/build.gradle @@ -14,9 +14,10 @@ * **************************************************************************** */ +apply from: "$rootDir/gradle/scripts/publish.gradle" + dependencies { compile "commons-codec:commons-codec:$commonscodecVersion" compile "commons-io:commons-io:$commonsioVersion" compile "com.google.guava:guava:$guavaVersion" } - diff --git a/gradle/scripts/publish.gradle b/gradle/scripts/publish.gradle new file mode 100644 index 000000000..7a3b70027 --- /dev/null +++ b/gradle/scripts/publish.gradle @@ -0,0 +1,23 @@ +apply plugin: 'com.jfrog.bintray' + +bintray { + user = System.getenv('BINTRAY_USER') + key = System.getenv('BINTRAY_KEY') + + configurations = ['archives'] + + //dryRun = true + publish = true + + pkg { + name = "$project.name" + repo = "ds3" + userOrg = "spectralogic" + websiteUrl = "https://github.com/SpectraLogic/ds3_java_sdk" + vcsUrl = "https://github.com/SpectraLogic/ds3_java_sdk.git" + licenses = ['Apache-2.0'] + version { + name = "$project.version" + } + } +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index d0a85a6f1..b7a6f649c 100644 --- a/settings.gradle +++ b/settings.gradle @@ -16,3 +16,4 @@ include 'ds3-sdk-integration', 'ds3-sdk', 'ds3-sdk-samples', 'ds3-interfaces', 'ds3-metadata', 'ds3-utils' rootProject.name = 'ds3-java-sdk' +project(":ds3-sdk").name = "ds3_java_sdk" From 97f582b92c1f73cc1cbce9e5f0d1ddab925d631a Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Thu, 31 Aug 2017 09:04:53 -0600 Subject: [PATCH 17/38] Merging artifact rename change --- README.md | 21 ++++++++++++++++----- build.gradle | 6 +++--- gradle/scripts/publish.gradle | 4 ++-- settings.gradle | 2 -- 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 0bdba6178..a8fe754a7 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,7 @@ If using Intellij, simply import the project as a Gradle project. ## Install -To install the latest `ds3_java_sdk` either download the latest release jar file from the [Releases](../../releases) page or clone the repository with `git clone https://github.com/SpectraLogic/ds3_java_sdk.git`, cd to `ds3_java_sdk` and run `./gradlew clean ds3-sdk:install` to install the sdk into your local maven repository. It is compatible with Java 7 and above. - +To install the latest `ds3_java_sdk` either download the latest release jar file from the [Releases](../../releases) page or clone the repository with `git clone https://github.com/SpectraLogic/ds3_java_sdk.git`, cd to `ds3_java_sdk` and run `./gradlew clean ds3-sdk:install` to install the sdk into your local maven repository. It is compatible with Java 8. The SDK can also be included directly into a Maven or Gradle build. There is also a fatjar version that you can optionally use with the `all` classifier, take a look at the commented out code in the examples below. To include the SDK into maven add the following to the `pom.xml` file: ```xml @@ -41,7 +40,7 @@ The SDK can also be included directly into a Maven or Gradle build. There is als com.spectralogic.ds3 ds3-sdk - 3.4.0 + 3.5.2 ... @@ -64,8 +63,8 @@ repositories { dependencies { ... - compile 'com.spectralogic.ds3:ds3-sdk:3.4.0' - // compile 'com.spectralogic.ds3:ds3-sdk:3.4.0:all' + compile 'com.spectralogic.ds3:ds3-sdk:3.5.2' + // compile 'com.spectralogic.ds3:ds3-sdk:3.5.2:all' ... } @@ -94,3 +93,15 @@ bridges, please see [SLF4j.org](http://www.slf4j.org/manual.html). In addition to unit tests in the main `ds3-sdk` module, there are additional integration tests in the `ds3-integration` module. Please see the integration [README](ds3-sdk-integration/README.md) for details on running the tests. To just run the SDK's unit tests use: ./gradlew clean ds3-sdk:test + +## Publishing + +Before a user can publish the SDK they must first have [Bintray](https://bintray.com/spectralogic) API credentials and access to our organization to upload. Once a user has access they can set their credentials on the command line by issuing: + +```shell + +$ export BINTRAY_USER="userName" +$ export BINTRAY_KEY="api_key" +``` + +After the credentials have been set, to publish the SDK to [Bintray](https://bintray.com/spectralogic), issue the following from the command line run: `./gradlew clean bintrayUpload` diff --git a/build.gradle b/build.gradle index 94aae99d1..0591609d4 100644 --- a/build.gradle +++ b/build.gradle @@ -61,7 +61,7 @@ task wrapper(type: Wrapper) { gradleVersion = '4.1' } -project(':ds3_java_sdk') { +project(':ds3-sdk') { dependencies { compile project(':ds3-interfaces') compile project(':ds3-utils') @@ -77,14 +77,14 @@ project(':ds3-metadata') { project(':ds3-sdk-integration') { dependencies { - compile project(':ds3_java_sdk') + compile project(':ds3-sdk') compile project(':ds3-metadata') } } project(':ds3-sdk-samples') { dependencies { - compile project(':ds3_java_sdk') + compile project(':ds3-sdk') } } diff --git a/gradle/scripts/publish.gradle b/gradle/scripts/publish.gradle index 7a3b70027..4fc4ecd85 100644 --- a/gradle/scripts/publish.gradle +++ b/gradle/scripts/publish.gradle @@ -6,7 +6,7 @@ bintray { configurations = ['archives'] - //dryRun = true + dryRun = true publish = true pkg { @@ -20,4 +20,4 @@ bintray { name = "$project.version" } } -} \ No newline at end of file +} diff --git a/settings.gradle b/settings.gradle index b7a6f649c..5e0c648b0 100644 --- a/settings.gradle +++ b/settings.gradle @@ -15,5 +15,3 @@ include 'ds3-sdk-integration', 'ds3-sdk', 'ds3-sdk-samples', 'ds3-interfaces', 'ds3-metadata', 'ds3-utils' rootProject.name = 'ds3-java-sdk' - -project(":ds3-sdk").name = "ds3_java_sdk" From 2dba777ddac177750fea14d37f4dd7f4ff06af95 Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Thu, 31 Aug 2017 09:06:23 -0600 Subject: [PATCH 18/38] commenting out the dryRun flag for the bintrayUpload task --- gradle/scripts/publish.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/scripts/publish.gradle b/gradle/scripts/publish.gradle index 4fc4ecd85..833862f54 100644 --- a/gradle/scripts/publish.gradle +++ b/gradle/scripts/publish.gradle @@ -6,7 +6,7 @@ bintray { configurations = ['archives'] - dryRun = true + //dryRun = true publish = true pkg { From 402fdb9c2a4d7d5bc9e8139cf34e95cfa759219a Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Thu, 31 Aug 2017 09:10:45 -0600 Subject: [PATCH 19/38] reverting module name in travis build. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b39a2f0a2..8d5b0b1e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ language: java jdk: - oraclejdk8 -script: ./gradlew -S clean jar ds3_java_sdk:test ds3-utils:test ds3-metadata:test +script: ./gradlew -S clean jar ds3-sdk:test ds3-utils:test ds3-metadata:test From b8357f5be78dd8c407a136ad1e80f5efbaabb0dd Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Wed, 6 Dec 2017 12:19:54 -0700 Subject: [PATCH 20/38] Merging fix for sequential blobbed file transfer from master to 3.5.3. --- README.md | 6 +- SETUP.md | 2 +- build.gradle | 2 +- .../helpers/FileSystemHelper_Test.java | 1 - .../integration/GetJobManagement_Test.java | 71 ++++++++++++++ .../integration/PutJobManagement_Test.java | 71 ++++++++++++++ .../ContentLengthNotMatchException.java | 2 +- .../SeekableByteChannelDecorator.java | 94 ++++++++++++++++--- .../SequentialChannelStrategy.java | 2 +- 9 files changed, 232 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index a8fe754a7..7a1184f3f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ The SDK can also be included directly into a Maven or Gradle build. There is als com.spectralogic.ds3 ds3-sdk - 3.5.2 + 3.5.3 ... @@ -63,8 +63,8 @@ repositories { dependencies { ... - compile 'com.spectralogic.ds3:ds3-sdk:3.5.2' - // compile 'com.spectralogic.ds3:ds3-sdk:3.5.2:all' + compile 'com.spectralogic.ds3:ds3-sdk:3.5.3' + // compile 'com.spectralogic.ds3:ds3-sdk:3.5.3:all' ... } diff --git a/SETUP.md b/SETUP.md index 82c281663..ae0f77fde 100644 --- a/SETUP.md +++ b/SETUP.md @@ -13,7 +13,7 @@ If using Eclipse: * In the results that are returned install `Gradle Integration for Eclipse (4.4) 3.7.1.RELEASE` or current version. Clicking `Install` will take you to the 'Confirm Selected Features' dialog. (De-select the two optional Spring checkboxes on older versions). `Gradle IDE` and `org.gradle.toolingapi.feature` should both be selected. Accept any dialogs that popup. * After Gradle has been installed into eclipse and git has been installed, you should be able to clone the repo and import that project into eclipse -If using Intelllij: +If using Intellij: * Open Intellij and select `Import Project` * Find the `build.gradle` file contained at the root of the project and select it * Accept the defaults diff --git a/build.gradle b/build.gradle index 0591609d4..641fefdf3 100644 --- a/build.gradle +++ b/build.gradle @@ -31,7 +31,7 @@ buildscript { allprojects { group = 'com.spectralogic.ds3' - version = '3.5.2' + version = '3.5.3' } subprojects { diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java index ebe263f06..2e904d99e 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java @@ -16,7 +16,6 @@ package com.spectralogic.ds3client.helpers; import com.spectralogic.ds3client.Ds3Client; -import com.spectralogic.ds3client.commands.PutObjectResponse; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; import com.spectralogic.ds3client.integration.Util; import com.spectralogic.ds3client.integration.test.helpers.TempStorageIds; diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java index 5af9f2c41..5790c994e 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java @@ -41,6 +41,7 @@ import com.spectralogic.ds3client.helpers.events.FailureEvent; import com.spectralogic.ds3client.helpers.events.SameThreadEventRunner; import com.spectralogic.ds3client.helpers.options.ReadJobOptions; +import com.spectralogic.ds3client.helpers.options.WriteJobOptions; import com.spectralogic.ds3client.helpers.strategy.blobstrategy.BlobStrategy; import com.spectralogic.ds3client.helpers.strategy.blobstrategy.ChunkAttemptRetryBehavior; import com.spectralogic.ds3client.helpers.strategy.blobstrategy.ChunkAttemptRetryDelayBehavior; @@ -83,7 +84,9 @@ import org.slf4j.LoggerFactory; import java.io.BufferedReader; +import java.io.DataOutputStream; import java.io.File; +import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; @@ -101,11 +104,15 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; +import java.util.Collections; import java.util.List; import java.util.UUID; +import java.util.concurrent.CountDownLatch; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; +import static com.spectralogic.ds3client.commands.spectrads3.PutBulkJobSpectraS3Request.MIN_UPLOAD_SIZE_IN_BYTES; import static com.spectralogic.ds3client.integration.Util.RESOURCE_BASE_NAME; import static com.spectralogic.ds3client.integration.Util.deleteAllContents; import static com.spectralogic.ds3client.integration.Util.deleteBucketContents; @@ -1449,4 +1456,68 @@ public void testThatFifoIsNotProcessed() throws IOException, InterruptedExceptio assertTrue(caughtException.get()); } + + @Test + public void testStreamedGetJobWithBlobbedFile() throws Exception { + final int chunkSize = MIN_UPLOAD_SIZE_IN_BYTES; + final long biggerThanAChunkSize = chunkSize * 2L + 1024; + + final int numIntsInBiggerThanAChunkSize = (int)biggerThanAChunkSize / 4; + + final String originalFileName = "Gracie.bin"; + final String movedFileName = "Gracie.bak"; + + try { + final DataOutputStream originalFileStream = new DataOutputStream(new FileOutputStream(originalFileName)); + + byte[] bytes = new byte[4]; + + for (int i = 0; i < numIntsInBiggerThanAChunkSize; ++i) { + bytes[0] = (byte)i; + bytes[1] = (byte)(i >> 8); + bytes[2] = (byte)(i >> 16); + bytes[3] = (byte)(i >> 24); + originalFileStream.write(bytes); + } + + originalFileStream.close(); + + final Ds3Object ds3Object = new Ds3Object(); + ds3Object.setName(originalFileName); + ds3Object.setSize(biggerThanAChunkSize); + + final AtomicLong numBytesTransferred = new AtomicLong(0); + + final WriteJobOptions writeJobOptions = WriteJobOptions.create(); + writeJobOptions.withMaxUploadSize(chunkSize); + + final Ds3ClientHelpers.Job writeJob = HELPERS.startWriteJob(BUCKET_NAME, Collections.singletonList(ds3Object), writeJobOptions); + writeJob.attachDataTransferredListener(numBytesTransferred::addAndGet); + + final CountDownLatch writeCountDownLatch = new CountDownLatch(1); + + writeJob.attachObjectCompletedListener(name -> writeCountDownLatch.countDown()); + + writeJob.transfer(new FileObjectPutter(Paths.get("."))); + + writeCountDownLatch.await(); + + assertEquals(biggerThanAChunkSize, numBytesTransferred.get()); + + Files.move(Paths.get(originalFileName), Paths.get(movedFileName)); + + final CountDownLatch readCountdownLatch = new CountDownLatch(1); + + final Ds3ClientHelpers.Job readJob = HELPERS.startReadJobUsingStreamedBehavior(BUCKET_NAME, Collections.singletonList(ds3Object)); + readJob.attachObjectCompletedListener(name -> readCountdownLatch.countDown()); + readJob.transfer(new FileObjectGetter(Paths.get("."))); + + readCountdownLatch.await(); + + assertTrue(FileUtils.contentEquals(new File(movedFileName), new File(originalFileName))); + } finally { + Files.deleteIfExists(Paths.get(originalFileName)); + Files.deleteIfExists(Paths.get(movedFileName)); + } + } } diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java index 067bf9fb0..cfdad62ab 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java @@ -52,7 +52,9 @@ import org.slf4j.LoggerFactory; import java.io.BufferedInputStream; +import java.io.DataOutputStream; import java.io.File; +import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.lang.reflect.InvocationTargetException; @@ -66,9 +68,12 @@ import java.nio.file.Path; import java.nio.file.Paths; import java.util.*; +import java.util.concurrent.CountDownLatch; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; +import static com.spectralogic.ds3client.commands.spectrads3.PutBulkJobSpectraS3Request.MIN_UPLOAD_SIZE_IN_BYTES; import static com.spectralogic.ds3client.integration.Util.RESOURCE_BASE_NAME; import static com.spectralogic.ds3client.integration.Util.deleteAllContents; import static org.hamcrest.Matchers.*; @@ -2059,4 +2064,70 @@ public void testThatNonExistentFileDoesNotStopPutJob() throws IOException { assertTrue(caughtNoSuchFileException.get()); assertTrue(getJobRan.get()); } + + @Test + public void testStreamedPutJobWithBlobbedFile() throws Exception { + final int chunkSize = MIN_UPLOAD_SIZE_IN_BYTES; + final long biggerThanAChunkSize = chunkSize * 2L + 1024; + + final int numIntsInBiggerThanAChunkSize = (int)biggerThanAChunkSize / 4; + + final String originalFileName = "Gracie.bin"; + final String movedFileName = "Gracie.bak"; + + try { + final DataOutputStream originalFileStream = new DataOutputStream(new FileOutputStream(originalFileName)); + + byte[] bytes = new byte[4]; + + for (int i = 0; i < numIntsInBiggerThanAChunkSize; ++i) { + bytes[0] = (byte)i; + bytes[1] = (byte)(i >> 8); + bytes[2] = (byte)(i >> 16); + bytes[3] = (byte)(i >> 24); + originalFileStream.write(bytes); + } + + originalFileStream.close(); + + final Ds3Object ds3Object = new Ds3Object(); + ds3Object.setName(originalFileName); + ds3Object.setSize(biggerThanAChunkSize); + + final AtomicLong numBytesTransferred = new AtomicLong(0); + + final WriteJobOptions writeJobOptions = WriteJobOptions.create(); + writeJobOptions.withMaxUploadSize(chunkSize); + + final Ds3ClientHelpers.Job writeJob = HELPERS.startWriteJobUsingStreamedBehavior(BUCKET_NAME, Collections.singletonList(ds3Object), writeJobOptions); + writeJob.attachDataTransferredListener(numBytesTransferred::addAndGet); + + final CountDownLatch writeCountDownLatch = new CountDownLatch(1); + + writeJob.attachObjectCompletedListener(name -> writeCountDownLatch.countDown()); + + writeJob.transfer(new FileObjectPutter(Paths.get("."))); + + writeCountDownLatch.await(); + + assertEquals(biggerThanAChunkSize, numBytesTransferred.get()); + + Files.move(Paths.get(originalFileName), Paths.get(movedFileName)); + + final CountDownLatch readCountdownLatch = new CountDownLatch(1); + + final Ds3ClientHelpers.Job readJob = HELPERS.startReadJob(BUCKET_NAME, Collections.singletonList(ds3Object)); + readJob.attachObjectCompletedListener(name -> readCountdownLatch.countDown()); + readJob.transfer(new FileObjectGetter(Paths.get("."))); + + readCountdownLatch.await(); + + assertTrue(FileUtils.contentEquals(new File(movedFileName), new File(originalFileName))); + } finally { + deleteAllContents(client, BUCKET_NAME); + + Files.deleteIfExists(Paths.get(originalFileName)); + Files.deleteIfExists(Paths.get(movedFileName)); + } + } } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/ContentLengthNotMatchException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/ContentLengthNotMatchException.java index 66a14f8a1..6d3e0e932 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/ContentLengthNotMatchException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/ContentLengthNotMatchException.java @@ -22,7 +22,7 @@ public class ContentLengthNotMatchException extends IOException { private final long contentLength; private final long totalBytes; public ContentLengthNotMatchException(final String fileName, final long contentLength, final long totalBytes) { - super(String.format("The Content length for %s (%d) not match the number of byte read (%d)", fileName, contentLength, totalBytes)); + super(String.format("The Content length for %s (%d) does not match the number of bytes read (%d)", fileName, contentLength, totalBytes)); this.fileName = fileName; this.contentLength = contentLength; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SeekableByteChannelDecorator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SeekableByteChannelDecorator.java index 2acdc4dab..9196caff4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SeekableByteChannelDecorator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SeekableByteChannelDecorator.java @@ -25,52 +25,124 @@ * An instance of {@link SeekableByteChannel} used to decorate another SeekableByteChannel in the * situation where we re-use the same channel for more than 1 blob. This subclass prevents closing * a channel when there are other blobs still referencing the shared channel. + * + * This class positions the content of a blob within the bounds of a channel that may be capable + * of containing more than one blob. */ class SeekableByteChannelDecorator implements SeekableByteChannel { - private final SeekableByteChannel seekableByteChannel; + private final Object lock = new Object(); - SeekableByteChannelDecorator(final SeekableByteChannel seekableByteChannel) { - Preconditions.checkNotNull(seekableByteChannel, "seekableByteChannel may not be null"); + private final SeekableByteChannel seekableByteChannel; + private final long blobOffset; + private final long blobLength; + private long nextAvailableByteOffset = 0; + + SeekableByteChannelDecorator(final SeekableByteChannel seekableByteChannel, final long blobOffset, final long blobLength) throws IOException { + Preconditions.checkNotNull(seekableByteChannel, "seekableByteChannel may not be null."); + Preconditions.checkArgument(blobOffset >= 0, "blobOffset must be >= 0."); + Preconditions.checkArgument(blobLength >= 0, "blobLength must be >= 0."); this.seekableByteChannel = seekableByteChannel; + this.blobOffset = blobOffset; + this.blobLength = blobLength; + + seekableByteChannel.position(blobOffset); } - protected SeekableByteChannel wrappedSeekableByteChannel() { + SeekableByteChannel wrappedSeekableByteChannel() { return seekableByteChannel; } @Override public int read(final ByteBuffer dst) throws IOException { - return seekableByteChannel.read(dst); + synchronized (lock) { + final long remainingInWindow = blobLength - nextAvailableByteOffset; + final long numBytesWeCanRead = Math.min(dst.remaining(), remainingInWindow); + + if (numBytesWeCanRead <= 0) { + return 0; + } + + final int numBytesRead; + + if (numBytesWeCanRead != dst.remaining()) { + final ByteBuffer byteBuffer = ByteBuffer.wrap(new byte[(int) numBytesWeCanRead]); + numBytesRead = seekableByteChannel.read(byteBuffer); + byteBuffer.flip(); + dst.put(byteBuffer); + } else { + numBytesRead = seekableByteChannel.read(dst); + } + + nextAvailableByteOffset += numBytesRead; + + return numBytesRead; + } } @Override public int write(final ByteBuffer src) throws IOException { - return seekableByteChannel.write(src); + synchronized (lock) { + final long remainingInWindow = blobLength - nextAvailableByteOffset; + final long numBytesWeCanWrite = Math.min(src.remaining(), remainingInWindow); + + if (numBytesWeCanWrite <= 0) { + return 0; + } + + final int numBytesWritten; + + if (numBytesWeCanWrite != src.remaining()) { + final ByteBuffer byteBuffer = ByteBuffer.wrap(new byte[(int) numBytesWeCanWrite]); + byteBuffer.put(src); + byteBuffer.flip(); + numBytesWritten = seekableByteChannel.write(byteBuffer); + } else { + numBytesWritten = seekableByteChannel.write(src); + } + + nextAvailableByteOffset += numBytesWritten; + + return numBytesWritten; + } } @Override public long position() throws IOException { - return seekableByteChannel.position(); + synchronized (lock) { + return seekableByteChannel.position(); + } } @Override public SeekableByteChannel position(final long newPosition) throws IOException { - return seekableByteChannel.position(newPosition); + synchronized (lock) { + final long greatestPossiblePosition = blobLength - 1; + nextAvailableByteOffset = Math.min(newPosition, greatestPossiblePosition); + seekableByteChannel.position(blobOffset + nextAvailableByteOffset); + + return this; + } } @Override public long size() throws IOException { - return seekableByteChannel.size(); + synchronized (lock) { + return seekableByteChannel.size(); + } } @Override public SeekableByteChannel truncate(final long size) throws IOException { - return seekableByteChannel.truncate(size); + synchronized (lock) { + return seekableByteChannel.truncate(size); + } } @Override public boolean isOpen() { - return seekableByteChannel.isOpen(); + synchronized (lock) { + return seekableByteChannel.isOpen(); + } } @Override diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialChannelStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialChannelStrategy.java index 23a672967..d3b7974f0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialChannelStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialChannelStrategy.java @@ -88,7 +88,7 @@ private SeekableByteChannel makeNewChannel(final BulkObject blob) throws IOExcep channelPreparer.prepareChannel(blob.getName(), objectChannelBuilder); final SeekableByteChannel seekableByteChannel = channelStrategyDelegate.acquireChannelForBlob(blob); - final SeekableByteChannelDecorator seekableByteChannelDecorator = new SeekableByteChannelDecorator(seekableByteChannel); + final SeekableByteChannelDecorator seekableByteChannelDecorator = new SeekableByteChannelDecorator(seekableByteChannel, blob.getOffset(), blob.getLength()); blobNameChannelMap.put(blob.getName(), seekableByteChannelDecorator); return seekableByteChannelDecorator; From 61ec6883e3fb61b57f4fba7b20ae305d1cb21be5 Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Wed, 6 Dec 2017 13:29:27 -0700 Subject: [PATCH 21/38] Merging fix for creating ranged gets from network retries into 3_5_1 --- .../GetJobNetworkFailureRetryDecorator.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobNetworkFailureRetryDecorator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobNetworkFailureRetryDecorator.java index b80ca778c..737151477 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobNetworkFailureRetryDecorator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobNetworkFailureRetryDecorator.java @@ -16,6 +16,7 @@ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; import com.google.common.collect.ImmutableCollection; +import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableMultimap; import com.spectralogic.ds3client.exceptions.ContentLengthNotMatchException; @@ -25,6 +26,7 @@ import com.spectralogic.ds3client.helpers.strategy.channelstrategy.ChannelStrategy; import com.spectralogic.ds3client.models.BulkObject; import com.spectralogic.ds3client.models.common.Range; +import com.spectralogic.ds3client.utils.Guard; import java.io.IOException; import java.util.HashMap; @@ -125,12 +127,24 @@ private ImmutableCollection initializeRanges(final BulkObject blob, final if (ranges == null) { final long numBytesTransferred = 0; - ranges = updateRanges(ranges, numBytesTransferred, blob.getLength()); + ranges = adjustRangesForBlobOffset(updateRanges(ranges, numBytesTransferred, blob.getLength()), blob); } return ranges; } + private ImmutableCollection adjustRangesForBlobOffset(final ImmutableCollection ranges, final BulkObject blob) { + if (Guard.isNullOrEmpty(ranges) || ranges.size() > 1) { + return ranges; + } + + final Range firstRange = ranges.iterator().next(); + + final long blobOffset = blob.getOffset(); + + return ImmutableList.of(new Range(firstRange.getStart() + blobOffset, firstRange.getEnd() + blobOffset)); + } + private ImmutableCollection updateRanges(final ImmutableCollection ranges, final long numBytesTransferred, final Long numBytesToTransfer) From 974b7668531d08b19202d73fefe70800a76420da Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Wed, 6 Dec 2017 13:29:46 -0700 Subject: [PATCH 22/38] Merging fix for creating ranged gets from network retries into 3_5_1 --- .../com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java | 1 - 1 file changed, 1 deletion(-) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java index f01d4f4dc..4ca191438 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java @@ -18,7 +18,6 @@ import com.google.common.base.Function; import com.google.common.collect.FluentIterable; import com.spectralogic.ds3client.Ds3Client; -import com.spectralogic.ds3client.commands.PutObjectResponse; import com.spectralogic.ds3client.helpers.options.ReadJobOptions; import com.spectralogic.ds3client.helpers.options.WriteJobOptions; import com.spectralogic.ds3client.helpers.pagination.FileSystemKey; From 570c832ee866424f84ee194c4b9047ae9ac13568 Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Wed, 6 Dec 2017 14:12:06 -0700 Subject: [PATCH 23/38] Upgrading to kotlin 1.2 and gradle 4.4 --- build.gradle | 4 ++-- gradle/wrapper/gradle-wrapper.jar | Bin 54783 -> 54708 bytes gradle/wrapper/gradle-wrapper.properties | 3 +-- gradlew | 6 +++--- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 641fefdf3..3d41cd3de 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ */ buildscript { - ext.kotlin_version = '1.1.4-3' + ext.kotlin_version = '1.2.0' repositories { mavenCentral() @@ -58,7 +58,7 @@ subprojects { } task wrapper(type: Wrapper) { - gradleVersion = '4.1' + gradleVersion = '4.4' } project(':ds3-sdk') { diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 1454129915e967f2239442034b31dae2c3787c80..7a3265ee94c0ab25cf079ac8ccdf87f41d455d42 100644 GIT binary patch delta 17061 zcmY(qV{qn8u)rJJwrv}mjcwbu`QK!dCr&oD&5ezXH|ECJ*tYN9w@%%2&s0rS&vZ}M zeCV2)uKD$66=YKt-)xD?l$Tt$@3XqEIHjn6>X@JeT;%ue%*@4SvlL32Fs9kwru zqPBCln?X%_j#y2u=-IXq; zEbYA$)}yEFVB|V3K+Sk4-Z<)oa(AL70K1}A-8chEa zF=TJ_R?>JcYnJHDH8dm;A(}WzI(`rh(-SJnepU9wx$@?VEE%XfVvP4B|CR#!dGurt z3Fu$*iv0!%z=;9-zn52!%}=mhPJc=#zzPshJdAJQYd9&bNE&IHThX&wR5#(ldqp+CAAR%J8@`6wVd;0P$F zxD1an%M;W=EOwrzc0Oq|CrGNS1Rk@$0mC5z#Zd0q;^^iMn?;FemPLF#+*42V*&&$r zODQ`Fr@0{-Lx;to$&QEg?pc(1|DLyGb4H*pd$%`TFxqh6eX$gl{b5qe5z;WxT zKpfH>br?n&RRgjn8=+)913#g*MEfE?|}8*`z{lI-6_*8=Xg(HxN%%Hf5K>kA@WYbDCXB>O?x2G+9e4o z;lyR8M<*(^ddsS6BL;j00((<-vWo1ot?2RIW3BO&d^oB>X2an=MFt@vzyV9V^+3cZ zX~|(!>99oJ@W*qs z=RD`&SJ1Qdf2;+!mfL<^TtsNAz^aMmY{@gf0XYJTCHp+dGrkWVQF9&c_Qkx8k_P#I z+{B%IS@=YJ;}qsb+%9T&H^1$dBqmn2hgQO6L2Tz@^#8b_6g-s!_%tpE)e!e|2YhnI zikY@ZSTna%$2N6>tSot?E!hHd1&us}NvOLV1fdmzn`^MW+4j~$e?Y9^6y@SP{; z)LdEiO5NcbhZWP59{kh?8`0f4H+T<_HcPL0wCbJYLc1iMR%iY6sw~oR@3x zibUK)?CexC8b}+vlI8Fc2sjZ&O>?st!z>lJD|;*9itH3|_GSxMw1eq1W~F@e!;0+W zAO%-Bf(@py4EoJbTt)P>N!wZbD9#4&UWciM?H<(hC;YeSFDfq#j#02f;t*-d_i?dE zaYS)(W$;zNQ9=@}bPn5qLsuVIWY@{jlN_a+xo7iRwsvEvkms6^8+yQ3JU5<5B6B1uadk4$j zZF&aj{;j&W6JIM=QTuVN!7A6XK96ICLW`?^hrhqTYKL&Q_Iqnlu|0yZg-nB-l9^FO zoj_Ytmu+)sOHx)EjHN^0b&WiAE!|Kb#3?gCQ>phgG4jXj6XMB@j^?+HZ~9RjV{*=v zj<2xiwv0(T-Szc*BzjV14{Y+cl)K7yroP3av4n_eQ);o;nSyyTezuw`IW#?iX(eLt z`)az)rJk0KxVAM0drZfPht|oncuIh5Y<+>kU;{>F$qfR!ta;1|sq9o+zi#(1no%t?+pRk-$U1r1)7v2rZMPCtHZ2kez*hvu`z=)I%4O zmIl_YJ60oK3Y*3fKPTs^Q5sPgq=;QgZ@iE0rdc^(JkoRSAENU^Je)~>T{p&dbuY3#;$(B?KXDyZ6Tv0tH;HPoY)q*kXvk+}GM_b9A z8Q`LVp>>-x`dpEmmCB7yjF*+!Y-u#REV@(rZs42@&$`uEZ0z}r+4KUMa7t=O+#LzIXEC zl2A9-Azfix3~{u#??9Zh5NF{wz6;XnqcH_)(!HZ<{N-;9Df39fj*qO^Hpex6mM{@zGKN1nJ?sr&yt4oC zK*3UP_}7L=4C<-I)*hEQCmM~l+>t~zRMVkohW^8U*?t^-$NxI;#Ji1vTBbY~OS8mJ zO{W>-+Qw)Q(;%UD-O)*3LR0@$Q=`?>NHU)pqbl^Y0xEZl)D!yi9VC9fymyMr~mnfyo9=rr`lM25_!Qm z933~hyc@<{HqCEnON`K?5Pn0hC1ZDd9LERAncQjL+Z zLCeEJ^FpPwqx`wvx`6iWruEF`gRDlle&e#MoZ_m#9Y1DAaNS!IFJYSgiAY!rngFGr zr@JD~`805v6BYh&8UyA0B_68r=%g#SWs0dIZ)7nSG22_|1~Ua5Uh?m`~ry?w+kB3~@)Hd0Sa;}Zf&K8|ZZj{DXx{Jz$2 za690p{c0BgFL%WVqYrG*HvAmtgvMas?lXvA{vO1dqmPIM?Rt=U&fh& z71LPXg&N{jJ3{wTPuqkyQ-_rL4p2TeMtcq4I-`M3-1_q$IjsDk2gh{`$5-;#*L2z@ruc-R&5XRsc*ScX);NnbIemTy6a&?`$$CVNF0vI=mX@Xrng^6P1%=X3bujmbr(m`rOW4H1=R zDKCo{F0B(kz`nm8V;EmDF*K?dBs_AiUIXqYFC6$^wUd8V?Xjx*HuwA%rcRs!U6y?n z-)@v^hb?y7hFy7p>PH<_W^))-rW0BzXM9Af3)T_(rObv?mS%pf5-QA$5jAxGpwq>^ z&?j{oV>qyo!m%tO-ke+Vm2|)PoqaQ48oh<|koXDSGntY<>_!@X8>=zCsY*5;P-7>i zo`~qKjKk;?v-oq4OMQmBg6NjF(Kc)pk({TNC>pD)Nugnyxq=eg@z!f3)Bhxzw1fMB z92CKZZUh4cwvPw~#`!Og#7U|iAp=sh^xZKJ@q{1zA$uB zN%d)vxi`4(hJIa~3-9)6uBz4gCa)|jzgq0*C$|c6o6kC+n9s1HK}VYoHE8DSb}H-5 zPisF`wDwbd3FvG{KyAaEeiG~nKMdSD^w$R7FQrK#`9jwOa{Jp+gd*X&6#zTFpOkU* z$j0*tgZ$0DVl|~}*M*tJYP7fuSDxGk8UxhGtgQoTaC=BT=N}+aqe<}=J6rPW%-;c%I(bnKgGXO@TZlz3H zTCWGDLg|gR)cSXCD`(ZtDa0Aw2l{_1?;1yH)3W_0dl*I>q~lWM8UQWARs(yj7pTmp ze#qci53KNW%anDOrYhK$BxYZyii_7d)PLH`7xuXnrp@;5wvil z*K)TIf)rwDUh?j#r*dUD0w!3u45|&-#F&j3VNny6vlADe-=*^npQB?OjPyjDUnLIc zWrTb7Q@iD`0IC+p6=11d)0?Y|dzPis2vbaCRi(w*QWmFD-g2dt{Ul*@benQvNtZ$w z*})B@kx^%D$XNcmKuVf1QKNX5Fs)JfTNXswD9rd>mcw=3i)bjV#RHVGYEX}3WwCi} zcjK^;8a&`}FMNk?Bq2%5DkvwfA3U;{V9JGQw86@K+WtCw1`w)^!GK%_egzS+u|+^a zNZH%K^n^Jh3iZ5%5!b9K>At}9e7_`kA~7OY24&B61#AE5L+f$=3)^PhsOJ%SPl!yPsA4ERGkKYV4-|0}P6Ete=fFWV4lsajj zO3b!7^LiuCUc_q;V+2QIZTFNC+f>$7j3WPDN@0`(&xsSZo-|b*G(sS$q>F9jBx}8B4`j&hZ!u$P`kmkF#nM1844`%$ z$(USru$qUF7bipIJu`QU~giuC*U0nQSr`?lP6d` zqd!WHc#d!dd9h4tA%FrruW7^hrp2>7X6lS=O8fL)iOGb9G28@^f|+v}T%NJbDda5J znz}}Qpenj${km0{fN0>Vgt8{nAlS{U0OvPC)q!4ZS^4xwV`(&7MBQY59_eY>6TOo- zf~^G^+b=^T0YA;@za84m$WyMH$mHYKWZv`1w(5CT!GdUzYoZbkCL`fC{-PQpSd~Nk z5AN&VQO<^F&Iaa%*eSUKNQ@(bAVZxb+SKCA00RKsxDab&a7-p25p9}@LZrJlc#tA- z-aFrQW%G;ljoDM2r@6ksYPA3mer5GjtX&$7V ztZwiL@*K&`kfdZ@^8(e82GW(gtazH%fvfthu0H7cWw8FQ7k{q}C{k?xMjCLWIFMl@ z03uKR48FK)YVasrvtG9>ExoUQF)hvN{@kOyXs{40uXIMAzB8H-wS{j$@Cy$?a&pON z6evOj9FdiL(l535C>*|L&r;Z|TYr2;DogUZFEjI0;aj3(X1MekPfj#dF4xq~ z9A~}PhvD2tP%4dH+Y>^$H%YP@kZSEH6HP*aZ+eFFAtod}TFCJM63RWCo;BA1cvHDY z%6+?JFQ>Pw$N|K+L+LWv`?3MS{CAd@Rukp@_;Dg-(BYx@gcQ~MU|E&2iuxzhq0W=W zM@((7|1#|r%g)fFFHxBZ?uOLC%MUnXEh5(IHwtH#tCg;GvmU}S7d^>o33@c^PgoUs zNGL2YFgQ3cFfcJNs0zOg0|>Cj3etQCCz~Q?C8wHXW z7^_2ALg;enLOn8`1)+nvnao#|=Q>HMoCKv9D^Dt7*{l{1nhj1_T3P*-*rXp*O~*=) zn~WR&@t>W7;|(6)fOlxojn~cArB|cex9Nd+@MSWdie*rzro*88-i=y&mqMQ{HZ_Jp zNE)M080pWuT}`(~JM5o*fN;?I>4-gcmy%@4U}gX5{x+dT7rL|Bl@&HO$`dm~%Wh5L z;o9DfS9_QEP+*&JA0)!&@kl4t(FQ~6t}w!8l^OPCnHl~RosY^8!RWq-Q1RdQpnxxu z#3JPs(eTgQ^l7N0`=+9$Z$1)Xr14|#<_J@jK18Hi*XRKnLnBwN0CwIlOazgNzv>Jv ze`T@rhOOV8s*9hqN%OR?pr4;5eV>wr-V!bDl1YtIV|sQ*w6OyeSKV3-dM-wYZypJQ z0@R0EuN4 zxQhG&WR!>YHlbgt>vi-@3{7sT*LZKQWs`V#WR6DBZO=#u!(+w@t#0`6Wkci<;bD|Ym?`UNX&K_hM!4{O=?>bk z&EJG1R^6m-fTM^WGQ(e~EN*AxI`uw2Ff8XDKIcUZf|F3^OtD!-MQSV2U4>}%sIuDo zUptftW@9WdfLPp*j}@J{b3@vq;U@k+FTZ69P@%LIr{jjta*(P|B3!wQRKIPi;EjjX z@;r0kEZ`PA?<&Yv=&%qcg0MH2wkA2n_{XimVU?(vfp?23ykj}-i604aYX)|umRQL< zuCRR-u$74%b5=Ci+^h40?02ER3bUOyMz3S`zsXh-PYv!+zDq4c#Om{NWd-)o5T3GT z(?}i|bJG^y?uQDPWNj~u?-YhOCO~i-M4xiS>}Vmk{ z0s)9bz}x{6d)7!g7C}&?G5u3BXzOq5AU}#euDBRAk%rifydiioSkBgpZ1CbHAC4Av0Dl2Ts%2GmjLTkwBZviGGULhI)Rwk{ zYy3KoH68Lnp;EmdzZrw@2Fp@rxt3e(?Rkkvx<8@)5eTB1n3iohj(d6_!Dgv^p*)H5 zLW4P52VD2#>!|V>iIQ@)K?p@AEO1E;`$8!uwLvq*g(zx|RbRWrkKEC;4~4lX>X`Kc zK!dV8q9n6T=HyiHD<^lo0u%1?VgYSZDK-K7Q5+N|IaciH@g1Kqp@3QG*V+#9O`-xy zdQSAHn?%9tvRIXkRS(1QYOZs^fQ1OXOdWD9xkz%w>cpK8)6T>!btU@gn^`+ocJVcP zkVEp1XpGDY3=Q%mqJm_CpQ*Kx+-5a2z+$98@c8e6bMAuT4TrDCu9O6V7@SgH>-YGd zTImXnFp=Bh&R2@M+1!Y&Kpu_4T<4hDM$ud?s_2TDI;@$xaUl)^nQc(5jAq}fqZW*#XcU+RYic5Qp1kq{w{&f{wa0`BTJeb>>u zSWO{1x(gyomwO_XC?S@!7)NAie|`zeYOj@hi2JZMF0cDAX?TWly>(-sM!^j`_gNXX zvK5OKOXx@a`lashsj#pH_|A_mAf}ro?0ERnSDZRm_viK#AF6g$p^# zP%WP*XczW*%nigUG85G{m7Tbi=$=!bmY`0>3wcOmap)G?q&N+Ak;^>F;d_i@I_B#u z+tUa$qILlP+~3%pG+n#~zxKsrqHc?1xITuYtQTiLNl@EHe*m1KZVyvn*C$Mx4aIN9 z2ih$Gw#HE03qsdisqG~i0Nuc_cDN&*h*;a`t6loCl%z~IZK?;{{kgtv181( z(X)mR-yR;FeZksvk~GZj+dk(BocHaBWnVd|cnR}4yy*9IAK1H%L2>^)3|pe>G+z|t zG0Wt&8paQQfkYP935#8Z`4vtEs>>U=;$EK=$A28~^-p<)^nFDDE>I878D+`$AVH`1 zp`qlk_W8xG5IbUo`)EsQgl!PKE`Nxij`$|FI3(D=GGRo|V`(cb?dh_-b>EWf##v7d@oA0OQ+G{D<_8SDAv2S6+X7QF*6Oi@Tgh$#lh~ z&H-V(9Y#yRY#-{Yx(+wdowCV26iaSDfty~|PzQdeH~BA5=8dkn)WumtUr3j`941)aR94$#ELfOGnQ=zNM892myOK!=CZ$xU( zDK#2#4Y}sC9Y;Uf<~4S9N-x^uj_>un+rv5m5klT$+N48m=%0pU-hAOisVFx4LR&d2 zndZC@cO zuUma+?4D1JHno!o??7jf|BWJ;1o14d~o<4d~*C2Dqvhz}0(gHyr zlttq*q&sGV++sLyTbiJcb(C#m)+RR^^z*NUrlk(pa&X#KEyUG1p8b&%u zJTixf8Ld`X4r*>0$TZw)~lf>Bc?rhBbLsZ1PWn z5;c&-x*iu!0T9?NR)%o`YZ-%r6p9PB*6R6!(T2jOW$a$^G56gFK%n(#Aoc2z-SGv=D{fnq<;=jP;loe!6)8WQH-;i)YzOFOg^Cn~F>Zx38b5vo zz_{Ftt?JdZEG}Bx2cB02{&YU}|LIJB30OHfIVFny+Dmh`>e;XUbnm$h z^u2dh7M7Pld@e$}cl|;jnVHY!3(SSy%M+RlYy=aLlC3yB|0YxrpWunzY@u}8?mC_EP89W1*MI;KxO;0iko zw?TpbblHS^+;j8gSH1`U%Wp+7 zBSzv$a)IzA*+!AU!&{gz{jW`+5m?_MAzoQ^{GG`z$!$a|rxaOz@us-eu<{I64Ilpq zy-;UPW2`;m8`pZS6ogZ9z;2%>Y)!l=b}fVmz5#s?C83owzH=F?h6Vmc$yZ7;J-z=L z>2H4aW2OWSX2geKyjplGBgj)JXa;Z~Ar2LZ^(Zzec(l+u7%=4^7EK$Re~Fa~#}KT~(- zT3uyUwpjH)s6+VL=4(9L(rFZQ!hjUjXvdB0kWc zbb1Cc2V)lLr&42oK&*%KJ!oJZOk(&rjmj{T7|rgUa`T7(eo=hWarPpR)z|Whm`CIkBG}!aC-guT2C0JZAsj2>P=fuYS~MeCT10$| zTRlsK*gUCCGI^vbHK!P6(pPMko3DRc4R8p)G&nYsCxC%)V&#lh4=uC|8^^ zHfqP;(C0%0FgLLA;rNtHm`D@7_>4Rvnr59hDff<0TS0B<$Xh>U5OIPB2*r!_t`V+Wt{fY1~@v z3zz6vbbb&|;EJ@DZgZnIG1cZ&#$;ZNC^dh_HriBd%6kW)(W2wpZ8|hzq4q6Cg+S4< zu};AXU<(PtC6u!GULd`mo!&$lnVbV&IN;~mA9dVvu5cxtFz}_U6Zx5My!^B#)M81K zp7TVlKUXSgMCk{*In>mWWr(vR4AfNAFrSWIg%h5rzua#{D0>X{8T`Yb1!^;P;W#?= zdJ5B;NuNIoPVBqOY5C1Ri#-^z6sWR1bu)0;fkM!p^7w#SdO4N)R1moDHMYZLh*>JQ zjq>IJ{u4TRa#obF)z@qO-1_A62m?wd{Xl$UKCj_9yS-u<`~)g!X$!Y+P*Z3Lp1SXe zhoQ;zS%IoJ^&lSxD+`R~Y4mYYc8gXO7DBlIN%QtHa)AQj*^RW6@9C9tLhebe8Z3(@ z0CV1V8er(z8p<0D6B>d(bJ;AL$q1i?tZwa?z%JvTG>sV zjYXCb3pYuNS~#tI$Lo?^nYr53^BR7+fRV~EA{C{$$DgYsn6!k`0fV{!Y!F)ZX$N&o1e0*3pqP&7NFmm1o8P$d*HM zMsDWE zl*_+@33^@jFkzQ!&slHGDVGP`3|j+_a_)I!kI^uwJmyj~`kaOV zwM9Qt4e4xdqmyo%W%_08u0v}I-kLl)Ymcu*6dLPRXsEI@ZIO?2v>P$?U>n-3?#zP#oGCJ!D+DI%}qeZBCM2-^-T{fgq{apwF=33lerxdj#VKQ=?7J5MTl z3&ljq9Nzz&$`1#r$Lh|Xg?DWh6#SLpfuW!|oW+o1JlNRKhYL^Ymy17gQ|_tz5i zIVqdulenXnWYHrRQ-X+M$*Z*FG33$WgpAR4>WNlNdl0KUf;@rn zHO?>BlKBfaVCRcZWX`?^e^Ig1+1tds+)%yeeI`j0rnp-SsqUsYJ?9GAX^X1}k_Vsd z3jbhCL62j#ztBDXU82GTb<%+)TLCHyp?OS9C**L6Oy8)g255OSVO3bRbJln*RY5|% zh5VY!E$K|$5=``^PSPUpb4fgNyYb8-{$IMG-&5!Y{Is~sj0-o6-yN3?^mSvU{N`0F zEH`4%wwE>fQV@bnafHryyRf_E9Xup)q)|44>6+}Os$Ee*O~MPN)B|riIc{qO%%OQPpZ8@a^TBe05>fQzRjgGscv4 zR_U(?M%xhuZi|2LA4tjGSRV9CHH^G?RE&A7!e>|vp-ruWB`z@YYGmngd~W|H(AnPm zRw{vtL5mP;O0wcE9_-z7t`2ZYOBTf!gus;FzL*)yzL*tm*}Mtk;hR5amu4yFh)U7ueQKF5 z%i!&26&zUnLxy)P)nY}@F3UnP4SW@9;qw6lJ~kP3z488F7bi*IeK72Y`Gv#sqghqA z)UP8PDz)FLQ@FlYl08F6PjR!f#$+=d15zFE82fYhcgP+18ef}2oq_`cb@ZiL=ZI$< zVD7q-F8Zt6xsrM!TfqVmtKM~dc^Ch7otzBB9wD0Ut%lf!(|39OC~Zweor$s9;`l6% zyz{7|X`RVyOtaDgxxd;TZ~z6L7ezoV+~EsC!CrNsv}ol~*$VfJo6;$mEq9bNpj*d= zha%)p%A77CJrLagcZU&mo}SxxyDKR3v^V@_U~CZj-Qy&+j>7P^IZl8+ak%!%PehLp3{H9=mBeN5#q>dxC4yYMU zu%>kLeiS+%cC9T$%Kcg2rsRJ+d!?t7v!3u{76zjvH>*1l^Mg}U$Tw_?e;BBSPA+yf z42@_{P38n_jR+1Fx_Fzu)pBmFB(*!IvH;FkPFZA1g36fH$~^um&t4 z5@a`jk!>R+lGi3mKLx)|JBXxcMC=m&t}+h0_z=yn!SkdnxJhaH7es$^!Hr}kV-;Th z2?0=&AJmuAg!fISt;8f@C&FlR?nHWICv|asEOqhAGHd0+o`{q@l(PJLxb2F|#FS^Y z8#JDgV}mFYAqWax%pAy$&HpNi~pOty;vdtjawR1Kb%?W*p&8fi?208V{a90)#7! z{C99#nKBiAVR`AgAOe?~MBF-PtjZ>$&1b&%x%aq&t_s zetn8%Zz64b1)t_*Cro=$-@j`t=o!_yeVZ~GpZxBjWd9ex((xXm=g0lVN?1`A26LGO;4F~WJmLvLw zkV?JDq;Hr&a-y}OndXTCJ1iw+l4W6_FEwbj0oqp*qaS+m)uwXXi_z$IV+k<}ymQXs zU`?7ctuG|{$_=dpm!j~IGXD3i>mE9;1FkCis=vv*ziItzJ#Z}a4Ig#ZOd=5Z;OEzg zR`Py-v_oymo}bbRmy&}*5p>I_0;mI<@jLIXIxlEu=4dWL5M({5f8SB+Ft)rPvxOsu zagV8W-t8PjS?3x5wuM{GR(&%=TW9i%H40C&x1oKH*!-48I=oIguRP=Z+t+_S_+bQp z8c-1R6cWwY><2Cl<3P@HYbZ_bdmN12u1-T~zk>Yw;s!jf&5Iw^_0@gF{6!_*Nb(In z!MB1HjZr6KPrjolM3pC{?`ErbnxZ3C`9F_7*!bh<-Ke6VT!k?GGo zsou10(6Mj}Qok9pTXjqKhA!`-lO)ar>bMh3d@@S!?c=*Mml+Elj3rck+|@3@C}BYH zBCCa;dFQY+bWjOrCFUx28T7LaE8$+u3YN=oRs4v@^EfW!Q+Zh=qXxUaSVT96^f(67 zr332^ItJuGkdPLL>*}vI*@$l%I{XcnN0a>?X&x{+tu9x;#cZ003DftfJlA|dKTu0p zI#9T0J&Rg?d$YfgD28sD+K8YEXnh%PJQBBeT15S=f7b338$BrU;B(n z7Z?)oq8um5`-|kZZX-yhH`uY&JnNlV3-(JZtO@Xe*AiC4fzuuNLEas<4wVV7mEq~)LtW(p9t6}CdNQNQ`;UofO3Wj}fPpT9E@@o>o5e+p~UifIAi0{$@ zI+fSSy6uUDU9wddP-$E^pR^vtoqR54(VqyA?a}sg$7Fx8C^oA$Tu?2V5Zd&Dr#@#s z{bsL8`D6t?r2+XYU*T#>Sz0*GB8~^*JGtV$RMtME5;D5>S3fi_ug7~bV&e9n%1Hf6 zXU9`S&OCV+Q=JX#@YOCTuU#>Hn@#biNMoj|%;E0Gw@NTmV*T!b({4pM#?vQwV~|Wc zDZ;kzFq;At7}y~~l9-JIpiQWW^`XRJYLf02S&UtP{bM1tco4CqS#~yAjSv}E5!%-N zj0(Sh#)4)_f$a@`%W&M=cr8uUKwdlVo%jRAGf!3qlV&cNS~uJMAvf^(Vbl6DL-h0G z92M-chPHNYvz#4KW1ZJVnss^n_IQoCeov?L9xWfIYUa3+flJuE7neP zR(}1gvVasrojVB$*tNWuII?N9vIkAEp+{PwCW}+6s@}O#SZ8G#(ag%m9~u79YKqb` zOTW0DV93-P-%**Jd2Djqp!&W2+qRB)rUh%B!axWelKXLj?a|IRkw>p~D$$98(zbqC z0epZMm0-!DLY#3$L26@>A=0xXH72*P!j1cT)GrQ=;$q}+YtC|P6hg==e8@Pw%UT(g%-qEF9Y~9(|7tS@R z8d-3XLZv4MO%1inPM(0zdBDRlkDpTA<15Ubof8hqLSasfpDt3#=ShQ6cZvY65%0gN z)CuR0KfzB`pt@JdXs^YhD^eCzKkxMqjK#-qOh>PAIAaTljvsOAB1RlJr-dWT)W(UfD!gi zknterEmJb-)?Inx^*Y8e(PfuCBNQuiqeZ(qZNWbPJdOIKJYt_h;c%Y?6tfOc7XRT^ zPowsEpHpWEWM6H22@u~|Kfja1 z&as2=d1{Hpt)9^BJ=%UegnyS>f6vFac$_l6zrZF>Hd8R!qsVqk{4(lp4(%TrOo|L z-SFE{4zd0TQGpLmSg@!?ZTwa~t0(mjmQ&~JSnvOfsw8bq5HvV?VIl0Lag_)_fPpPS zC4CE41ys?5y`Ob-aHE?fYbt86nT@^Vjbnn*QU)zB%@l23f`Sn@tyUbp(uR9?fWJd& znNKDG57PLDEQB%8LxX4+6FI`}R#RtZkEF&u5H^1Yzr`g6#|WtT6vmYaplG&L7gZLO z7ES$dlGO$|f+X7Arhc6Hi1*darqucf=G=t=!0;=IB!Z#yuN?OadC&OoqgUNXcn<)r>m#~9Iw#CTkwmp|_M;4b4#iey1rS(E{T)fLG zdv=4!-sT9#XugX?I4umDw)^+}Y}lO#7XEH$H!hWTEguUrT*-0w_A)h= zv5titewz!V5xi>M{X1&ylqnYdznC$l>lBCv%zkebbJRyN6LXEFeZF!4=6Q%_%X%dd z+a~W#cs#p*_-@bYPoKa3v0gT+r?I1N01&wbJ_P(SK}w|9mb2EWp``~Byh%p37b_*vEBhAi0{<;$(faQ^G&}?;Deg#>(ieNSG=B}VbVc1^KM(9^t(+vdn%T5$b2aJx)m0Kl^@Pfx_n>=3 ziJS1t_m*FX3RQ$@x~{jRKkj1gPm=__8O|WRb60KSiA68fy!;H+3%0ZeqPp>oqnX{9 zm)29YdAD@Co_7tmaog;n@sa+KUCi)5@fRyw@McsPR--$$V7CJ!q zp<*_~;fQu4cncF>dhb~Za6$D`Pc4f4VHX%&9~uu|o6~w8e;wOBT5Rg%+jMqN+d)U) z;Sd%h6BK&q!v)6^x$5q43D~y($OeSNuVUfADeum9zj}qK7N($mV_%0g7PnKicuUEq zJ~qe^6yJf^q4kQ}^S(3ux|(x|;TVA{M@QxL6)PHp8y*Ga4DWnWC*D>FT1Xl9c8VXdO%+%94!fRwu3 z8?a}QqeNbbdTN+=jpmYLi!ptbeJ8{k$NI%Fudz+~kn0aqEQRiV1dCcVmTc5Q1W}+{ zluz)wbE9&~1r!3_yW<}4FS0eElUPD&|AjS7l1C;vaIBYqQ)JQ{p;J)uTkQ)RJ$WJx zjUoYi-;X0lx+D&ZPI<4^K>%85Q)oFFSB8r{_q`~_xdl6=kekG7GyZwgf2+&4(YQD8 z4Jkj=6A^wwzwXYA!r81ZBv`Urh^M}|Rd$soRWTV4rX{(m-w~wKQ#Wm*(Ir00rlwvS zuxUpE$b6RYx%}qTyFKY&!R?vzTCxq5W-yVt%ncoLfBb6P9vihJgx&)uoJX$fX?Uzn zgbtPHlEppkyo_v2BrsPiI7Z{3-WJ}mjJORuH@%TvF=4Vu867osXg{)}u^i_@=mo2L zagSArwJW(Iml=rq*UmpI6OG6>NQUp>CA{7ZsF}IwtFI2X5SOhs zn;gUhl?C!^Nsv`Jk!^elJJEPR>3bJ}GjyeigfGTdTk_>}csrbUORb(~0$pcy46&^N zpENcsM8`b+MMotwE|YiBeH_Bv(FZ#?!U~WEys6cu4GxK191*MrAplvJdFUee`5t|- zjItM4TdeERcHx7^_bp1PAd@nm;Ph*p(rXkc2mfnr`;FhZeVJ@i=!fTL?OM}lysLR8 zU1n(!xbVU=Jq$vM0K%0j(k;8iGv5L51a%XDK`j!dnHvdL;~C`zZ|jJmjy_7fP9BTd zu4&{I3GP@z3BBIQ;)tbDy+0YyxqN znC4G(yf#)O%P5eJ|kwNs(7#OS(b^uu# z8Ix_#NKTH+0M>j!H@rL}#dJ1j^2W6{dkbQM(CmWjU>%uK44 z0m;fBnsW>cZYVAbZUigbeLjHcV>6hkf5DwexChLfb-|5Mbn?Rs0Wv5xIEn!rlfX*z zFFG=cP2PAhl}UIyRDgZ5<0TmxLn8|yRm~6CmKORs@CYnq!%h{c-RQ`Pkaza09g=5I33mo z>6Mg@*3@W2ga77o^ua8TJnD%+=AuGo<6r&D5OipT%VK)#h2^e{X6e{Q`HW_V^z5^E ziqGv0(TXJrH<;5Y-mi<#@8|Dp{@Yha-*Z+FcR+X~BucBX5fA z27qWWC%!bM2IochL!bVOpa%Qpr;q$dROYKB_1T5X@deJ8G|v4@{VV3$M}^&&JjXXf zhU4h5V4?7L*+CCn<{;qWr8wq$?uH)h{Wc-S@t(GID+sAxQ=Bl|224_12vb-zD5w}# zAC=u@d{(@QK@Q$=K`e{-T>K9M4z+sa96(G9RlZ%TBGN*>@zf+Mz`4!<6ItIb&V_Rx z#W|9JoHpkK!P(&kJuV7>cx01*0f zm>>c^8+&&#Mj}9IJS(k^+Wa8yV#;;KLxaTpx8YsotLMfAflA~%I9rTlC3gk|TviK% z&KC7V+F8u2!F<|YecuuEhAgGNWUlk}FH1h&ECQKg-;MZwURr3uLjxC;>Le_B(vr?u zUunuSLZnk${h`XFGMSoq^2 zimkr`V~JH{HX0PPmueBWiC0hJ?1d++VY|_JEl>6*h{4 zqVYn6_$mQlbJsRDFQP1@7Yi#tJ+g{hbLQIZPX`Ga z;?danhzE$4^}}*^)@~u$xm8qbfWW~*a5KB))eo2>i)F@!2+#dhRTs*_QW=-7wo$>; z#Clt6+jWBH1kj8LzK(`XZ@{LX3TjnjFu~u3`LVJ)tE)<^%p{I6CT!IqW-vN^u2Z=V zIs~A``gVhNZ<@+WcUKdr1C6=uLDbbrYNzo=j@wxqJh^K&e^!3;-%Xq|d0k{otESCa zT?1GJxok>cR9$Ardl09QXIWvP4MQGHf3Z+&OAu4x{^)c&3WEB32w)M^bD7DogoS#d zWhBy}waSGp`C7YeN*P@)r({sJdZa2SC0w-^O>09(Igt2-!j6*I*1_H(uExVQIXU7N zF=rNSD!W6wYyCP{@@ z{O^Wt!5wzS3;#wvQ~L#&!+P;EwN;u^$ z1uEg-Lh&m7UyE02Gw~c5ZC>Sc{mJrq80B^{^~?Av1NlwU2ygM&aKb)T3WMHA*C4hY zRZj!dcRA;rRmTXheLqz^w6641R`DLL!tfueco>p$&T2SM4gk;IB?@!=80d+#ACC0*a0}|5G3uLB4S&S&6rJiIvLF+TK5IA;zZ{ib0TBW3DjO=mJn8k?1Z28AV~61u5iq9ugPCe4USpE?k5>BJ`|m7ci88}V(|l+6Ciev%(`Z1K z6jc&q7+txBY^iOAa(TDMvWUWPY}H8^4H?t2#oDkGb3haIbR?|jVPd@_t;^zx%oH`J zrK*9tb>E!WINGm3UZ|KHo=s{0HWNQ={eY%25p);SKSSLyN%LodQU$K?5w?qluc%i#4;^+Nt?2N&v+i&^obPP059dEqoBX2@b0lW z8$dwa=2SR?s(pXGlY}TgGc%`)HR#M$>=Sx=1+dD;g+xDCVM(6`SiWhFMswIfrVa*;+6g>^|@g)QS@grMadu|C`g)nflPm zYR=g4^gv_tnw`gfwKHTIw2ZEhj0I~<0gy+Zj@ql2pNn)*#~QljFZvmK7rySi9Oe-SbKrObJC;#ENB@tRG3P~PyH#dIQ_7WKK-a%!?n zcm3l6ba_0j@0&1VQ#7o)S>>!A>X@;cMV!}g1)dL3KQ3El$hUeZu#`u|-_`K(1?XT* zAt3*4oVH6l8nJSC90B{#0cU40_4GZk8fb!D(ZBR<1d-i9>mgHA=^*2}%+sRlzde7vYd%4+@b zn6AeT7M)Ms7}k@+Z?e{g&0@?#< z&A7+10TDBdEatzH-t0a%*9LVPh;m;_QfY!4tnj!qV4xd=v=e!)+7nWt91(Obt*%~9 znWRpO9($zDH-`S2(J^HoS!!e36LQ`>Z41>X4!VM5chMSxgxN^mm62Ds1(31dpmO9r zcjjF-`AK3mL~*Isd^s&mw_e|7HDS>-MYD9DNMBD`1>=;=Sk$Q=nv~SLUh9X?&Z!Il zlhC8ff8v=W*F8rE{Pdj-r*Ng+vWQ`<(cN|K3}587)S!I}iJ?2MFBRNc-mVJ^adG~w zvZ;T0t+AiaoxHDsa|6Cz2~cC(h4J&x6dd*QXEnVP)K=1P%ha+e{NmX@^a{LMnM)l? z&z^-3I^di|E7@;~v?2%(s<%3WZfueSjntA8#k3XLNvvhi!cK%FF1!`Cv30kLU>7 z+xCf{RAs|x6`j97wefKNLLr(tbNLj$EpVj|?Mg|$08;S?5uNaA9Qu`_8u$Yggah~J zB)kISg~&#i_B`CYU&Js9$gn&iC~FefDYO-n>Lft(Q9KoQA%_q4pwqTW42$D=Zn=hg zm^Io*)W{r4gAqB^HOm8t%o`55(3`2UA?zMMb6y_t`f6zeHr*Hy)z1&Z{>OjEr85p5!L<2!+e z7dN_G345#Peqa|jPF&OOg$EQ4<{FNZl9^|IwRMz{tXXYghU5a%493;s_>kA;V%w6c z+cWbYKZ+j~$m_P%*(_2-NEOW+4^9^I%vp%50p(hnV>^OJQ*R{ZGGtk>f}Cc>O4$K|3oii zcf^!cnAiG-Sn$jK5$GRyE8x4%CbbhB23{Z7&`SP-JZeGdw_e6O(*z=a2d&GbVtdQm z(~t*>j+V1B%B(WhV-{xew@w>`CFZE53kGYuF_-qU+2Y~2y#n;5`dI&U(C3~%e* zhQ@i4c~bycFg_buxX7pD-VXe=n?~y{I4ZfMwH5QW;HYjtl#x!WJ!4dzz|IWo@Z3`I zn)G?O7~-TbVbZJvJhm&8>PoCS?(7P9Xg?F!FQkrUXmzI>k2Y*}c%pvZb5xl{W(%fd z-B(4BHfZ`*XaN154x8#1N;fnQTdzjzT(p-jP?G_+Q_?v?Kn)KfrsSCY+OEn3+;I2k zUiW(Q8G241!**c~NA8$At^{rL$F{YJdORxAJDsT~OzeGY5tq)pz}~-7vqf8Xok#8S zWuXXILxD1hdeJfA+L0pS7E9I^JCeJ|R+?WVq#Ma8Gphpeo-iskj&0~QI75WtS9-T@ zep>+iDQo&h+G-E+1czv^Ml~F61>Y?4gr;5!OQ|Gk@9Cz%5XH~% zITZ)f{8&Jxinsy`UfLBmcH-zD^oBE<;rcwbhK=r$PG*wlNX3LDZZjNSam9B)>-`gn_;{+^UeK>Lm?-79g!=+;Poj_s6xX8{3YXu&!-xy4ki_WMr zW~+DQHlnxSB4;-|sccRg^U`gHgpH!4JREJ$Nv|{#bZ4=Da;hNWX|2XxHTYZDX$#IrNDPpA!n<#1r$OPMftK z2k>1reB`WNix#`VMlQu6EpQ)rj@{)rYaI6@?n;FxUfKwdtX&r#NfrFwY$3>a+(M}bTy4S&@L^KA3nk7`{snl+7 zv7%)(@zCu#=mkz!?8!j0#R`}M@6}s*%)Dr?X@lF0HMq+>%<(H32bhF65BdGXm6;KD zJ3Y>LHa$dYMXw=U$d%i*XjK!=WqCs4@fglAqw?><%3JY5MOxR6h2X0C7E8dyUlCe6 z-|4sfDjyVg0X)2cn)g`4fkWG1!OkuTCM*fEPBd=8sqA=EG zL`w(>r#=OVYg^OpKtrSn0RA?bY&Kck2I=K8rCB zyGV!B``#diZPmtDldQy_zt9dZYWF-H)8py($E4+Te{FcMrAU#dd(Z(=eFd$|6*Q$=7+L&F2boMj#gh}`!YS0|4B{C{I_g4vdlYV9* z?#X=;D#?O@qk%NU5Y~Xgw}cyAO=KHg7{6!0$HA(&3dK5zBP;deE<5p4*>axL1n&Dc=1&Yf7q($b-y>Sj#D zJrqZG#BF?+BZ-8ur8fu4Z2-AGZuHoL0UCk8*zy-FfI#&=s)tA)CAyEy5C>n`{=!QX zVNMcT&i%nXOgE8W4;5lgLa1RvRQBD$M8cfr$4hx&jkNCHLoS5a&_+RcX_KgtvHoYAf6WwLUSmYHRsX50evU%Q z0+(x0-(@W}^4jhRxtI`1;G5JWRF2&F!GQz|pmSoIz{!2fi%qz|$N39}u8ddBs-9k7 zF($z#BhQwkY99ue2_8$68v4oDan~|0#RCt38+mq_J72W)UPi)-< zAmMTvW{@^+DvQbeR8(a}#|M_;&eI85cIm*Xz#D0Ld|ImZL{dZLx)xek;Y5sI5+$|H z65g{6``v3tclH#cifp=`N#koqw(}FT;@m>g^hp6y!)=fYr)E;LW+wKCL^DGVJIM{g zDzH<7t2f9v_~$#%yCNmsr<#WG{)?#`K=(CE9vf4=eIA|Fj7*h7;;}KRv%;fa*y%5r zx-Rvf^u8t? zb54&t?`gw=>)BkoFW5c-lwB|Kf-P!a1HNU~0)E7awPG%qAtA(Y*Sei%Co2jE@U6~M zh`TVj$u(R!dn5ZH(^td(0og-7?HrJQa8@duWB)2xog1>V_l)!9FG%wO3=uqFlq*kz zZPHbYcDp#h`HJYVe&PMfBM#teYd}qXL2WcW0)ods(qH{3wd86Or z(15D*FH6oKU|Y$vOQ()ZxDpY6VN)iHV9#U9?^j$BgLbgQZcE-%s79xnB1bN#N^-@S z81k{{BpGK@W}rb+E(;eY$ql2CSBo5q(8>?TsY_JIIOv|=VSSxXQP7$Lw8rx%+JK|i z$)RFO`}#^+7gHohqJ#3TKZx}=ijYEXAzP9JkudWo;gnd4N=})Ls&fubBlD!Q9pph} zY$EfU2idF?*<@H0SzpJSN({~q%GAloz*(C#p<%*paC(}~w~aUWG)m}A&OW6Q(PHa5s3U?+|v{W6z!=uTXW{UXtO~b$FMu{6D33TU5jgQ=iiWcxIoRpL{ zxg~bbJ=r4g7%HRaA3eRf#fqvlv>!p;UR&ARr-CJ+X(l>6hQ1bZ zuLB_wlV5$^IaSFiMsjG5cY`f^`{C+;X)4}rb2BrJ{WWi3t0d4z2-TU#iam3ok}meB zt#U9he!$tVIgymPr?tqnuXpC+nCFSC@<-3za^0r4Eq2reMAXSjR4wfJ;6>wZQVHB8!X`RkY*qOi2s!NVn)pYNkQW#bEb!C&54ZX=Pn_ymlhG8_W?O|Qr06Cm+ zEdAQw&;^_*T!7XEm`&F15Deco5)|}coFwqlHx_*nA$uGh@EmvqOEMvN&U!$&)cvgT z4ZQ@fAI@|FJfg!LJsP;4U@!Vk&o(zs-|NZHW>I&QydLrkUayU7dfu3lkua-rgod>J za&;%V>(CWOw{%+FD(1~9*}wu`WtSU<{cgsr&LO18F>pNm4W1rJ zsk~GP07n;zEK!nA9Kxm>%cU3v7EOKS0uIOmT^cIe%m&C9Y&8DZ44@?={**1Q4YV~n zBGZs3Vhdgx5dH>VmfPK@t|TvU!>-J!^F{>KTbY}>u(qb(Qjf)9GlIaWL&vSfm0wjX z(f=d=Fol5?l-+OM3cum>GyRstZUkE|{FhY|z?bvyOQ?tB)h>U(>L5 z5@DRFmJ~PQuEbzi6CuUE)a(i8O{_G-(4iC5NPLipb`_q$$Zknvl}~2T*cIF(PXI7# zgjzR7h_mO_>(>AtaSg;rRS{*067MEbX@<}z+37Y8=3**Xy0a8FI@r2$FhaXoiTxr9 zAQaspAEmY@W=*2(j{Fj)b8)IdrQX){D|>39dOGuxrs)&3zLk6;e`%XO;oZPMTRj@W9T*L7L{FgagPpXUb{^q@5Xg%i` zmUJ+BY`Y#zS#l<)qHE<#EQ8fq!SD(Sz)jSzYL+V0*0)OfiiGaA%_TE(bCAy1g7xny(|9IM+0_Icie38HyMhlhFiS;&pY+Y^EWn8t-&4Qa~!LQTwlilRH}x@ zGpEGWvBj;WB`JA#PDmcs)rBr&9MhV?)!Bi9>S)W1BlvTex9O{<88441@0s{_08Qg; z-~5>U6QdJ4uqR{3`_gbEd+LGmMO|cSLJPzuRjML2!ZvL>`oTWcpgU06(Rlr@asOZQ zdKp|?s=WB*ZQ%{`Xq%z?8=rnncq3F^(W^{yEO{kJ+|rG&n2Z>1|T zTF!UYQ=mYO*tgta)@36VakRM{&377{mbD@7*jB$j!?QiZ^Bpx@oHaJNoDq{?ti$-8 z%3l}cP8*bqp>MDTe0n%2cu0G~bbM40kV|S15TgI8SUGlNfZ9=$ASG)WZ<-zvxCquV za<~~HFAfsCblfUZTrC#TEyXXOUK;s!n<&bK2BC(|mBg0)5WbBydJ=eag#A`ivqnW# zQ&aQuQ`1vdchU7f>-=u}ZNVbV07}v0^StfIees=n?PF;0`VO2yngjh}68gLZO2iK{ z%4f3$@Ua12=S%On8HCLF4ECT2_FJ;ymHc7N?DE-ye`F5=i>P64&=?SAtN7H@bNd%S z+0sfTKCoeC9_}kaW{%_fOCYRpW}t7*_%yv_3b{r1Jb$E59f0YLoBt?3aCxnaD^^J_ z_o+U{2|juE4Cse7AI=AvIvASo8Jv+lYLgq}R~-gS!zeMYym_|qX&&CLb+YuH+_e4Z zT%zuz5t`_QHGQ0ClUkrc(|`@W|LBzPN=Fkg+?#o6Tbr>hDj*j+x#O{3{`msBo$F-l zzkK5%=$LpyVOFo!e6fr%y^#H8 zwG%+nzuCDXXTWdybCdec{m7XUH-D+fZ<~513<_193nN!S3q_tU$NPoFS}qv%$NE_G zycP>{*$qRmH`pTSuY*lW*f;UH39t|CZV`c+xE9(WN=+&sbX4Xt`MOkxWywY{5k)2l zTpZ06dzZkqw0*+4fRVhTKBNfrX}gN?9wCq}rfaj~`o zY6gzVL4T2CL;D4hNh3c=;z=vLRu2Eq$l^0!{CKne)uI{>5-)wp&}^y7C6jb|-Dm)A z@bCcx2=@*Qsf8A88Uw>8c$a`S5H(W2Ic-dr5b;6|H9b0YJ0Yt1;#dOy&whYMD8^c4 zT8K{xPnSl^kC`c_Bf9QzF(TjGfkk#%MnI^1S_F%McbqQ0cj-4-^5&R$+3jY2}~ zF{DyBxJLN*{i#Fo5M|@tCUZrvHu5xlNE)(@mgSN~_tI&+<0=Z*oVS^_$lgpJJ=Ud^ zgwZx#z)50Ep~^7^f3`zcY&iS}dmk{1<292?#H5&&Kkql0{J?pQHY^=z7(75CCA-$l zyo9TZYM_968Q3VKxss1%p4zvPeR+vidSa&=Y-M{L`phnCIu52P30hocTBu`Q0~(F3 z->!}c>$ogm&>*;>fxGW)Wc5Y$Ib8nl(>1i#Z9j{OUp#lvI*H36SE{;O+3QhQyjJ^| z$%1nC$#1 zJR#qgZV+v`&8&HTJjG8YXqNmy{;8rwe~1ujr{0xrJuMz*hilL2C>Co>G$I6Cv2h(@ zqqROa)n`gCj+8E@aIL6A%&i}cxNu{&AwvN*3!1mG$p|(l`Gfqxy9$^cz;&g+JRA%{ zkD;uBL$Y74IIvJ_pz{vo48()v;lCOk(U#D6947Cmmcc;|MR{UNXLApXIwf`LWmWDG(rtwqX`ai$Hh&Wj|aYVG@Zv&<$S2Uu3SE zXT&#`KQ`W3OE57@>saoCd9C{D z&@Gwnt=_H3)@pe4^VI$lbRd$G%rqH!iFGagEaBcRSY$0&#L7V0#DEHK1vO7=6DIGY zk&P5%-sCgY!lWTu7PJC^z1V#_4js{rBr^0tz-~VNYc_DQ^UG!tYv5z0$uPnpiSY2# zq!x?@0Em2Mwim2MqTYtC4GYcBQ2dOIDL z0hfh?hbB-(rh#G$CZT^K*7T*+(kzSEbm2v3W<5u+Rx8>SvZSw%(g5qiic{at4jWC7 zexlX?ViD=vpmB9k#WYs5-$Q3}cY8#TnM(xhK?MHL6V zv<9)B`Xh-DgH0g+j@VCaZ$!;c4-b&~vsN9kWQu2D@s0d<(jPzLQ4Wh`rz!AJSCOy$@I9u=Bs~jOqinSQO#0BiG ztQr+YGTc4~kL4U*Gylir#3tS47hutRMyevK(dF-Bs-kR``MDk<1xI}yraM{ut*M4Q ze-ID~-+5%uu3E|IjZ)8Sw-@fw{?i1177#Ge*LexfNetAR$DBtdFz!2SRyUWQrCLK> zrlSVT?)5HWDunOS(*to6!bw?yzOt!~Lo0BG$!JL&ZTnN92Qn#3_9Fo|02JPdGZ!!G z&(+to_oVTIi*t@G$Dsw6C_?RRQEJjTtgAXFfd{vB>otMFsJw3bN^iYKY8Rl~Uvkvp zBc{Bc47jFIQ60W-=2Cs(%4+kMhf-IWg;}RHwu*zK(y}QYIBn8T1uXuA{HrAOGv61) zQ#ab~39_7%bEJmIZJP7%0Jx2Tn2}ral5W1X6l9@|6#{cp2EDszG0}FTKTtYY(|n(U z&-zBnAX(>4T6`fY4Et2tf&nz zlc##WUh{dgDpq%E0k|WZi;HF(MuYT=w>K*+8b>h`v9rFmK)9sXT5obp@n6k3`X|XeV=| z7~vDVQiqc?@hFNq@0ec4D-af5L^(onXB9{Z*SWQ@^T%9y0A{JO4W;0Ymb1}V)W5Cf zQ%)zuo-#%UpE9J9Onbuh2p;@`yCVqVkD(x>`hJ-Yfyiq`7UvdyIOD{ogg0&H{`QBl z{dL4#wjBE9EWCpx??8+A7TA`AuKq`jO-MDnXkSudOdAq^Lbwg3USrO+Jmm1+o_mFB zlf|XFux8Fc3XmvkIk$2~p#(i^(vJP~Xk^d5CDJ0=a5j67(2m-0JPY>*x$W~HU-@Km zq_6eozPtdDGmp_f{sN|iAa8e_IDJ`zS!zL-Pqqsc_LLf6?-0*vNjOysbBr(>RkTfV ztv~Xmf<5_&COnq*9_y>cE!1F>cXZh-46{U&UGzl)0L(s5cCi6S@L}H~J|e4mL`s&9 zA?_iqVxAqw5osXqf1WUkhf z6<@K%GKA#0&!#OR{0chbo3{pYn4#yo5<4Y+rK$lPFq51P^gRsm|5H&!|{sr~%0+bPOU_pAxN-SXDV%hcJ2a3DYy1?_x z#0G31oT}T?O3fHQm|grU5~#DXLm+}|O_yNR3=O!Y*qgR#gg-xct&l~QnO5Xk7SrS)9;XDfynW~Vh3qRUwUCX z0FcWas}X-hUmBBJ8K{I6)V|EiqHLvstp#e%i7~i5!Uc2rEwKBCjvsGXlJE{{BT48#x)Vgg zP7U7E6kW!yywZim%P|H`kuLIbi}0>4;1n+`3E@U1_tTG8ic%GVUsSTrkH+b%GP?cj z=Ir?LdjGkf6lwcCE3aQB+qYg@YHgP`>=@0*n9-0m!TUx6~3DH8i5BNS^+yBz|N$h zy7vn9fbGmi0Jg{{Wc$2uPHbb1o9|}N0{A4-XOhAtQ*AWq8`cq@Y$>Z+{su+=nbbdp zu=wX|`Nw)agr_)4e=z;Kb;N)>t-*cPN~8`*N4?$gh9qlBUw`DS3sgHMaXunZ?C3r7 zA@WZq}$qG@oqmbOS=pdgz6&DB( zV&8V`?kBU>8Xq5|9rwt zIjl%H`1p(%v@n}l<*bH7*pyaz&_B(Y}zVuE%2g5leP*ICUW0LNKfj>cby zEVNC|4nrxuemZ+Gq^@HHh44z=zr>A4K!Sh$Ez!Fcp6Qc2MPKKO0TrB?N6WRRQ6j~W zbEYcvs9?+9t{b3{beK@}A@ENOoH9pu=Tke#t9h)<)DD;5ZFIpkNMgkVHT-j!1b>Jy z{)o4E6|dE|2r(eSb^A>M2Y5iy>WVV*fS~Y3r@mw-`$(}SM#Id*_@fVP(IwmCzj}a7 zkTA=y^$T+HTUPhb9Qzl2f#KTmczngzV)bugE@`Ao{CtJA>vlXdH(4(ZGJaf-wnXEo zEQC$c7S%c{6>37|Qx+lS+=nURe2xx{RPRhO>taN8#@|(OD~A4yFZ#^W;xBB0?E`SALuP3rYL_Fr>Q`1O-zc9q#WXTD%#Ev`54fxDyv=Jn zCQXGeUD&*TAu6+?O#zIhFqbfK834p`g3;QacwbO!3vEsC2LRBYlr7u-0s&HEVvIHs z$q_V*DE6{lzvo}ZX*v>4w*Z$jAfkl%T-@zp@0g9>2i-O-PSDZUAcIw6%G!p|Z$1@=onj zOowuL0C{G$(;XEKWukn$;+R`XdZaS)2Pk zeL~aw>uM-BYe%8)Hk6~j*i}9;8oBp^4?Pa9oj(=hr@!ZRR4oh;FQm$E2PR8H`9t-n zxy2&|MaK|jrUf1ThGu1LZ7PmP{5^*7TMgIWN;{Z725xy;Ci4cMPaDT(Ft27kIY$X| z)0H1NG59V|cW_Jnnx3iRgJ}BkE!f~I)kX;8L9wr91P%g%0}B+g5(E6kQAhhifRkfM zI}Xfar>K&KLkESgYPP0llUZ0a8WS%Ix2ARXhfYJYaIy#!`~GuXedKL;0c)=(tC{nO z|ApX|6F_8ETcq8;ulKZOdF=>z&-8scs4)cmbb=6+;tJg$NhZ%6!r!ixYK>GRuOyi& z$+?~5hsLgy)*2Z`;sD&fB6SNTb3XsPDFR1qhOFfea`qXb1<>`QJ)Ax&h8mUx$JV&k)o0`rt@!K^ofWkGGg zl4PPCjXAEvm(*gXO1+vHp2r#$ zN}A?-Bov;4-i0=^UR<0a<{Y1^p=zs*M~C%Rtx=u^&W$Dj-3+!~ zY@!nsiMm(AV;Zuyash0fbNToGNx?FY0V@xK<(wR>?`ga>$PkeH$?{mq`;Zw0{g4cJJy z<)FZlP+U*CWhgeEG}0L~#l99rj!#h*QXZx=RIa1VAJlvjvtoI=6%*5zfM|yjl|bJa zXX>lzrN`#5fs1qYzcyQR9?iJMo^~CgB@OiC2`Hh_MSH?!x?27_E0b2FBffO?6mF5~ zr{9$4f(!6FomME!>A#0L7+KQXR;@JE5GTAtG?)uyBuk@HQX2& z`eG}qovqkcQ{5*<`dbNtJ+-gt(5lg*t%yov68|yDQrp4*^ z5cf?i)UYFe)AcN!0{@o$%W=-1PZ2Ogin2%Eexl;u>#73(`&JMrP)2wK!G&{6Peq<< z<7)FpnRSD6MhV}ZzJ`M=$KH%B5YQ$dxNAiB2{K76 zULU}9K?gN}6=p6rej7?Xm+8u)(<2V!`HRx?Sv4opr3W64g9zU^%=mL2*(@ZdR^$&W z9OGUawH#Ey9;5_@ukg+cR^*)P1C*(Oo!}7JRHv{ZSO7HfDJlWyjfU;nHD;aVVc$h= zw@_l>Diks*>|lTBplHO+6;i!qP^4t7SeQ8mQjufSY_Jo0iWP$q+%pwKO4f_Z)r-r6 z<2_jDBc67L%&ordNq{Vdv`f}7sIuhA3^O zLE~rjq1!cyZ+_7pib!VcD0(v?ik2}EA+r%#c>V#IX|ZPSo-*9C57-?_Nq;f&`Inck z>2T#>AyGwBy-%jwPNw;PKb_P#?)+f8;R6FxWRW@}58&@ggjaKIwaInZEer4sF_Yz{ z;W7zJqNRkpZRSmc!__|;{ksJV3T~rr@nn^LR zhX1GS!3yGSA2w+7rkM^lhqbhuik~`?DiY=XtDUP?lJ~9+N*9Az){uu2jim)Rfq8%b zD#HVxItsHm$w6R1m9%^-H10JKl4@ywl~A3@e_#{}aaD}QN0w_ssp`>p!=c)EBQ>;b zdne5wf7mSJjB`vRa4;_0>{eij?_)>(X_d+aPMy{vV{U?~3z^N_`LV-nXp+M@Sld)i z8nX3h!)zxJd%SuTg}(x97Z?CMMf@!MnQoAa9dU6gjq*o;b37lB38C68KTDc7k`A6Q z{9N;f@zBZ4TK=3!ai8b)7|$R6FfRvM8jCy@3ZF8gW{DArcl|YLa9ZyDb}f*)2AMCI zOp$bem8lK8UgIPUx#Fo=8H)DE8OW#bo5>lr1$m+?KmB)px+8J{VO*8;vLBIh$u~qo zLlP$AbU-AE_U2Gmtr!OH;Vqt2xQWaAbkPdn|X+57I=DcP!3+ z0j@Cv(U`w}Idm>%I}Nvg$Pu9NY%%Jl{!OwCAYp6Y-dwZWO7G$`pD6#Xv?YK7Ril%|Ke~;KmJF92ytJfYsF= zD|yczz(VHo>I+$CMtBbAi#{;_J0luw>$MU;wGg{>m3?Y+1@F(bXwj)JyI#oTcAe#_ z#+U=1ZOri+!XK4px-IIo^o#Q#t@2d`{VLw|ys`@R1tsW>*-BA@W8iUXJF6$KV3cU- z10Uiot|OS}hHjYj&V0Yox2=~6`Fb{xab6!60Qrnlif2ukZeydNU*#2Jyc8J_O{Ch! zaj@MNZ*U)xh2saax6$ubK08bg0j-Ac;##Loi{`mRaSdvAT8-l-d!No%ko1k;bcS90 zRs)B7tG!NU(`Lh&mELW7(>&@PlykBO!*Z&51F4JBjID9KiXxo6kwJ@Vzx$zzvQ0w; z*u!@_ni65Q8w#Pbt~O}a+j4=Q;hN($jU6IFi`wNM@X%Z4a!AZ`x^8QAugi6T6ICuM zz=(B(rP0@a4kThL{cQ8m#Z`0LPH5RAH!{X@h;>YNE%s*+{v&KXqn>{`2d_CP89mfA z2Xj)b3S=}5=yvR4rC|MBPH@4k$CFmXZ>h`%u( zc#aT_^65v`XhLK4WG1omk6Tz?$vet+2I8w}_tNDd*us}?ZwE2HKR)Xb%aP!i%v7^k z;C->}cub+nZ4XefpTNppXz9&+?rf7NpORCP1G4Zmd!DU^8&|?HkxnVa8NGZ-J0NJclf6jC@K`o;b-AW<{vqT|sXWQ*>2}H^5i#l^ z0rY31Mj6D(If6#B;|^OUSY=WpUQ2v{YMpIdn!kj zwg#kNK*{%3jeV&7mrHBY$%v_)WG4hA#3M|yf_UAUBQqQ(g zlfT|ZxQsU+=k|F*(_4%?iMVJ53n}^H{dFjzJ!tbA1Uux(d;nQkHN5_jv3yEs{g{xv zr9F7HSY^0-94Vc8Nt!GbSR z`9T3VMVy6{{>fCW^MG}`N+mr2W59#435(#V2Ra>V!v&|$_$9;&$KoxkkA+|4kHkI( zzc#!cv}}j*dYYNF4w7Lj__rLw2vijq&8VtWe2x{E6Yhc1FY!CEP(fk|XQL9QfYhfS z?N7)$cHXzwTkXmGf0*;KNT+qzejQ~KS2uNwcuz1OGa`BAE?N8Je2Mk~B$+2i;*Jhd zk5EVNrO{r|G(0KD8kZe#kX5$HibWE5TSW;dT`ER*8RjNPLcI^I%kck+RKt1-<)Z9d z@^0|oNIn^uR?lA_S?!HVv=gWlLZ=cEGc=gk*_HR?>-iFZkIAfCkghPpWkxY~%zOy9 z4XLp91g2)JXoMm^3J&>Ui6R$?wv2u##=Sx`%w`f%g5&#P%K{$;IN_FAAwZO5e?l#L z&N~7*2NnNQXP2D?mV4LH_qKkM)23 zfH2rZKR-2cFdg#Up?B#^)!LNws!2om1^LyG+$&wppUB>$f?CNOmh2}n!- zzax>;{|742BLYMJb%W0Ezd=NX|3EH=|3JL|hq3VgbV17gpQ9W*{C`m*rT%vmKdJw~ zYAHCN;}{Jnvh2T05}<-C)_=pHl1GC5pIEpF9FrCVxEbB8}+w0X>Z{6Ufq>9B?Ls=~2$)g=I36 zubpvZs>lN~|6Gxu9CB8Q=|(=7+jG{8X zD&EOEfLxVYup+-&X^?+qP+EN`7H2eq6;5hYot%3~VDhr_QcPkkU?GDRnaO8?LV_2h zm@In0LID?CnXLLJ8}{3SWTfHMJaGGsIf|*kIJ*eUx>JElH78HFXwBp^9n6fF&I5K2 zywC);LTyoW>dyizw4NmfbdMI3^jxsT{Bs3?Hfk{y%?ER3E_*O-STwnDk;de{%UVp) zTPO2f0Y=zXHgM#A+k+gr#(RO15lof`CUYIIncR0qVDgqLQcS#uCSSOc%Jksy Date: Wed, 6 Dec 2017 14:49:26 -0700 Subject: [PATCH 24/38] Fix for https://jira.spectralogic.com/browse/JSDK-268. Putting git commit hash into ds3-sdk.properties file. --- build.gradle | 4 ++ ds3-sdk/build.gradle | 3 ++ .../ds3client/utils/PropertyUtils.java | 40 ++++++++++++++----- .../ds3client/Ds3Client_Test.java | 9 +++++ 4 files changed, 46 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index 3d41cd3de..42c14c561 100644 --- a/build.gradle +++ b/build.gradle @@ -29,6 +29,10 @@ buildscript { } +plugins { + id "com.palantir.git-version" version "0.10.0" +} + allprojects { group = 'com.spectralogic.ds3' version = '3.5.3' diff --git a/ds3-sdk/build.gradle b/ds3-sdk/build.gradle index a683f7683..ec84ec7dc 100644 --- a/ds3-sdk/build.gradle +++ b/ds3-sdk/build.gradle @@ -58,10 +58,13 @@ task genConfigProperties { Files.createDirectories(configPath) } + def gitInfo = versionDetails() + configFile.withWriter{out -> out.writeLine("productionBuild=" + productionBuild.toString()) out.writeLine("version=" + version.toString()) out.writeLine("build.date=" + new Date().toString()) + out.writeLine("git.commitHash=" + gitInfo.gitHashFull) } } } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java index 243693ba5..93fbf58e9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java @@ -26,9 +26,11 @@ public final class PropertyUtils { private static final Logger LOG = LoggerFactory.getLogger(PropertyUtils.class); private static final String SDK_VERSION_PROPERTY_NAME = "version"; + private static final String GIT_COMMIT_HASH_PROPERTY_NAME = "git.commitHash"; private static final String PROPERTIES_FILE_NAME = "ds3_sdk.properties"; private static final AtomicReference versionProperty = new AtomicReference<>(""); + private static final AtomicReference gitCommitHashProperty = new AtomicReference<>(""); private PropertyUtils() {} @@ -37,29 +39,47 @@ private PropertyUtils() {} * @return The sdk version, if we can find one, an empty string otherwise. */ public static String getSdkVersion() { - if ( ! Guard.isStringNullOrEmpty(versionProperty.get())) { - return versionProperty.get(); + return getPropertyFromPropertiesFile(SDK_VERSION_PROPERTY_NAME, versionProperty); + } + + private static String getPropertyFromPropertiesFile(final String propertyName, final AtomicReference propertyValue) { + if ( ! Guard.isStringNullOrEmpty(propertyValue.get())) { + return propertyValue.get(); + } + + final String propertyFromPropertiesFile = getPropertyFromPropertiesFile(propertyName); + + if ( ! Guard.isStringNullOrEmpty(propertyFromPropertiesFile)) { + propertyValue.set(propertyFromPropertiesFile); } + return propertyValue.get(); + } + + private static String getPropertyFromPropertiesFile(final String propertyName) { final Properties properties = new Properties(); try (final InputStream propertiesStream = PropertyUtils.class.getClassLoader().getResourceAsStream(PROPERTIES_FILE_NAME)) { if (propertiesStream != null) { properties.load(propertiesStream); - final Object versionPropertyObject = properties.get(SDK_VERSION_PROPERTY_NAME); - - if (versionPropertyObject != null) { - final String versionFromPropFile = properties.get(SDK_VERSION_PROPERTY_NAME).toString(); + final Object propertyObject = properties.get(propertyName); - if ( ! Guard.isStringNullOrEmpty(versionFromPropFile)) { - versionProperty.set(versionFromPropFile); - } + if (propertyObject != null) { + return properties.get(propertyName).toString(); } } } catch (final Throwable t) { LOG.warn("Could not read properties file.", t); } - return versionProperty.get(); + return ""; + } + + /** + * Get the git commit hash from a properties file. + * @return The git commit hash, if we can find it, an empty string otherwise. + */ + public static String getGitCommitHash() { + return getPropertyFromPropertiesFile(GIT_COMMIT_HASH_PROPERTY_NAME, gitCommitHashProperty); } } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java index 8eba5e4ef..1b1c9379d 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java @@ -30,6 +30,7 @@ import com.spectralogic.ds3client.networking.FailedRequestUsingMgmtPortException; import com.spectralogic.ds3client.networking.HttpVerb; import com.spectralogic.ds3client.utils.ByteArraySeekableByteChannel; +import com.spectralogic.ds3client.utils.PropertyUtils; import com.spectralogic.ds3client.utils.ResourceUtils; import org.junit.Before; import org.junit.Test; @@ -50,6 +51,7 @@ import static org.hamcrest.CoreMatchers.*; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.greaterThanOrEqualTo; +import static org.junit.Assert.assertEquals; public class Ds3Client_Test { private static final UUID MASTER_OBJECT_LIST_JOB_ID = UUID.fromString("1a85e743-ec8f-4789-afec-97e587a26936"); @@ -923,6 +925,13 @@ public void testGettingDefaultUserAgent() { assertThat(matcher.find(), is(true)); } + @Test + public void testGettingGitCommitHash() { + final String gitCommitHash = PropertyUtils.getGitCommitHash(); + + assertEquals(40, gitCommitHash.length()); + } + @Test public void VerifySystemHealthSpectraS3() throws IOException { final String responsePayload = "0"; From 77a2c283dd412a38b0d94a7898d1e281a574a442 Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Thu, 7 Dec 2017 11:27:20 -0700 Subject: [PATCH 25/38] Adding ltfs header prefix to metadata. --- .../ds3client/commands/MetadataImpl_Test.java | 24 +++++++++++++++++++ .../commands/interfaces/MetadataImpl.java | 19 +++++++++++---- 2 files changed, 39 insertions(+), 4 deletions(-) diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/MetadataImpl_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/MetadataImpl_Test.java index 8d3686352..053ec0444 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/MetadataImpl_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/MetadataImpl_Test.java @@ -68,6 +68,30 @@ public void getMultiValueWithSpace() { assertThat(value.get(2), is("value3")); } + @Test + public void getSingleValueLtfs() { + final String userGuid = "060a2b340101010101010f0013-000000-709e29c2d1e20085-e7610015b2a9-a854"; + final Metadata metadata = genMetadata(new BasicHeader("x-spectra-ltfs-user.guid", userGuid)); + final List userGuids = metadata.get("user.guid"); + assertThat(userGuids, is(notNullValue())); + assertFalse(userGuids.isEmpty()); + assertThat(userGuids.size(), is(1)); + assertThat(userGuids.get(0), is(userGuid)); + } + + @Test + public void getTwoValuesLtfs() { + final String userGuid1 = "060a2b340101010101010f0013-000000-709e29c2d1e20085-e7610015b2a9-a854"; + final String userGuid2 = "160a2b340101010101010f0013-000000-709e29c2d1e20085-e7610015b2a9-a854"; + final Metadata metadata = genMetadata(new BasicHeader("x-spectra-ltfs-user.guid", userGuid1 + "," + userGuid2)); + final List userGuids = metadata.get("user.guid"); + assertThat(userGuids, is(notNullValue())); + assertFalse(userGuids.isEmpty()); + assertThat(userGuids.size(), is(2)); + assertThat(userGuids.get(0), is(userGuid1)); + assertThat(userGuids.get(1), is(userGuid2)); + } + private Metadata genMetadata(final Header... headers) { final ImmutableMultimap.Builder mapBuilder = ImmutableMultimap.builder(); diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java index f5d6cc440..e863657ec 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java @@ -30,7 +30,8 @@ public class MetadataImpl implements Metadata { private static final String X_AMZ_META = "x-amz-meta-"; - final ImmutableMultimap metadata; + private static final String LTFS_METADATA_PREFIX = "x-spectra-ltfs-"; + private final ImmutableMultimap metadata; public MetadataImpl(final Headers headers) { this.metadata = genMetadata(headers); @@ -45,17 +46,27 @@ private static ImmutableMultimap genMetadata(final Headers heade final ImmutableMultimap.Builder mapBuilder = ImmutableMultimap.builder(); for (final String key : headers.keys()) { - if (key.startsWith(X_AMZ_META)) { - final String name = toDecodedString(key.substring(X_AMZ_META.length())); + final String keyWithoutPrefix = metadataKey(key); + if ( ! keyWithoutPrefix.isEmpty()) { final List values = getValues(headers, key); - mapBuilder.putAll(name, values); + mapBuilder.putAll(keyWithoutPrefix, values); } } return mapBuilder.build(); } + private static String metadataKey(final String key) { + if (key.startsWith(X_AMZ_META)) { + return toDecodedString(key.substring(X_AMZ_META.length())); + } else if (key.startsWith(LTFS_METADATA_PREFIX)) { + return toDecodedString(key.substring(LTFS_METADATA_PREFIX.length())); + } + + return ""; + } + private static List getValues(final Headers headers, final String key) { final List valueList = headers.get(key); final List returnList = new ArrayList<>(valueList.size()); From bc0b466b378e40ea07c6bbaed068f471a75ca8f6 Mon Sep 17 00:00:00 2001 From: Rachel Tucker Date: Tue, 12 Dec 2017 10:59:02 -0700 Subject: [PATCH 26/38] TapeType to String, nonnullable channels, and fix max blob size --- .../ds3client/commands/GetObjectRequest.java | 17 +++++++--- .../PutMultiPartUploadPartRequest.java | 14 +++++--- .../ds3client/commands/PutObjectRequest.java | 17 +++++++--- ...BucketCapacitySummarySpectraS3Request.java | 7 ++-- ...DomainCapacitySummarySpectraS3Request.java | 7 ++-- ...tStorageDomainMembersSpectraS3Request.java | 7 ++-- ...SystemCapacitySummarySpectraS3Request.java | 8 ++--- ...TapeDensityDirectivesSpectraS3Request.java | 7 ++-- .../spectrads3/GetTapesSpectraS3Request.java | 7 ++-- .../PutBulkJobSpectraS3Request.java | 2 +- ...tTapeDensityDirectiveSpectraS3Request.java | 9 +++-- ...peStorageDomainMemberSpectraS3Request.java | 9 +++-- .../models/DetailedTapePartition.java | 6 ++-- .../models/NamedDetailedTapePartition.java | 6 ++-- .../ds3client/models/StorageDomainMember.java | 7 ++-- .../spectralogic/ds3client/models/Tape.java | 6 ++-- .../models/TapeDensityDirective.java | 7 ++-- .../ds3client/models/TapeType.java | 33 ------------------- 18 files changed, 79 insertions(+), 97 deletions(-) delete mode 100644 ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeType.java diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectRequest.java index 9d1f17ca0..68c269fcc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectRequest.java @@ -29,6 +29,8 @@ import com.spectralogic.ds3client.commands.interfaces.AbstractRequest; import java.util.UUID; import com.google.common.net.UrlEscapers; +import javax.annotation.Nonnull; +import com.google.common.base.Preconditions; import com.spectralogic.ds3client.models.ChecksumType; public class GetObjectRequest extends AbstractRequest { @@ -52,7 +54,8 @@ public class GetObjectRequest extends AbstractRequest { /** @deprecated use {@link #GetObjectRequest(String, String, WritableByteChannel, UUID, long)} instead */ @Deprecated - public GetObjectRequest(final String bucketName, final String objectName, final WritableByteChannel channel) { + public GetObjectRequest(final String bucketName, final String objectName, @Nonnull final WritableByteChannel channel) { + Preconditions.checkNotNull(channel, "Channel may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.channel = channel; @@ -61,7 +64,8 @@ public GetObjectRequest(final String bucketName, final String objectName, final } - public GetObjectRequest(final String bucketName, final String objectName, final WritableByteChannel channel, final UUID job, final long offset) { + public GetObjectRequest(final String bucketName, final String objectName, @Nonnull final WritableByteChannel channel, final UUID job, final long offset) { + Preconditions.checkNotNull(channel, "Channel may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.job = job.toString(); @@ -76,7 +80,8 @@ public GetObjectRequest(final String bucketName, final String objectName, final } - public GetObjectRequest(final String bucketName, final String objectName, final WritableByteChannel channel, final String job, final long offset) { + public GetObjectRequest(final String bucketName, final String objectName, @Nonnull final WritableByteChannel channel, final String job, final long offset) { + Preconditions.checkNotNull(channel, "Channel may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.job = job; @@ -91,7 +96,8 @@ public GetObjectRequest(final String bucketName, final String objectName, final } - public GetObjectRequest(final String bucketName, final String objectName, final UUID job, final long offset, final OutputStream stream) { + public GetObjectRequest(final String bucketName, final String objectName, final UUID job, final long offset, @Nonnull final OutputStream stream) { + Preconditions.checkNotNull(stream, "Stream may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.job = job.toString(); @@ -106,7 +112,8 @@ public GetObjectRequest(final String bucketName, final String objectName, final } - public GetObjectRequest(final String bucketName, final String objectName, final String job, final long offset, final OutputStream stream) { + public GetObjectRequest(final String bucketName, final String objectName, final String job, final long offset, @Nonnull final OutputStream stream) { + Preconditions.checkNotNull(stream, "Stream may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.job = job; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartRequest.java index e3340d670..3e5e3c9a5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartRequest.java @@ -20,6 +20,8 @@ import com.spectralogic.ds3client.commands.interfaces.AbstractRequest; import java.util.UUID; import com.google.common.net.UrlEscapers; +import javax.annotation.Nonnull; +import com.google.common.base.Preconditions; import com.spectralogic.ds3client.utils.SeekableByteChannelInputStream; import java.nio.channels.SeekableByteChannel; import java.io.InputStream; @@ -45,7 +47,8 @@ public class PutMultiPartUploadPartRequest extends AbstractRequest { // Constructor - public PutMultiPartUploadPartRequest(final String bucketName, final String objectName, final SeekableByteChannel channel, final int partNumber, final long size, final UUID uploadId) { + public PutMultiPartUploadPartRequest(final String bucketName, final String objectName, @Nonnull final SeekableByteChannel channel, final int partNumber, final long size, final UUID uploadId) { + Preconditions.checkNotNull(channel, "Channel may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.partNumber = partNumber; @@ -61,7 +64,8 @@ public PutMultiPartUploadPartRequest(final String bucketName, final String objec } - public PutMultiPartUploadPartRequest(final String bucketName, final String objectName, final SeekableByteChannel channel, final int partNumber, final long size, final String uploadId) { + public PutMultiPartUploadPartRequest(final String bucketName, final String objectName, @Nonnull final SeekableByteChannel channel, final int partNumber, final long size, final String uploadId) { + Preconditions.checkNotNull(channel, "Channel may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.partNumber = partNumber; @@ -77,7 +81,8 @@ public PutMultiPartUploadPartRequest(final String bucketName, final String objec } - public PutMultiPartUploadPartRequest(final String bucketName, final String objectName, final int partNumber, final long size, final InputStream stream, final UUID uploadId) { + public PutMultiPartUploadPartRequest(final String bucketName, final String objectName, final int partNumber, final long size, @Nonnull final InputStream stream, final UUID uploadId) { + Preconditions.checkNotNull(stream, "Stream may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.partNumber = partNumber; @@ -92,7 +97,8 @@ public PutMultiPartUploadPartRequest(final String bucketName, final String objec } - public PutMultiPartUploadPartRequest(final String bucketName, final String objectName, final int partNumber, final long size, final InputStream stream, final String uploadId) { + public PutMultiPartUploadPartRequest(final String bucketName, final String objectName, final int partNumber, final long size, @Nonnull final InputStream stream, final String uploadId) { + Preconditions.checkNotNull(stream, "Stream may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.partNumber = partNumber; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectRequest.java index db69c7c4a..c66185a6b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectRequest.java @@ -26,6 +26,8 @@ import com.spectralogic.ds3client.commands.interfaces.AbstractRequest; import java.util.UUID; import com.google.common.net.UrlEscapers; +import javax.annotation.Nonnull; +import com.google.common.base.Preconditions; import com.spectralogic.ds3client.models.ChecksumType; public class PutObjectRequest extends AbstractRequest { @@ -53,7 +55,8 @@ public class PutObjectRequest extends AbstractRequest { /** @deprecated use {@link #PutObjectRequest(String, String, SeekableByteChannel, UUID, long, long)} instead */ @Deprecated - public PutObjectRequest(final String bucketName, final String objectName, final SeekableByteChannel channel, final long size) { + public PutObjectRequest(final String bucketName, final String objectName, @Nonnull final SeekableByteChannel channel, final long size) { + Preconditions.checkNotNull(channel, "Channel may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.size = size; @@ -64,7 +67,8 @@ public PutObjectRequest(final String bucketName, final String objectName, final } - public PutObjectRequest(final String bucketName, final String objectName, final SeekableByteChannel channel, final UUID job, final long offset, final long size) { + public PutObjectRequest(final String bucketName, final String objectName, @Nonnull final SeekableByteChannel channel, final UUID job, final long offset, final long size) { + Preconditions.checkNotNull(channel, "Channel may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.size = size; @@ -81,7 +85,8 @@ public PutObjectRequest(final String bucketName, final String objectName, final } - public PutObjectRequest(final String bucketName, final String objectName, final SeekableByteChannel channel, final String job, final long offset, final long size) { + public PutObjectRequest(final String bucketName, final String objectName, @Nonnull final SeekableByteChannel channel, final String job, final long offset, final long size) { + Preconditions.checkNotNull(channel, "Channel may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.size = size; @@ -98,7 +103,8 @@ public PutObjectRequest(final String bucketName, final String objectName, final } - public PutObjectRequest(final String bucketName, final String objectName, final UUID job, final long offset, final long size, final InputStream stream) { + public PutObjectRequest(final String bucketName, final String objectName, final UUID job, final long offset, final long size, @Nonnull final InputStream stream) { + Preconditions.checkNotNull(stream, "Stream may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.size = size; @@ -114,7 +120,8 @@ public PutObjectRequest(final String bucketName, final String objectName, final } - public PutObjectRequest(final String bucketName, final String objectName, final String job, final long offset, final long size, final InputStream stream) { + public PutObjectRequest(final String bucketName, final String objectName, final String job, final long offset, final long size, @Nonnull final InputStream stream) { + Preconditions.checkNotNull(stream, "Stream may not be null."); this.bucketName = bucketName; this.objectName = objectName; this.size = size; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Request.java index 4a0b74fe0..295065e9e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Request.java @@ -24,7 +24,6 @@ import com.spectralogic.ds3client.models.PoolState; import com.spectralogic.ds3client.models.PoolType; import com.spectralogic.ds3client.models.TapeState; -import com.spectralogic.ds3client.models.TapeType; public class GetBucketCapacitySummarySpectraS3Request extends AbstractRequest { @@ -42,7 +41,7 @@ public class GetBucketCapacitySummarySpectraS3Request extends AbstractRequest { private TapeState tapeState; - private TapeType tapeType; + private String tapeType; // Constructor @@ -96,7 +95,7 @@ public GetBucketCapacitySummarySpectraS3Request withTapeState(final TapeState ta } - public GetBucketCapacitySummarySpectraS3Request withTapeType(final TapeType tapeType) { + public GetBucketCapacitySummarySpectraS3Request withTapeType(final String tapeType) { this.tapeType = tapeType; this.updateQueryParam("tape_type", tapeType); return this; @@ -144,7 +143,7 @@ public TapeState getTapeState() { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Request.java index 939d0881b..fae8aa5fa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Request.java @@ -24,7 +24,6 @@ import com.spectralogic.ds3client.models.PoolState; import com.spectralogic.ds3client.models.PoolType; import com.spectralogic.ds3client.models.TapeState; -import com.spectralogic.ds3client.models.TapeType; public class GetStorageDomainCapacitySummarySpectraS3Request extends AbstractRequest { @@ -40,7 +39,7 @@ public class GetStorageDomainCapacitySummarySpectraS3Request extends AbstractReq private TapeState tapeState; - private TapeType tapeType; + private String tapeType; // Constructor @@ -88,7 +87,7 @@ public GetStorageDomainCapacitySummarySpectraS3Request withTapeState(final TapeS } - public GetStorageDomainCapacitySummarySpectraS3Request withTapeType(final TapeType tapeType) { + public GetStorageDomainCapacitySummarySpectraS3Request withTapeType(final String tapeType) { this.tapeType = tapeType; this.updateQueryParam("tape_type", tapeType); return this; @@ -131,7 +130,7 @@ public TapeState getTapeState() { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Request.java index 158978d0f..4cf77f4a9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Request.java @@ -21,7 +21,6 @@ import java.util.UUID; import com.google.common.net.UrlEscapers; import com.spectralogic.ds3client.models.StorageDomainMemberState; -import com.spectralogic.ds3client.models.TapeType; import com.spectralogic.ds3client.models.WritePreferenceLevel; public class GetStorageDomainMembersSpectraS3Request extends AbstractPaginationRequest { @@ -44,7 +43,7 @@ public class GetStorageDomainMembersSpectraS3Request extends AbstractPaginationR private String tapePartitionId; - private TapeType tapeType; + private String tapeType; private WritePreferenceLevel writePreference; @@ -143,7 +142,7 @@ public GetStorageDomainMembersSpectraS3Request withTapePartitionId(final String } - public GetStorageDomainMembersSpectraS3Request withTapeType(final TapeType tapeType) { + public GetStorageDomainMembersSpectraS3Request withTapeType(final String tapeType) { this.tapeType = tapeType; this.updateQueryParam("tape_type", tapeType); return this; @@ -208,7 +207,7 @@ public String getTapePartitionId() { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Request.java index 20d144d05..ead04f093 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Request.java @@ -22,7 +22,7 @@ import com.spectralogic.ds3client.models.PoolState; import com.spectralogic.ds3client.models.PoolType; import com.spectralogic.ds3client.models.TapeState; -import com.spectralogic.ds3client.models.TapeType; +import com.google.common.net.UrlEscapers; public class GetSystemCapacitySummarySpectraS3Request extends AbstractRequest { @@ -36,7 +36,7 @@ public class GetSystemCapacitySummarySpectraS3Request extends AbstractRequest { private TapeState tapeState; - private TapeType tapeType; + private String tapeType; // Constructor @@ -73,7 +73,7 @@ public GetSystemCapacitySummarySpectraS3Request withTapeState(final TapeState ta } - public GetSystemCapacitySummarySpectraS3Request withTapeType(final TapeType tapeType) { + public GetSystemCapacitySummarySpectraS3Request withTapeType(final String tapeType) { this.tapeType = tapeType; this.updateQueryParam("tape_type", tapeType); return this; @@ -111,7 +111,7 @@ public TapeState getTapeState() { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Request.java index 11d69f24e..a272c07ba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Request.java @@ -21,7 +21,6 @@ import com.spectralogic.ds3client.models.TapeDriveType; import java.util.UUID; import com.google.common.net.UrlEscapers; -import com.spectralogic.ds3client.models.TapeType; public class GetTapeDensityDirectivesSpectraS3Request extends AbstractPaginationRequest { @@ -39,7 +38,7 @@ public class GetTapeDensityDirectivesSpectraS3Request extends AbstractPagination private String partitionId; - private TapeType tapeType; + private String tapeType; // Constructor @@ -108,7 +107,7 @@ public GetTapeDensityDirectivesSpectraS3Request withPartitionId(final String par } - public GetTapeDensityDirectivesSpectraS3Request withTapeType(final TapeType tapeType) { + public GetTapeDensityDirectivesSpectraS3Request withTapeType(final String tapeType) { this.tapeType = tapeType; this.updateQueryParam("tape_type", tapeType); return this; @@ -156,7 +155,7 @@ public String getPartitionId() { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Request.java index 11e205f88..d192c288f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Request.java @@ -23,7 +23,6 @@ import java.util.Date; import java.util.UUID; import com.spectralogic.ds3client.models.TapeState; -import com.spectralogic.ds3client.models.TapeType; import com.spectralogic.ds3client.models.Priority; public class GetTapesSpectraS3Request extends AbstractPaginationRequest { @@ -66,7 +65,7 @@ public class GetTapesSpectraS3Request extends AbstractPaginationRequest { private String storageDomainId; - private TapeType type; + private String type; private Priority verifyPending; @@ -230,7 +229,7 @@ public GetTapesSpectraS3Request withStorageDomainId(final String storageDomainId } - public GetTapesSpectraS3Request withType(final TapeType type) { + public GetTapesSpectraS3Request withType(final String type) { this.type = type; this.updateQueryParam("type", type); return this; @@ -352,7 +351,7 @@ public String getStorageDomainId() { } - public TapeType getType() { + public String getType() { return this.type; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Request.java index 0539f2f6c..2407395a2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Request.java @@ -88,7 +88,7 @@ public PutBulkJobSpectraS3Request withImplicitJobIdResolution(final boolean impl public PutBulkJobSpectraS3Request withMaxUploadSize(final long maxUploadSize) { - if (maxUploadSize > MIN_UPLOAD_SIZE_IN_BYTES) { + if (maxUploadSize >= MIN_UPLOAD_SIZE_IN_BYTES) { this.getQueryParams().put("max_upload_size", Long.toString(maxUploadSize)); } else { this.getQueryParams().put("max_upload_size", MAX_UPLOAD_SIZE_IN_BYTES); diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Request.java index 37cf90a3c..1e1a33b01 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Request.java @@ -21,7 +21,6 @@ import com.spectralogic.ds3client.models.TapeDriveType; import java.util.UUID; import com.google.common.net.UrlEscapers; -import com.spectralogic.ds3client.models.TapeType; public class PutTapeDensityDirectiveSpectraS3Request extends AbstractRequest { @@ -31,12 +30,12 @@ public class PutTapeDensityDirectiveSpectraS3Request extends AbstractRequest { private final String partitionId; - private final TapeType tapeType; + private final String tapeType; // Constructor - public PutTapeDensityDirectiveSpectraS3Request(final TapeDriveType density, final UUID partitionId, final TapeType tapeType) { + public PutTapeDensityDirectiveSpectraS3Request(final TapeDriveType density, final UUID partitionId, final String tapeType) { this.density = density; this.partitionId = partitionId.toString(); this.tapeType = tapeType; @@ -50,7 +49,7 @@ public PutTapeDensityDirectiveSpectraS3Request(final TapeDriveType density, fina } - public PutTapeDensityDirectiveSpectraS3Request(final TapeDriveType density, final String partitionId, final TapeType tapeType) { + public PutTapeDensityDirectiveSpectraS3Request(final TapeDriveType density, final String partitionId, final String tapeType) { this.density = density; this.partitionId = partitionId; this.tapeType = tapeType; @@ -84,7 +83,7 @@ public String getPartitionId() { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Request.java index e3806bbb0..c74c01fd6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Request.java @@ -20,7 +20,6 @@ import com.spectralogic.ds3client.commands.interfaces.AbstractRequest; import java.util.UUID; import com.google.common.net.UrlEscapers; -import com.spectralogic.ds3client.models.TapeType; import com.spectralogic.ds3client.models.WritePreferenceLevel; public class PutTapeStorageDomainMemberSpectraS3Request extends AbstractRequest { @@ -31,14 +30,14 @@ public class PutTapeStorageDomainMemberSpectraS3Request extends AbstractRequest private final String tapePartitionId; - private final TapeType tapeType; + private final String tapeType; private WritePreferenceLevel writePreference; // Constructor - public PutTapeStorageDomainMemberSpectraS3Request(final UUID storageDomainId, final UUID tapePartitionId, final TapeType tapeType) { + public PutTapeStorageDomainMemberSpectraS3Request(final UUID storageDomainId, final UUID tapePartitionId, final String tapeType) { this.storageDomainId = storageDomainId.toString(); this.tapePartitionId = tapePartitionId.toString(); this.tapeType = tapeType; @@ -52,7 +51,7 @@ public PutTapeStorageDomainMemberSpectraS3Request(final UUID storageDomainId, fi } - public PutTapeStorageDomainMemberSpectraS3Request(final String storageDomainId, final String tapePartitionId, final TapeType tapeType) { + public PutTapeStorageDomainMemberSpectraS3Request(final String storageDomainId, final String tapePartitionId, final String tapeType) { this.storageDomainId = storageDomainId; this.tapePartitionId = tapePartitionId; this.tapeType = tapeType; @@ -93,7 +92,7 @@ public String getTapePartitionId() { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapePartition.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapePartition.java index cdecdac6d..98fe08bc4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapePartition.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapePartition.java @@ -61,7 +61,7 @@ public class DetailedTapePartition { @JsonProperty("TapeTypes") @JacksonXmlElementWrapper(useWrapping = false) - private List tapeTypes = new ArrayList<>(); + private List tapeTypes = new ArrayList<>(); // Constructor public DetailedTapePartition() { @@ -160,11 +160,11 @@ public void setState(final TapePartitionState state) { } - public List getTapeTypes() { + public List getTapeTypes() { return this.tapeTypes; } - public void setTapeTypes(final List tapeTypes) { + public void setTapeTypes(final List tapeTypes) { this.tapeTypes = tapeTypes; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartition.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartition.java index ad8f7a470..e87db9ef7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartition.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartition.java @@ -61,7 +61,7 @@ public class NamedDetailedTapePartition { @JsonProperty("TapeTypes") @JacksonXmlElementWrapper(useWrapping = false) - private List tapeTypes = new ArrayList<>(); + private List tapeTypes = new ArrayList<>(); // Constructor public NamedDetailedTapePartition() { @@ -160,11 +160,11 @@ public void setState(final TapePartitionState state) { } - public List getTapeTypes() { + public List getTapeTypes() { return this.tapeTypes; } - public void setTapeTypes(final List tapeTypes) { + public void setTapeTypes(final List tapeTypes) { this.tapeTypes = tapeTypes; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMember.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMember.java index 432233560..d1a835ca7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMember.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMember.java @@ -19,6 +19,7 @@ import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import java.util.UUID; +import java.lang.String; @JacksonXmlRootElement(namespace = "Data") public class StorageDomainMember { @@ -40,7 +41,7 @@ public class StorageDomainMember { private UUID tapePartitionId; @JsonProperty("TapeType") - private TapeType tapeType; + private String tapeType; @JsonProperty("WritePreference") private WritePreferenceLevel writePreference; @@ -97,11 +98,11 @@ public void setTapePartitionId(final UUID tapePartitionId) { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } - public void setTapeType(final TapeType tapeType) { + public void setTapeType(final String tapeType) { this.tapeType = tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Tape.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Tape.java index 7c74e8f93..19a62d58b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Tape.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Tape.java @@ -97,7 +97,7 @@ public class Tape { private Long totalRawCapacity; @JsonProperty("Type") - private TapeType type; + private String type; @JsonProperty("VerifyPending") private Priority verifyPending; @@ -319,11 +319,11 @@ public void setTotalRawCapacity(final Long totalRawCapacity) { } - public TapeType getType() { + public String getType() { return this.type; } - public void setType(final TapeType type) { + public void setType(final String type) { this.type = type; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirective.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirective.java index 5c74edf4d..3a4ed6ff6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirective.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirective.java @@ -19,6 +19,7 @@ import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import java.util.UUID; +import java.lang.String; @JacksonXmlRootElement(namespace = "Data") public class TapeDensityDirective { @@ -34,7 +35,7 @@ public class TapeDensityDirective { private UUID partitionId; @JsonProperty("TapeType") - private TapeType tapeType; + private String tapeType; // Constructor public TapeDensityDirective() { @@ -70,11 +71,11 @@ public void setPartitionId(final UUID partitionId) { } - public TapeType getTapeType() { + public String getTapeType() { return this.tapeType; } - public void setTapeType(final TapeType tapeType) { + public void setTapeType(final String tapeType) { this.tapeType = tapeType; } diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeType.java deleted file mode 100644 index 3df1166ef..000000000 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeType.java +++ /dev/null @@ -1,33 +0,0 @@ -/* - * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** - */ - -// This code is auto-generated, do not modify -package com.spectralogic.ds3client.models; - -public enum TapeType { - LTO5, - LTO6, - LTO7, - LTO_CLEANING_TAPE, - TS_JC, - TS_JY, - TS_JK, - TS_JD, - TS_JZ, - TS_JL, - TS_CLEANING_TAPE, - UNKNOWN, - FORBIDDEN -} \ No newline at end of file From 39a43e55ced4555027ae5c75452243a3cfc80a40 Mon Sep 17 00:00:00 2001 From: scribe Date: Mon, 8 Jan 2018 14:47:17 -0700 Subject: [PATCH 27/38] Minor change, lets us toggle between 3.x and 4.x easier --- .../integration/UsersAndGroups_Test.java | 28 ++++++++++--------- .../test/helpers/TempStorageUtil.java | 4 ++- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java index 6cc097024..a201ee8a9 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java @@ -47,6 +47,8 @@ public class UsersAndGroups_Test { private static final Ds3ClientHelpers HELPERS = Ds3ClientHelpers.wrap(client); private static final String BUCKET_NAME = "Users_And_Groups_Test"; private static final String TEST_ENV_NAME = "UsersAndGroups_Test"; + private static final String USER_ID = "spectra"; +// private static final String USER_ID = "Administrator"; private static TempStorageIds envStorageIds; private static UUID spectraUUID; private static UUID administratorsUUID; @@ -75,7 +77,7 @@ private static void setupBucket(final UUID dataPolicy) { try { HELPERS.ensureBucketExists(BUCKET_NAME, dataPolicy); spectraUUID = client.getUserSpectraS3( - new GetUserSpectraS3Request("spectra")).getSpectraUserResult().getId(); + new GetUserSpectraS3Request(USER_ID)).getSpectraUserResult().getId(); administratorsUUID = client.getGroupSpectraS3( new GetGroupSpectraS3Request("Administrators")).getGroupResult().getId(); } catch (final Exception e) { @@ -89,16 +91,16 @@ public void getUserWithUUID() throws IOException, SignatureException { final GetUserSpectraS3Response getSpectraResponse = client .getUserSpectraS3(new GetUserSpectraS3Request(spectraUUID)); - assertThat(getSpectraResponse.getSpectraUserResult().getName(), is("spectra")); + assertThat(getSpectraResponse.getSpectraUserResult().getName(), is(USER_ID)); } @Test public void getUserWithString() throws IOException, SignatureException { final GetUserSpectraS3Response getSpectraResponse = client - .getUserSpectraS3(new GetUserSpectraS3Request("spectra")); + .getUserSpectraS3(new GetUserSpectraS3Request(USER_ID)); - assertThat(getSpectraResponse.getSpectraUserResult().getName(), is("spectra")); + assertThat(getSpectraResponse.getSpectraUserResult().getName(), is(USER_ID)); } @Test @@ -114,7 +116,7 @@ public void getUsers() throws IOException, SignatureException { public void getUsersWithName() throws IOException, SignatureException { final GetUsersSpectraS3Response getUsersResponse = client.getUsersSpectraS3( - new GetUsersSpectraS3Request().withName("spectra")); + new GetUsersSpectraS3Request().withName(USER_ID)); assertThat(getUsersResponse.getSpectraUserListResult(), is(notNullValue())); } @@ -467,7 +469,7 @@ public void getUserGroupMembersWithMemberUserIDString() throws IOException, Sign final GetGroupMembersSpectraS3Response getGroupMembersSpectraS3Response = client .getGroupMembersSpectraS3(new GetGroupMembersSpectraS3Request() - .withMemberUserId("spectra")); + .withMemberUserId(USER_ID)); assertThat(getGroupMembersSpectraS3Response.getGroupMemberListResult(), is(notNullValue())); } @@ -612,7 +614,7 @@ public void putUserGroupMember() throws IOException, SignatureException { new PutGroupSpectraS3Request("test_group")); putUserGroupMemberSpectraS3Response = client - .putUserGroupMemberSpectraS3(new PutUserGroupMemberSpectraS3Request("test_group", "spectra")); + .putUserGroupMemberSpectraS3(new PutUserGroupMemberSpectraS3Request("test_group", USER_ID)); assertThat(putUserGroupMemberSpectraS3Response.getGroupMemberResult(), is(notNullValue())); @@ -688,7 +690,7 @@ public void putGlobalBucketAclForUserString() throws IOException, SignatureExcep try { putGlobalBucketAclForUserSpectraS3Response = client.putGlobalBucketAclForUserSpectraS3( new PutGlobalBucketAclForUserSpectraS3Request(BucketAclPermission.DELETE, - "spectra")); + USER_ID)); assertThat(putGlobalBucketAclForUserSpectraS3Response.getBucketAclResult(), is(notNullValue())); @@ -789,7 +791,7 @@ public void getBucketAclsWithUserUUID() throws IOException, SignatureException { @Test public void getBucketAclsWithUserIDString() throws IOException, SignatureException { final GetBucketAclsSpectraS3Response getBucketAclsSpectraS3Response = client - .getBucketAclsSpectraS3(new GetBucketAclsSpectraS3Request().withUserId("spectra")); + .getBucketAclsSpectraS3(new GetBucketAclsSpectraS3Request().withUserId(USER_ID)); assertThat(getBucketAclsSpectraS3Response.getBucketAclListResult(), is(notNullValue())); } @@ -912,7 +914,7 @@ public void putGlobalDataPolicyAclForUserString() throws IOException, SignatureE PutGlobalDataPolicyAclForUserSpectraS3Response putGlobalDataPolicyAclForUserSpectraS3Response = null; try { putGlobalDataPolicyAclForUserSpectraS3Response = client.putGlobalDataPolicyAclForUserSpectraS3( - new PutGlobalDataPolicyAclForUserSpectraS3Request("spectra")); + new PutGlobalDataPolicyAclForUserSpectraS3Request(USER_ID)); assertThat(putGlobalDataPolicyAclForUserSpectraS3Response.getDataPolicyAclResult(), is(notNullValue())); @@ -971,7 +973,7 @@ public void deleteDataPolicyAcl() throws IOException, SignatureException { = null; try { putGlobalDataPolicyAclForUserSpectraS3Response = client.putGlobalDataPolicyAclForUserSpectraS3( - new PutGlobalDataPolicyAclForUserSpectraS3Request("spectra")); + new PutGlobalDataPolicyAclForUserSpectraS3Request(USER_ID)); final DeleteDataPolicyAclSpectraS3Response deleteDataPolicyAclSpectraS3Response = client .deleteDataPolicyAclSpectraS3(new DeleteDataPolicyAclSpectraS3Request( @@ -998,7 +1000,7 @@ public void getDataPolicyAcl() throws IOException, SignatureException { try { putGlobalDataPolicyAclForUserSpectraS3Response = client .putGlobalDataPolicyAclForUserSpectraS3( - new PutGlobalDataPolicyAclForUserSpectraS3Request("spectra")); + new PutGlobalDataPolicyAclForUserSpectraS3Request(USER_ID)); final GetDataPolicyAclSpectraS3Response getDataPolicyAclSpectraS3Response = client .getDataPolicyAclSpectraS3(new GetDataPolicyAclSpectraS3Request( @@ -1114,7 +1116,7 @@ public void getDataPolicyAclsWithUserString() throws IOException, SignatureExcep final GetDataPolicyAclsSpectraS3Response getDataPolicyAclsSpectraS3Response = client .getDataPolicyAclsSpectraS3(new GetDataPolicyAclsSpectraS3Request() - .withUserId("spectra")); + .withUserId(USER_ID)); assertThat(getDataPolicyAclsSpectraS3Response.getDataPolicyAclListResult(), is(notNullValue())); } diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java index f6cf1f665..420daa3fc 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java @@ -35,6 +35,8 @@ public final class TempStorageUtil { private static final String DATA_POLICY_NAME = "_dp"; private static final String STORAGE_DOMAIN_NAME = "_sd"; private static final String POOL_PARTITION_NAME = "_pp"; +// private static final String USER_ID = "Administrator"; + private static final String USER_ID = "spectra"; /** * Sets up a temporary data policy with a temporary storage domain and partition @@ -102,7 +104,7 @@ public static UUID setupDataPolicy( new PutDataPolicySpectraS3Request(testSetName + DATA_POLICY_NAME) .withEndToEndCrcRequired(withEndToEndCrcRequired) .withChecksumType(checksumType).withAlwaysForcePutJobCreation(true)); - client.modifyUserSpectraS3(new ModifyUserSpectraS3Request("spectra") + client.modifyUserSpectraS3(new ModifyUserSpectraS3Request(USER_ID) .withDefaultDataPolicyId(dataPolicyResponse.getDataPolicyResult().getId())); return dataPolicyResponse.getDataPolicyResult().getId(); } From 9a7a48350157a90f16423a5da0205ef14053b7fc Mon Sep 17 00:00:00 2001 From: scribe Date: Mon, 8 Jan 2018 15:06:06 -0700 Subject: [PATCH 28/38] Cleaning up --- .../spectralogic/ds3client/integration/UsersAndGroups_Test.java | 1 - .../ds3client/integration/test/helpers/TempStorageUtil.java | 1 - 2 files changed, 2 deletions(-) diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java index a201ee8a9..7496b547c 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java @@ -48,7 +48,6 @@ public class UsersAndGroups_Test { private static final String BUCKET_NAME = "Users_And_Groups_Test"; private static final String TEST_ENV_NAME = "UsersAndGroups_Test"; private static final String USER_ID = "spectra"; -// private static final String USER_ID = "Administrator"; private static TempStorageIds envStorageIds; private static UUID spectraUUID; private static UUID administratorsUUID; diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java index 420daa3fc..dc3163316 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java @@ -35,7 +35,6 @@ public final class TempStorageUtil { private static final String DATA_POLICY_NAME = "_dp"; private static final String STORAGE_DOMAIN_NAME = "_sd"; private static final String POOL_PARTITION_NAME = "_pp"; -// private static final String USER_ID = "Administrator"; private static final String USER_ID = "spectra"; /** From 5f5f03eed7cc1e38537a7903e74323580df59f50 Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Thu, 11 Jan 2018 13:06:00 -0700 Subject: [PATCH 29/38] Updating to the latest kotlin and gradle version --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 42c14c561..1659eedbd 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ */ buildscript { - ext.kotlin_version = '1.2.0' + ext.kotlin_version = '1.2.10' repositories { mavenCentral() @@ -62,7 +62,7 @@ subprojects { } task wrapper(type: Wrapper) { - gradleVersion = '4.4' + gradleVersion = '4.4.1' } project(':ds3-sdk') { From 5d26d4bc4a7f7a2666eb80454e5d44609fe183e9 Mon Sep 17 00:00:00 2001 From: GraciesPadre Date: Wed, 24 Jan 2018 14:24:37 -0700 Subject: [PATCH 30/38] Fix for https://jira.spectralogic.com/browse/BPBROWSER-408 Seems that building on a machine that has both java 8 & 9 JDKs using the java 8 javac causes java 9 jars to get pulled in. --- .../com/spectralogic/ds3client/helpers/ExceptionClassifier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java index 00be54730..e21ba26b7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java @@ -22,7 +22,7 @@ public final class ExceptionClassifier { private ExceptionClassifier() { } public static boolean isRecoverableException(final Throwable t) { - if (t instanceof UnrecoverableIOException || t instanceof FileSystemException || t instanceof SecurityException) { + if (t instanceof UnrecoverableIOException || t instanceof FileSystemException || t instanceof SecurityException || t instanceof NoSuchMethodException) { return false; } From 952685412c2842d28e9c6e6a12a20d5bf087cf8b Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Sat, 27 Jan 2018 11:40:15 -0700 Subject: [PATCH 31/38] Updating to kotlin 1.2.21. Updating to gradle 4.5. Reving verison to 3.5.4 --- build.gradle | 8 ++++---- ds3-sdk/build.gradle | 2 +- gradle/wrapper/gradle-wrapper.jar | Bin 54708 -> 54329 bytes gradle/wrapper/gradle-wrapper.properties | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 1659eedbd..19a39941b 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ */ buildscript { - ext.kotlin_version = '1.2.10' + ext.kotlin_version = '1.2.21' repositories { mavenCentral() @@ -24,7 +24,7 @@ buildscript { dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' - classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1' + classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2' } } @@ -35,7 +35,7 @@ plugins { allprojects { group = 'com.spectralogic.ds3' - version = '3.5.3' + version = '3.5.4' } subprojects { @@ -62,7 +62,7 @@ subprojects { } task wrapper(type: Wrapper) { - gradleVersion = '4.4.1' + gradleVersion = '4.5' } project(':ds3-sdk') { diff --git a/ds3-sdk/build.gradle b/ds3-sdk/build.gradle index ec84ec7dc..f48ca92be 100644 --- a/ds3-sdk/build.gradle +++ b/ds3-sdk/build.gradle @@ -81,7 +81,7 @@ jar { from sourceSets.main.allJava } -jar.dependsOn genConfigProperties +compileJava.dependsOn genConfigProperties dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 7a3265ee94c0ab25cf079ac8ccdf87f41d455d42..01b8bf6b1f99cad9213fc495b33ad5bbab8efd20 100644 GIT binary patch delta 15814 zcmZ9zbC6}r6D{1fZQHhO+qUg9ZS%Bk+n#CL=1kl6bWiu2d*AoPFYY^kRn%U&t9C?I z*2$GCTWi3(D#4SuA!LZ4LX!D)ptEk>?%Y5@lJJ^Z37rvJua-cEAVEO5kw8GGfUIeR zz_=L%K%SPqH@YUqClz8A2ks`C&5|27Tq&&MvYv>ZC{2eQvy45xWSA{mdFYZtrb1^_ z%*zGyuMzH}5oj0K+DSd8f`D7=SMlW=g>s-QRWcK?pH;!s=d<_o=dhIC2~B_nm`%8i&h{0-e1qO^IT z8tj;A!zK<`{|oQ2YISi&tmc;XGHm#gvD2bTt)k{)%&V>~Npp0WqW+C6>cM>>==jCJen&TS66JYLJXJN~`vU-n3X6~ojkti!u9Tjvh9XYd2k!&UAcjHtf*=Kwo_Ci{(ckRM~2kA$4HBnEuSSMz5dC8kWoH8y#%kmSD4R{0^-rm+|Uc%!W| z(1Nek<661DHDigQkuHt-;bf!>enzs#7ZDj!c`>CD;w@;3bF2se+f)O0_))jJis4+9 zfiUAOu^?NxYM86^`dho`Vngpe0ph8-9!jYcuatVxmF7vfkwAAY8D zQ2Pr#U~+M#kot*j1n58t4f)<^Jir@JP7;a%^s9Q#H`H>0vc@E+bXwk3atcUrg*5&p zzxSRN(r_0a;w*W(Gbg7(c$ZaXuQ%&8%<^4oYa^4}Q%gX=`|iUwo#wS3AQN?d4L>fh zmbUxCMio+{!Q&}dw_~>KvhcR-ZIqT`Q_TmNRFX|ycCB$+i*j$WbZoQJth!ap)bxT- zr-OoKg+)c-pd9~|VIIb@&KiL7fk()V7^)G50*T*`M}LfnICod@iu9=#MMByNxfk^}}96GD~_Ooeh%4AN=S~4+5k8gHaT#JpT-{ z_c*tH3zNJVldCJKF}OUS*(%=|>BwP*_UB;f%ov5pAbgOR<>l+`f^=as>8KN0HGx06 zK!VzDA=L4(55DBkBVrXoSzr#`HXlba_j|Wg5~q)L2wZ$y$Pn z$mb=7cM9A?iC;x<#hgfcqfQ~dM(6CMlgN9pcTzQscN){RT(A%Ku1$p0xRA8lIxu%@ zM+8lY19D>>!D4+6u!e9*F>08^UmNQFOv|V9I4f(_aDhyNdlwj|2ybgjiI!7f5^L^7 z?Pp^}M6L_pk){g;k8UZ;r<-DAHY1B!i1sVo}PN5V9QP5&!XRfFXfVewfJc&SC6yv>HMgU4Pv}+-+gg3}O9BDmQc;=ncf%Ck? z0p`6Tp2pytTKViw{Opust|T+JKi=VJ#emHlhk*-U&?@ADK{y2@4Do1P!0)guqYmiw79dx==z_Mfsdwp_>F>-fX0C6rc*Mh_7RmG*-6n?k>%wTv14Q3M;o?r5JMf-t+bytKFw>kcqc( z@K+w!s%8Wi)A*%BUDdI>Wt~h)LTj>i41G-1U7+si(KVY#xsh%)Z%GycfaJMTa70a~m zQrVft8KbN66q46EE89p$OCD-luwjsjSRh9CS9Hx_3A6S3^Pz^M%|>(WYKON&3RynO zH`50(pJx&{RCcfFUcQpM7+9?hgnPi_>q4-65X3yweibo$ zCMN62m_R=3W2a@P>Gn!8_V041%X8{fkr!J!;rcy3Z-->NwWpA9^ViZ|wlPI5FR*Dn{+KHaU}I6|3KJ(QYP1|!6?BC4 zC9F`nv)fIr#l3(^hleUx1rb666~>7ENz!D)EtQAWy$!kKC`vrdF)@GdMW3#3UbVUG zPh2-*h9&hzt;Q!f0&VoY>At?_e;Sr0=R#tLeou8Q_q!fw52}WD94%L$+kP-B-ek=5%Br@8C(Qa z9#2ETPR6`CgTip6HG;y5Gc!|NRfBadsjBmd4|^qrks)Fs6eir)f(5t{7DRq*a&AtaQSwe98hQl(6|!3O{x`u>gdq* z<&+5+#k8+~RaZQ2KuG6b!6IhHlO6GdVyPuM$UK-BDa1_e<9(xJizBp#4Q;=^_QSj= zV$?V9oUzuz%94cAed|t^WahwxM~H2DM7-1Mypf1p!aw7pG~d>6rH_@|w#wvHMP^ed zuz1HkR^BD_2tDuyq?s09N%Z7tlg=jYiB}kXAtRzYjsO%p7@2lVjOv8e9|Vn#XX{sv z$W^3*`!j9FpNUfiCDo8IHmohq$gfas;o@=g2t^j+nPo14)rAGSe`Mw-Pfks9=GU>@ zEbyJW$rIH@NMspGPB!%!T*y;Qt4Cz_Sn7FJA-Ao4H@mw2mKSVWAh zZ3Qw?g+;(gGHe*;qXM!&gQ2Vn|3LlMOV!J{&VZzWdH|bJQ4;1b5IR{E_~j0?Xvb8p zN=I%}MQxy=bxYM}_-EKBJpU4s-e~(zz9r^A#D7rp@_X>bS%MK0*#Ed0&jw!e&ILYi zx4bm`4f}{9c*vHy!;7qTY;1!%`{NTyjSS?m@}LHzmB>+?<)${PdH_X74vr8;-;}s#4+&~Sjpsta;WHul zp+;K_$CYMyWrrOOo_-S?*D)ssz1E4fRgcf)-+kHDRZ^Uqt&BUB$K8zVyURTR=+NKo zG{Zd%KTo%^kn$zmps&Fc;or-vg1|cn6Fp=!ZAN$)atss_O2$DV#%?ImdUY%EJRSsd z&;g2i91jQ!LC>t?k}bBHG>Q^P30|gF;oERZrV0ZzyC*G+S3Igty#q zZObH^r8=W>+>@&&Mwc1HU6_U8kEHcRjsdS)!7)1v{igxgXZWFbr*h;WB7y*X!0?G{w%P$9*SHh!nSt+1$RIN^&%opc1&G` zNp!tOw3b*&cR(OMFqpddi8BcDvVN4~eBt0(m_b=# z7}Z5Wcff`9g5~uJ-;J$7`Xia4lhYqTtAOsvnq8EP4C+7{0YMm;dnjv$r3OHu(Czl@ z1gn!-c9&*suUIW~89L5mVZ~lV8e&yGXSZ(sbxJ7}%X1Tu2%nG`%On1W&el66f2d*t ztt?0lZSII+|B+5fHSrh9u)8nfK5Om><6wBzm%;rW=##PhJ>b8m{(C!YwICP>$SMQ~ zh}7TP%GnLbl|~Fq38n^YIW38x2woU$Lq$fkBC2TU$rW~~atDgis6t4H#bAJ{Rrfom z#BWSC(Qj3~Vt$e`_hLjt53>WpI%hYvP!vgIXeMVbU#GKp5AG^%ZiGQ94`{#%M-a4@ zlLrMox7V5)1}OKxZ~~%@B(K#j@|*If<&D}p$o1Adu@)_?;&XUUWRjQ zjETsOrbrI9XkOEKMb*Dk{QGZXyj8& z)IUyxS|ujRY^VSdq!4P|qyI>LX&{7*29$0u+fpX<J z?qe2ZQ5EmPOks{}Iu}UQB)^UG#6nUTdtJySdwq(t1V}9@avMFzAdj!aDaA%Wn^&-e z{X3%CmiiHO1$%j~SR=DcOT&1hGs}8nQX87(Xzk>d1Zi#RnCCsm`M?jvZ3(iMFgvFa zPGT}qVG@14svwDKsW14_3V^Kue%g4jhVvLj;<#OtUAvAaDcJOH`8_VLQ(v$i(odvk zF@Nl}!F*0U*Q{!XJuKZrtst=f`kAu<@AscjARvvXARvN&xg`o9OBfO0>>p<7tB>m{ z%;N_djgCs(;v&}$dI$T!fvBTAlt+2e7-oY~KuhVsHzd4{*ybnFd>Y5+YA1dw*;(-#^Ps`r!6Z_6`;|$oVJ^ zUVt?(*xN_!+U8^vW!zG!a>bR*H!H4bws02dq}#zRci>y~3ONDjn!@ym6>XmCq?8kj z$2K_)cPcZ}?b72jj44%4^-wyG$%^X{T(Kp`qI4w)(3@OCDAY{;@>z20;*0h0c?u|% zQ&$%}L0)ajvJ`KrBUf8#LS;g>_R+t+W}0oCr7E!2F!^m$_M2t5YIZ!u77m_vyK;2% zcItF35wV54E97+{JQcEoOGT&rw2B@+P}}JEv=g4O9~DmQK*kv1sj};?ArG6GWOFkgFP25jA$* zRr}hDzeBRlA*@)RV{E0DL30$~IW&~EMr%9m8q{l9=NE9;wgQwX{xj?YFZ@9 z^yr!VOw3yjD;f@=>^0+!J(}*J+7WII=$p%I?3P5X66||U zXw|7SZW8M&U#J*a);Sd&LXc!O=~fyf#f@~8kb(eQSQ1D^#(B?^?imIj@si%mGsHGe z&Jgf5djnD}%39`bl2@Z#X%i-Wh{q@bNDjmaGVV~3Uy(?d|#IWQ+$-Ya$3|I7;8rnp}4Ugb(GDPrp`4 zse^2~533%#avIaZ=lm8uhd@T(v`%rBife};dXCK)9kx*5guARvIiok_>9a8GGDq9! z31?#QyjBIKQz}tXZJEZ&WM8P?<~iBED98tZPXQvQE#RCUNfnlL?*!_8o7)Lw<9iAB zqv$hZaHQTaVB-XJOE7ES@b`qGuVMR{2frw)Xh?YwaqJE=g2q|3nd{FyY7p|423(Ia_4ktaA{Q85X|PK_cntl=Nm|L8i!jP(e> z*vvsKCKfjR?W!3?!p)Zr*|o-NZ09|j!I%F~<|NaQa$%bvsW~#TEk-yYa9!Ezj$Zdn zT0kSB*y#u3Yswn(af|!fEv3Q|Hs~^gQtEPr^0BA(6U8b_J{phb$i|__6_vv8l|V$~ zQaYL^3UVK%9xYOpDWOo0U<7YpHv$Z>ny6I^nTz|LcQU>H5MVvp|DKEMZ!EIA6QaK) zB!>i`5Qr-V*YSaJ({?Gp(Vsq_Lk9(S!SQAe2&ZjN&YZ#C{dxWfA?CyD@4ftX(` za!{(1&r+<)CMfK4CPCPt{%;e}<<@t1BiO^9Xry;#=1N|ezQ+*X4F$**6I4|=49E-0 zpD@_+9up_tm+q5OfoABS6C_^)B1pw%xsgnEWxA?40~bp=zw`{(uVV~Fk*iG&&J>7l z3FY$wRO!I9EfasxMH{1PJwB^VIu;fln`2{{kvmc6S;G$T=RydIMqe+&@FTBT^~NYUgwOzv->{g)sLoP& zp!UwQH`R=72VjP)WK}m0bPP}K%YbsDh8p>US)RU-WCuBItEZ`csM7m zWpL}SxY`xoVw^WT*wj4RyZQ#o${uf7j{DkZb{0<3FZ7CuNN%S5bXL@E7`pw`XwRU& zIxSPE`hF2gPG|vs-U%ADc2#1p3CcRrcPU2DWO%0iY|20gO*j>C@DlY1eqQ^NO1?_q zibJ=;`V)G`?S`a`lGl@-RUvOUT-4ax z>!|&0T`iW)YuZZdY3K*a;(5D`$QUlTWgNcFAR%~$%f=4?8`VC^su{q4n8iICi+#GF zKNtbnw>7{L7_tWuucULmhjjM&!`neUJZmc7&(z~PW)Gse4?>pF?D#x118kcdxg8#b zZB!-f!UT)0vP|qedzv+L)FHeu>JBxh*fGfijqkO|x4y_(irK{t9g_riih&G_^aW3% z15yv(FuON^7dvcDri-N=FqD0U!{qwKh^)EzB2!ZCnkb6CW*9QNuRb(@+v z0~SHQa{#4+BCix?LYoCO+%7sxPEl^NGHKF0FLs|R! z5+3ccCXpR%2qXha(UdMsfMUvKz7f3f5BUVgCY^(X^SbBvJGt&)+waA-H(4dw!Lq|P zJd`-BPw4cf80XkpgPM!fXVD(}#Q*i?(BCLkS$}hg>c7tX&wo2Q;E#DMK%M4>(~=5` zAh+wmu&XSMqt2w-Vk*^j3Rh(+6GK^XrJ6=k2w7T3&M*Y_nA955RK+c1?=1)#qy(kV zw?wgNMMar3l8l&)IP2qSULe2w6|wO5KSFGn2ozVUuJAMv;#U6q6E9>Y8 z3#!oHB~OfW;UeAqtpk_naAy z_kh`V;aI6f=Pvw+V+~Fjr`UkQawt$1FZ$xLbJjWJFxlz`u^9g5)h0)8#4)zJ%W~pi z;<4zYEF=MAkx$87c8o>otTWgZbBfQ&Omd_;fwPvKA)L-x;7PH`5_Ybk)m}8))I&w5 zddDo2pXg-oZT`n2z)0I|zMiqbB?6)4%PpPm`Y-#;7trP&o3|3Lzk4&F6n4co#Ny0x z{rwrT!L7&f(=x02k4E4*hr3ZjPJV{IUSTZ1XIu?U#^W2Ht9eW?=Srvz=x#aWItkH7 z>gne##X_e|AX9O)s7?VF{%jLQsUUmW$0o#L|$$tjcPB%%1vU*pG9lcjWJ5W|)t|w2yX#%VbXW zYhy?ST9ZwPR8B+OVncg)m&_f+Q`?VCJa6nLspq$0r(br&-Pzd|Chk!!Z$vw4+8r3D zQZ8-kz!BbNRw!EPvv)VG=y_c%7s+JfEHEqBWDFU)df{9oQBB&QP)YhI5rWK7?@d`bOsYP@%=HjY+u>6ly>q@1OSZj2bdJvko8x* z>UX?3L;PF^HHG$F_c`BL_u0P$?(;>%oG}Q-otP*dJKXP)666-PV+@&0?eTUJbJfw5 zkkWPPCI)lK9|hw&X-!n()~C8B0InBqoPA%<3{g7Xcd8+g@U3I7mL}_N=QzPw4spy1 zE1jN*sSzO!xljIURtqnr!0UC&3Rj!Xh?`D?s%FO=rwKNJIf`Mk5!Va79nNP)^%`9R za)+VD7s<@Eh>I+zYc}X3sx>`+xJNnwr0B0IY4T+@S3btBaTeSw7f|CuKnqvrEnYPN zj&y_-u9soWZ>Ek5KNIqCjsBU=7H^Z)fIjt-bjw=y!tg`}c~xx3=)MB$aYN{tdHo~L zt=pVpr!)ZN@?%%oAKGU>4@Ryiy(&J%4y*pd;x}``y%PveI9!DCTMT@*eAZfnmOD|# zEoqzD9?{zq3y1Q?@DmPyK*rWUBQ9>Ug^$(7v%=PakT4s+xv~U_8jf`Io{`211k;qt z$IaQ-g^B11j#PJB0u-+wL#3zZ5^~7AC&6@$qqz!a;GfAB2nK|bt2@S6H@MS%j!%u} zfU=yv_aA3=Cl*HCB7d2zk0r+JV*aLVD~@dc+SFT6SrKvz)OhCq@Q78uEC6_5HfhH#ZLHuuY&Lj6|1=6IsLI8?{D_Zi>!axxb zJ>tYt{|4;bzhVz|AZj)X&?o~5(Bk;FRAtF%TxOk!QE=F z+q~oGguSe3?8n! zI20x7Y^mxh3%vYDE)*uEDc#_7g{yL|p~{`ehxVAT(U$H+Xn zXwF$O;U>A|&_}6tn#J%`U@eQ*iG`vjXvYf2z*WHCv!lxr`sOv=K2|9xz6W2xMS_4D zxX_Nyc52^j+Jg|@AUKCq&4etT<5h<#Y@-wZZOw42x+_8RDM#^oMKZQS0OpDWfTs+` zhRE-C7RHzX&^=N-XE&e$c%f$}e6%<0qk`k?8pv2X3t{rYA3fxf&zj0CnK$ri3~;m`tCvIosP|b*Id_qaI_6qS zcMnBDtG@0=x8q868#vv8_qpxbZ5ZX9dhyRE$8aubxc7CEN((cIf7dLEUgVjWilJS~ zPU#}`b05NRR7)-NoEH!qWFRE5o&8%LkUxzIqdW^-j5LM&tqX>mK1_4u?uaw$LYS0q zGgL~AM|-&BIP53{n8eXx`%a#vNLYMBPZcD#BOs<1_9xZ4l|bx0;_e_mm>u7rI`_8( zW4RoWUysvtXmkb2OREj0KkWm`Z{NlsxLmtXL{cv7&@~w%*hsr{tAxVKg7AaHu$(J$ zYIYS?+&Phv)ZE}(C-TIw5Vse@pUGG1B1pWm zhfHPjns4S*BphMm>OkggR|$irLH8*!L6U?_*hFSUKp9F?JFJLe+iwRsTZtXzz1{<_ z-VMf|qBqd+G8{$>_po73!?Y2vNm9}p{z=@Gj6mB*u_Cng(JzKG=I+43a;6{JrK?Xu z5eE5#gp9!d&k#VTTg}G*Mun?buAxGwMZ{$Iwf}@(+au#GM>68$dm%2Ax5g5>syuPv zfpVB$vRhukpUqRjYpSwl?+>l{q`B1o9tY(vNWxSxxHF9OCbK=*p{0I;8nRSQ=2W9f zGEXx9$X`LkVf8#|gFMX$Sv9@5tDo*xLGr7%SVQZcJ7$2)YXCY2cKu`ag6M~uO=tP< z5tHQnY(;lg3FIY+wRlSVOom8`cmy|ew(dpJd$Re9SY5swIb)NVCGUjbXJe&;Ym6xy|LPozJc^t41jC=*4$v+W9Kq0;<$>VH<^e>B zX1t*}6x8FwQDjoGITX>;AUj&9lnMdR|JNZg|Npvfw65Yi^xrVr^Orkk`!|V0&Lbj$ z?5J{A-BvMiSbno&$(G?@CEY@sCVKV?j_{=IIBsVLD&|oD)}*lbx!l$#O6(3`^YtqA zZBX2p1JA}9V6yxU!c4pdi==g~elPO(;=Bkxi9Uiqr}pfLKv0XlZRYdLyiO;=gqs(U zDL1fL**{k#f0Xi5?{B%P^ID(irq)d@KBcc^+j zHNT8ZX*9Y4dp?MYKifNTbX94$UWKjDxY9v zse8Hdv#(DVp-c{`7^MWVHx!heU`$peb-39S$$}JV86$YkuWoS(36pDl{Y_C{2H`nx zci;T(@Yz`zcT`ZZ?jdSE`Rpz`vaz0H)}<%JVjDXE3jW(W-$4nV=K4exeEL5QVYgy) zdbAjJpk7$8?tUp4|C%I&Xc+`(BmHhNIYqrib80$jK8z>nc?Tcm)y% z&WWBQ|1)R0y*yJD?#yO95;%;_5HG9GJ~4|?aEV#KKva}cDyX#I;hJ+q#TKA86l3cy zh3Kv8)D#B%g8y$!GKAvT0rD1v!P0a0V>xYiE*Q6r7Sw?u_8K_rX8&cn8)*Kol9C+2 zWbR<D%p^fi z^;Oa$s)y&N*n%X!b|Wf@w04xjBxq*wg|gaOgeP43Mi*o?NM7HQkCutT2-W7s&&NxM^de%TT3MG!K%_tY;1WcO&L9YB0dV%MEQp=sH)NT>SC(;IE9RGN3> zR#{m?9y%Q5Q5nuAyL)bs%z)Y!QN=|%EL#E{kj8!OS~P)-U@&pzGQ%--@Huy#nAp?X z>p3uzd&q-3@DTSw8DcX(8ce zZnPa@S1#_XrcO+I#Y|XvprgRu_Q9ngN#=3$HWiH>(#V0p=7wXG=aznJSrNVINbX7} z)fOcCWg5G9lTUG5L!RFiJ9!>PHxJAg$KcwX-&7+ai>L^ZQ z#yeTBqnNcc?ZVUjo!8^Xxk9&m;RolA(Oe9+cX>wTWz>fAg*d>qMbKd(`ZKLahNemH z7cISYYTre1UixAIb=%{WeTSJoMp2=Qc5XRe}UV4oco zPoKk>kN?z|T;m2G`=N@M(by^dj4P_Rj-9}~X_?xI*g$hLLN(Q>JgrdI0fPQssWoJU zqK(Bwr$7b9cTB*Ug%dlAqC$ub-BPN!;c`Zjh36wnL|}QI2FFSKDqIs; zmh4@`xXn>&YCQU3`dBxk4LN+1ee=X6)u{cb8A1iOgCu}Q;Q~kh7qPLXEQ$;@{0cJx zHCcYVc%4=VLWNaBZ7#v$X znqD7k%@mTPT^WgZ9b!@E;&RK{Ikkg#&iQ!9stSoQO7} zZt#cMWeXsfUw=5O%5w40npW{Bz|=3a#Ja#&q|u}n+Hk4EB2ILSRDaJZVheg8&Hrqe z7)@K~Cf_Csx4oGm6ky0f(9U-m)l=3Auk#l5NjIJ))7}(_98R;{!hLY25+@j16s3Qb zKJ;^UZKceN&3{|e{)*7kAmjJEH6U6Vvc6U&q7LBNA>*jDSgCBVaHh6AlYm4|#H`zG zlU&&9V1`0-Qo(ofqgZv;GUj1IW~(c>SCr*g z$roEyp{ae->9SHUC;t1;Oq?nCPXs|ykT_G?R206Y{r-_`j3y^$gaMN_O|derTbY5R zL+i^*`{u}rE4+X9q25z{Hk=gz%C5|>Z4{uxfX9AlSN2$YH-ZZ1UEPhk=^1ZeKkn() zM_Qnj&?(Bqe#q`tLdrd%84-Zhf$P>1paj%M=+czM$N%9f>o|UL1b^9TV4_Aj;oSn( zOKGKx&}ec;@m{*{9)5rAc<$Om>OG!E%MV<~-LUthVoy5amEALU=8V{;^tR4gL;=KR z{ejEkd?Q0Isb2pfyjOt8TS?#}bIp1v@76)}g7?}Ku#xmW+E_8Lne?tX>MMUxmRvjR zUO1oBAhVn_bgxOIW+#1SuTbja+GNIZ2&!q%z9Xs(gvR^>;vXER6;-(E7_p)Le09Lh zx^vS!;;O)Gq=RRyLlA?VvzKY<^$fuFzSqZZ;lR8H}Thd5J_59D%RFUd8DIEm%0jj}RbBw7XZ-M16{i!ZFL>r z=k;Z9hS9#n5T5BiT^nK^MF=n{&sU)zqxs*mQ&D8!3iSnup^o+FDO3I2Vcrd)EcobV z!=(|LEekw5{N=Gt7}WeE@Jz*A`J2K!W#U)ha|1})ScNxjUkGcbn8#C&YdBLi<~nP? zC>`<78>I;_Y`8{#W4UZYtsp=z5uHyil2Y4#%XUNm_6C16mia#a%5cWu$g^$uL7Pb| zn%u4-Y>@7;<+d&SSOXfb|Flo6CyD8o$pF+Oev`3PYFdwH5#;;yrLaQE1`u~%&Sw?ftmQ1wlN^Dw#Mq=CJ>;cYMW&`=!K2` znQmWsfsFMwF_a3tB4)x;+&2<9{%i;*%UcEY6n$PSrNTU*@?P@5m$-C8tM!DRp%&z4 ze$$LDsHsm3TI&DP^l4~GTv1S*DMFUrKb+oGo&VF3ay=uix`AI%ab3;l;AEtqf5E(h zmM{rBzEy&}3IuCCl@`E`mll-ow8EdapYHDzod=5LwRE(HoiVXY82kL>1YhM2&t4?D z^G9=+F}L#`h|341t7gpZKQ}joH@KG=Oq?F86uQWLYOBk6{ehNT5dSSfd` zvkJkmCV~&t;lOP=e~yg+!@Yip?HA^xp!46c&0uk`jSU&?lg`dk`zTZs{dXBPao@`9G(Hjgqe3>g*UY>zrHz z3dHbsv)_92obC7a;c>Swz8>5m zXgH>PC#g#7)g*A|Io8r33g(LXVQwoLlvA~U#j->y2d4sP5$}wAH{Rc#x-9C_l&5N! z_z~F*36=>!Jz$ViNOelD!x`o485G$Zg)tJN1#c(X@5|imt4y_|Ymx2Dp69US7bvS1 zgZTTyw%b?PWPlVSxjSq*GKo7xE#e^cCMjIvDag`mUN|nC_whx6a;iXJVHHVOak75R zL5@+@*YgQxlBTk^(F`Rmrqc~Y(@vmD2n7M5_%{gvE;Kl`O9PU->L?q_*w9I}-c9$) zl%Yg3K-~*-?P7!MsZ>UgvAO)H+W?p6c^hO^1$#n+yG!`nV)Ub$L^olxBqKO6V>Qw6 zK3$qJ5r09x2xdVJYfgA0NS)0OtlZFtw{1A|twwC@LSn~Gv@KmE{!DNFI}oouT7#(X zLrxz69PB;p(g5%)A7VnD2&F7Ad8;D%<3jzI1@fbH@(S~YRx$?uM&)M`y1vsidY7i{ zuuOrdPJzLfiYDX!_#j`C3cXRd~Z^;A6YBI5QJ(k6fo2Ac1TduWeE0 zgyxM|th=L`j@Afi{rtEMUDM#ybbRap->BCU()IK`n6uu@2({4@7RGIb7*m0vHqA`) zv1xO88PgM`xb<~hlVbq>+#-9G3@^R3BXv-u+!oQDL#aS<)rSkj)FxeIWA3f4vX0?` z6ovtBm?q67R8N~k?V^wPArzE54tF#QgX^1b$(H0nN1`AO0!F?kg!KbP z^?d1Y|2F~sXHuK+6PE$}X~gp(p0$!wY*y0cNVCvpUE34w2@`v6?U|HKTS=jCVg zgA;Qs*7WxST?1xfpS;gKe-|7-=VBt&0b z_!dD)fbOB=ZmC4%-TI8e5Im7`#ji32hDINE-G0$@C*D|ZSamaW`BjT(DV^eXT~qHS znQQYb0?WZaac58R<&!xI1>T+api4*O0m>c$1xc^D7{7dZ5t+wveNH2pu0*S;E@;;hIqz+}ju9#}6htXUV1AYa#8>=GxH;f0KgppPcqpAZ zs&c;#nQ4mdM!20z^y5J}I@pLn49cEvo7y)OGv_w_ko@>&pF_J~q%NCB2R~~x`jh?0 z{fM_Wgt!?d9gM7Z?nLpr3|eO0;hc$_CY z{Z2i-tUf4S@mcu$zKo#DEX*d(^wrGnN*eQ^vCnKojOpdLgMv!7gTi^BI}&L}Oz>`3 zom}9hS5=nv(~qV#oDF#CfikHy#x|H+jXdh(1J1$WIT#{g>iLflfXD;i?5`6C#x|Sb zhAW%eaxP7W4x^#(^X()jvhybu_r??O{?G2ewFXA?1`NzdbCx{>L2F0>63AR=-Gl}mc#ni@B}kW z+S)RtD!H4yc|*|i1%O~U%BmOjAeLKvj4SJ!mH*N23gPKk{X`&E*)<7Opzx8epT}g` zP?ym`7Y^dA5g%l9zD^15YznnYRr-Bs_J#X##(6`fH4;aXFANle^*<4H1W;PYbKO)>IU5k$(Hu&&!dmis8z+4c0-kzcdIzD4%O z&og@Iygu+;7D9ihrVN)$!f$I26j&G$i6%dRjYJ(=-xh8@)XIGct-s6*9>1TqnL5!G zIV9HUfRDxcqKe13#6&!%NJ-hcV*Br1VWVi=njnVT2#T=w<&z<;S zj@9rQ9n1{05j2qhc_I*2?2dmWH@ZLh6mCIjBSeM+1yPZQh8Z!=CIoU1EC1U`+Y&Q8 z2?O`P?pdJGj0M=FC$Pwi9C$K=P4K@qD-aO=zZ%>B{o1|$f&_t)lPCoLHi`Tt6KSFU z)@1&N_&bvK`wOB08v7vvJ7-Y{{?X~5|83d|fd4BU`43Pe@ZTks0`dQSy#rv_Qoalz;XD@o%+Cc>xQ|I`!ZAqyjWwr$(#*y-3w$4;Kueq!6UZ9D1MMh6{slCST%cii_ow|?zWHEY%S zF~{1q*PN@P9K5*-Jb@d6C-FoskzX4c_ul!=85AS|uc4Xn2OOFAgl-Zf2uKDZaISy^ z`2GVK;IgEN@|lb?)gXz6FuYGh5@3qHg$0&e{0*i}L?)nERy<#_K|@+SQD5g|@xA8* zzWcG}xCFUbZLoOS^=(+(@{RgUe8XQ_)9h!Xd?_$;Hg_d=`-exL;5{+m>kU63?arQn zpM}ztFOEyW&4_>JtRKN5^s&@)n$i*c0d{K`zzOFq%K+C{42)JAhJ2>9mT0EH5QH>Vsxhb##`hlRD4oFWpmhLKo+7RLWtgEjE^H z$e~eYVvF{)+DBO7fVjeNQc9r59X&+tC8lz1VlK;`a}G^Ow1HBO$GPmBL6wE)Mvm(Q zU{jf&^wRSfkdX=7R@0f6YfaS(ov60ST9%8rwCHUV$yt}-hUv7@OIfVGVUXk5g4t+{ z?kKFmLSRhee%vZ=X)ewTb=qF0+8%d6TR`1j&HCL_Jhwe#A6Xo*Z$O8CN*5np3nfZmq8ApX|7XQBeOG6Va$7KCpV@cB%AHmy>J$A zRZ6f`lzv~bWm5y=$#ABA5XPstDP8fstiW$+aULTeTjlzkzIMEraGE()-ZTf{|gy)$OO~o|P@4QOZI#Js%R^_rkMj6M!mr9b61&A_to=e=Lo*CW{sws|oxtE8xTgqd zDJwd-n}gh#cQ_&=g@N}M5it)_fU=oy`5w9NG}5Ym{H1v-|4QK|+>>!%kn*pJAaJoa zguLi$>_^t`wqmOM_n?w0ECyoMTW1f zsRZDx1m&CZ+0nxgYRFU06b~3JSz8M_sED&i2MtsYq=#IeFMKt|@oH*Nl3~FSkRrJx z)D)!}qX6@Z;ipzptGn>rA0E1bci(7|g3OJI+HH$^6;Wn(pC9tF9go3xCTm?3;h5gs zb^J#u(YzAwNp1Y4`N{N|0p_`4lLF$KTWZb1q7)D8tAe7CLsvzB&$q~(jl@G2WE0<;;xCNO`Dmh(#w_iy$YX&LR^4uiXavTv z#J$^$4}px6EG@_Mmk2m%7KrvmB?8KO(`3wAjTtB5IxX6q{4^U)0Pju63?JxqgKdIK zG)?mRR=x)HWjBZhHTiN+7%&%Ts}Bjo3&c$EygJ47SOFKvb~5;_KI2>6xR!yZS#bW` zkn23uJzECj5`$;Fl=w4Z*e1VKBwt)07vAXR7nm&1_VUD=g%VQNOC~RGu*%#-p5fpI zyKCdQ!C|%GvkQ$5pn=JBh+*x>rMPKo{e|%0=S{D&ws3$s~2BW)$`&VSIx^C`+0D5Uz>o}+$5kY&t2dHi&N=is#*ga#dV^*he4)LTAgi!Oy;n6j|c-R-USHfSamkef8C zwdG2+{bWqDyi{HKhVrST2U83x2RY1dVxG^~42fFrNvpx6N~0~g@V#Idj|LV9b%*H- zvI}nM`Yprh&uL8jfjG~NEF6Y>)*#DaUXzdev#+H`Qx|XFr|&xwNth(+Oa#Xw8s&LPf$>e;_Vyr%e<#?4B zWztMlVsUQ+scjXlh8mVxQ9h1SBas&8O7|Gc%B9_BT_~j?V?*>aBdcf9Tjk*VAmoD{ zK7G`ky5R(HIB&7Z*066_xBlYkl@~78>t1RsfwDd>kst4NBXyaam^`-mN^g%nI`*#wP=rg%`~94uXq}OL zZ|r0F80KJvK;2o^2wcCZaXKJfU3wf_7APQ>2-ZIvxF=o}AdN=FN@=7!h(N^d%4;5M zJiU-;xzSnr!*(oL#F8>4M818RFso?8t=p&-%vYLH5)jL2zJ}nYcAnbBIhV#U^s8c{ zGBy1QAAPg2fFQOa$>i6OpV;w@zNAKUKUX0iut}%n8%&H;g<)6MhyQ|n@oT2vDI<5=%Zu-{imXgJi3boL9Wb(BMut0t**PQi5dh^GK^2s@_Xei?LVuzE z68QG|nfL2fR2wO=lyuyEp}h&(DP!|`po;(wD08u^#dS^4esCIa#jE=hzPZU9Vx4{} zC*N-&kRMiGn!9751An-K=8Oic9kwmL=n>06LCxwtbpR^9FcT8!u94lW9=3!lwVWQ3 zcjPYyzNC?Ig^|Sl$mRlVRYi@7L9B}2bG*-6yS%46E}MCMy&oXoMx&rGm+%_Xg# zSgS~5y%4Fe)RQ$B*p4pznn2^f$@Sl~Ze;@!iX|C^wIn z767-jQ|Yn(fsXQ()%R@W@~go3pys9S+_-?5EV`4b1@riX7V1 z8E<4FOs7QAqpB(~e>K7pI3~ZNyQhiPA>j#1itVfAOgSzcM2fDj}fpg6D(o~BU&Yb0*{)27HOZ% zwce(vy|iMs_S3EsP#|3JH8|TGoLcduXZcq0RU}-vDXf49#klMklvbX5f;QZ@>)YSnu3^RumbxkGBdQ)%x|RAXYC27tYO&kd4pwa% zRkb>}V$2s|4$Q38%HBiYrFl-ax%4e;vP35{yYPl^jn{3K2<11xayX6S9rWoA^ERV z!kqK{S!iP?6o@=R+JekHK~_}jfpXv_vH{ZV#yIJ7b)+Lm2ZACX@5<46H7W6*pZKtm zXEp<@EN}~Zu1pi)Er#gSG9w5GZu%AAJ210{B7%&&r<}q`y~uD!PP*V)?;yw0;G))z zBRplx_lSB;(w}2o*F3G#<71g7Ja5V=A+cGgwEd<~g!%d#HLRC8h7A2wS2OcI#g@#A zGq5J;_Q@P(C8Ey^vGWIJ^6S?Af<{h6Q_tP$hQn;(2 zdr+LknS?bNuUQI;uq>4Q2hI(>$}Srs4});HeCWh_4C!)4Ay(VK< z>VMl@q`t{u%!xzMnPJXYw67~I%_M92Y$`${oInQO8RA?yCgcW+Uwp1BrnG(Y-mnF@ z)@4F{w-m$7R&6RxVt6p{+~GH@&}>2S_(^~8@c?DMez>;xf&9`pte8DaPxhD(x5OU< z8C=-CG>)8C{`C0l9dE&HeN$!_IRXe}#!|i-_+p>&^UT{=GKn=1C)N`SFc^b2!!P9= zG)?v$!c}RZ#2=DwUw?e#hMJe|X+;K9;3(G%KH87?2j1eoq0bHYy?}$mFGf64FV?;; zE5lriGmTo~MW7mbb;b{voHal4&tiN`46;K!vphNz7Zk215+oXu?s{z$`VeKGSwvnS z#x!cgG;mU^^Rd|l??m&4f10OhNB4%oDxlf3W)>zQgISAIX~FsiFWVbUMA- z1!`oLU8EV^^ELY%hp=*3Sg{x3hFIk<*ezWr7UW}?4oy#e^qqY5N5Yru65K7%d3|#k zR4&FS@AM5tvJFRQFHi{rJee#>iH6|YCEHnk=gA8BDt>S${UQE$2{=mQDB%MG0a=9r z0g?KK4-~dzlP~Qwl7LTv+uU{ zFt)mWDlV-JF0C7qKKx*g#h4$A&or7g!weGBp!LJ2^W-OR`N z>fW*PvGsF#o+CN#x2;T#d8~aQoA=H#aRj$&&)|V-2YHIwU_T?ebiD$>kjeONFu;V&CYa8Hej|h3Da_;qp~%#d6&c&_HEF+X&Aw^vUO)8Ky*x zX}(~Y8d7>9!3}i4(%AqhuFNa&Ba;@7n{9@(vEHKE%?7Uz1Y541hdDe#EdZLqx4dzp zU2n(BT+b%wWizJ3!4;S%tTwW6fR|cGRj+tiOjmZ>V-(3jZc!>15h-j9`BB{0m7gf- zKk%YGf;+EhZg3Z0JoZU>Kc$VjJp4UhUTmiyLFzDS&S+LK&4NaMs(MBUdgu20hX6u? z$Aw07$}MB1^b6?tJw>oyrD3No z-k(x%ZBsbt8{G7v@YNXg_7#lrF}EA?W9tq4aX-;!=8L~;Ja`*+CpfzGJ@EDry8F+! z!T6UK9%5mVLmZ;yU#7Tj^@A_40BSEUnwY%%XJg#>Jxc|^`vcq`uxI%f$|^7Q!8(d; zlyB9=w%R8Fw)iIzA;6HIX`u!7b=DW|%3>}A+o)F8O;?GlsCv=VkE_~)R@V)qqa5rz zmg#T)Gw!ZkR9S#(HvtI))GTQ%qdWECCY;EUX(vvtG{>lRKXfP@(s|Xb zRR(V^H+^|P@k?roUwDgC4d*dlyWnR~w&5K#Z4aQeVtTIz@4}YhR=^;j`bh65Ti12sa=Jq&Sl7kF&`SN5 zI;<_OSE8>ISk?M-=JnI1w7x3iyk?&rVU?7tNBqgOo}uopW0eQ)fdZB5lUznxBN(Mr zZ2v}e_m!KQo(tn_HQW^8%C(;;E}blM^SQlY^g6H6R!)G z*Y!9bppH4*G_yp}vin97MwdRo3)=)YYpOKh;wd%w0B6`A4d*{LaJG>p*ABH}Bh?8g zQaWqxHG5^=e@6Sv-;2Kr7Ty<&yZyLV`Nh`tG3O~cAlXenv;C-5hm zz&Og*ID*m@NXMC}3sEq|DQl9)Qfy{`Uts4!51SRo@`g2InH|nj`O**OUs8ludfIM} zc9@>tm2f>j7z7Hk$ZyKas?rS8ws6Ddbp?6@_-n!pb6^Cewj)D06TRZk8d4D~xv^i( z(TDoV`Ufa^$iMCkE5YfTwG}+FGoNO;Y<>#LucqLFzIQk9NU+EMTK|cyHd6kLXYh0Uj)cP@;^^-hci5ACk zxi>WFc+DI~YG?1h0%mvgGJ;94^oW~A*&FJ5vZWU*xM5QKliU}Tcbp|Wi%Dn()k2?3 z1_s|3?e_hwZ}MMny@TZIyBd?iG2@#;EV21sDXxhmXpI9(tqw8d3QeE@B@4VEVV2*x zLhr4XFp8}nFa{Sc<}oxSs$l8!?kIL7E>jY$h6O-%1fuBfaJZs??Q+>-HJ${q2e6N* ziqw}~7gL@3IlXv)CfWeqynqG_I3 zJqOhu!EU`z(}-_()(8pqV9<^(Mu#Xm%7 z-*mmbMwJiWMqG0FMzAr;(FG`>ExSEwqlL2p`+b!5#hw8KvPxLy zSL3qF<~nCSHJ$lun!i2?xZZTRf4|xh7cRKr5kCdYg(?;Q@HgiJ)547FXV^yf$+EaZ z)zp*hUkS3Pvwg$QDpPT}_yD|`*f8e@=O?+W3xxB@jlIbXaTGGx7^; z%9!bfw3T=30>7;J!^Xt!zd-)I?W>Bx5|;n{yL^WFd%*nX@6wXl(%IO|&YT&z>y8D? zjV1&bC@&ddjD5{<(4tJ;LDGuQeE>Z&%NfXH3L3B-w^XdFfmz=G=^0ofE<)7Rdi_S zsg{zoGZL)$Bb-np8*Yg560Bn^kL$oZ$4$V(HDX#9U+|L%%(fwW$Ke^$kp9ocs*%bW z`clI!*4TqgjVdPt@JWoSmx0bdmviTnmWc#+V{j3lBJ?=2{QE18@97ucEl)kHWSmGfQ=AAyfIyAS9Nql}Rjt$zJ{iZHHB!(yL)+7Ss;cy?z|ATs6g zFER~tX&0~L{$-$+W^B+SIvGZIyS;>RVibpBql4N`ZIue41R`4a?+P5ncFGN7 zOklGR1^j@59i>cnj%gJa=03*xA#xZ?u+)x`k0l@|q7pav*`}Owa|Lg5RTaMED^8pS zrf5tSuthpmzgrJp|Iun@$StI?zEwYEcv#{J2{e?{nPZpc1jm)I;-R!ceMP4?hPcPp z9F$ySf0UqmLjE_oTl?!>(t(a~a)4_k^uOn%HiOP<_Xf-Y|2=3E)J_aI&hauhG*$}4 z%w>)NK-;x0c3aoU&1$^#9qgY&WJQTs3ZVdG^K89T-Nj7FgS^?<=?s@rkCU6vKfgbq z1H7uK6NV8H`5N!7#ftK>@TgczNTJ0?nxQb+=`1)YSjtQcB@;E@dh-?}N^GRUKsrDol8d`?(ac z!*1^Srx7Gx)j!`q&Ib8~c1ktf^$IN}qHJj2Vk@FTEO9|{N%y}g9&~3OyRQZb z47MWC^(8xsnLnpe1kZokJ(uU?+6oYq#Vp{fmU&o03^|Vky6Q3sN)~>ziVw4DJRPS; zC6nW_SGWzvy`m?R@&^zvD2pJ)>h*4K;%5>$zyqOga5Dwc)`N6Nia+n>m}7Q7)we;JC5<-g_u$;0SzaoTA zy-eOdY1qdNykw=p9AoWiw14T9jX18nLtwpl8VuyhBt_KUL9cIiM9@beg`L4m7_Pm>MFikS-kHI{`2WQnjj%f5+&0AfFZlJj>AgTxV zdo-gnKFH$>EmFdW`y3}<;-r0+LV0d`o!>`SX6Z|Dsg$EW&}SW8;(bN{)`v)PVzzExKz zr43~CBNl!!B3_|KK1^Udfs@Vw2cLCELbhNy;8!dRDEZ^np_qH9N?{600P7a?cX1mP zvp*@>l;`?6{Ne{-2h{FyM;?y`VjDTPX!a48WPo-wkGIR(**sFW7&G+opx?zY9GeKK>i1|~+ipO)X0esq}d zDIuip_xT=~B3~Nh-Jv+Q-H{B$MfFepSSX?FjrF`~ZiwgVyP#y{xmjMN= zOGN@KA-5*C7)++oWCm$$Fq+dIP)Cg7p_7B6BS3v2UTde?d1P&moE5!5e5Oc{EDS^c zDv0qYr5D?TcyT%1;di+aJe{4s6&CgfEkF24Qk$PlWm=jjsuSiytG<{XUSdp&h-hwI zxyVrJsFiE5==gmIJdEc#3!$S$@H0^l$s-G}YH_yd;F4k7ZyVlvn$%>{<=#HYqIV^@ zmPKpNN?~It&SJJ^r&WF1<{t8uddnl`et)s`^PrdUkR}7h<2pce_ZuR=IgRge=U^SL z01U*nu5IpabEeP_p214~R*eT;#v3lPXznfKkncRP)SwxqFyGfjH}~__yrSP?u;f1g zA*Etyc3*aNHxcisjNq6MAJBENL+k}lri6n}WX z`x|sOAJ32Z&`rxn#2Mr8IpZXrB*rlym>5=Ac~+a^(j%a6m*m}UDv7`FAu6!e zN5x&HFaAm{aHhRL82#(v;rA&dVw=te2(x=nN%A@rWf7huiQR+`@bhn(<6OFQlsrF9 zdUY{wK`mT+msXt29fk>fv?F}1;wUDM${H#uWvmuY#?EKqmsn*L^3>=&;5aq; zMuhNsz_{nFLz2RcA&Lo`e8$o?ZJZ|gI#5eeVS8JRP`y&8QKSKr3X@0Jo ze_v$O5}{pCGOj8DLra=OMWu+xI*@Q?PXlB#>ymeG8wNls?Fg(#W6N-`=6)2#{Ak5Y zDdZ$_--&Edo@CB*!eyxgYC@-wF5@YxyUs?9|%BJJ;d&p%>@2vn!^J zR>`BIW>0O$4%FA<9P!#NBr`e)1td%df=Wy==j@)rFc>w!ZemA_PbOL(JgSk%KO;35WL|kX?*HV z{hl_L+}q`<+(Aj0EP*C2TWvBkj2>3z$EztpQsqFhEfRX6{)9B}Ap~RKL=_2JjH|ll z#cucKbox(f^%6taT~_A^fMxTG%8H5LoNKV?tYqGC<}rGJO^`GC}QZKoV*ivI=^AL|ZJQ><-c%>vXnX_~aVAOD^SaROT6&euq_hha_d^bEjpy zJ)S#|$uf(2dVSTQIfuf%k!RFxk`{ptD>&avC!h#``=x^Lz-smi;5m7Lxc5b)6bjYI zjfAOji*kpxwntM#ogmyIjYaR!Fmp^hGfx~6T#Q*pLY;Gu{4uW-b2Kk@2R|+O#>BGz zIdvY+H=??cdrtL}Vxp_Yl)H^-8&sb)_7K#%#wfYjI!Oj` z(H`@g#0mdDjKun1S(_2lDhT>-HSPK<7qIMypGSd_6 zVJ(n-x6$zDP={_f`*p&GQri->R6y_^dAN@$>S~E5Fbc>wN}7@!D?%dtPEQ(o-F1kl}TLGyv#a zPkM^*K3-QvRt1vldVo^Fo15K$xVO_A60&Y>|ND@dk(q6pRJ&jwoMyEZI(wEPgsw2XYG5bgq;u2LwtHDyHAT|;N*Bit}>W*Ef^KMC@U0QgM!FLwz<`r z1?_LblQlh-EY@i$w50yw4ZNE`97jTAlf7^n@$YfcYgd^KGxE3g7W`_{G=U6O<1?}c z@~NZ6H5o_u7}OE=orxE7ZW~ z+z{BWz0tM7SbXlzCY-z)Fu2f?W^79|5Rg&2zcx@N0KBLAN{b==0}l`gPLT)_EI@`l zVVVRY7VwKrLOmIR1tu)qQ${H%a6%zH14N~~aGCD6N>!nepH@YUrlf3yN_EYxiG7vd zwvgTJ_3s_MO`jh=o8Gp1=Y3BZ8Pf_#R8NP8SAsruJ*yj+cegDbJAYm}&?Pvcl}{Ft z-T<$E0Fpw)6Q^}}AB<_AO2n5(1!{cPMvE1ZI)?-~uGR*8xL2z`hYT}TIi9Suv&Q&N z&(-_GlwJkI4iot>@5%*cPlE)Qj@Xabbq~pMkbdD1$FEom#4oMaEm08N9MMtnQVunL^k<3x!Q1H9`)+3HR7wg<-R5nD81agYlS=YMiBXjhs6piY=UY zs3Ci|#5g5(n^AI=*fv(hT6WXbD935IF+kAWo)Udl1nsV2POk(1QoH=n=1`)6v5#{L zZmiD2Xgh8j2a@Q)NLj|E5uGCr58O>=hbb~ZHoDx2s`M$)QEUW{tFD|>SmyPuOx`e3<` z7Bm$d zXe(25v12my#IYD|3@{L&59QPKDN8QXx7-r3C*b&%`EZV6=0pv4990B9DL@%%d zNOmAOQy$!U69L0SCuzkhH33wOL;I2J$%C)})*0MIyd@}e@)#W(7n`2Xv>kj2>3#Ha>epEqHVyvgvjyZw%_QbT;vbF{O#qZ>VTEni3gY^@ zbyz3KvT5j{%4^S-Lo{2WS0-MnMq+I{M1E1&xJb4*;RVmQnUlXW4hK1Va+q^2N_F7s zit&v_W~RO9*sq+_mV%`OM%Rt7CDy}s@0C$x5#=?%C$v(i){aiip;%FcZ|yfyRdL+!i-kT;&-81dQ2)1&BuTgnZ3yXr$3#VbO~#6{bZxDRp4%hx?$4`z;`b_bym zdQ>y*H&pnzKA?k-&>|zo{^W)XnAr1q6#@j`Vv7s(d*J*b5jOiZXPKMq`>ED~Pzt^HN6%?Fdf!Gv)->wwt)<=~$ zhUg#Em%C*Nwmh_1ldA4Gi%<1%C7(T@e6NP9R}m{U0stmB+GM!iMSlc_)nNll@81O@Lx;bw+-;e2UV%^v~eSr#ofAxaNsO^3P1EbZ{ zXMjf#BDLlj#f|0kS2^noB%`d60^exOAjRl1Ampi53+1t4_PHEkFCDYMfHobmfPtA` zG}sCvBe82ykHTV(%;>ZJ)kcADb2076gT~CIrwfQ8x3*QRMx>U`w9nMuiW!aefIPe& z`P(~G$8&|>uDqLq>Km-H`IBij{96G(e4>E|4ap6gTYAum9Ve_X=h^~iGZHE*I%{*k z!6HN(;f}UZy~$kam>R13+Bfz)_Y0zmnb<^Wi4T{Xp$0zKZV$d%PZVR;lpLZz5Vcz^ zECxWSk2Fh|WHo*o3@P5ovn@a9c(DDN6KMTZ)+db!9i{vr#p>bd$agkj(*BzL;W&Wt z!jV?8zvp*SB>j4RPN>TK(S05_QWGbN4EyBN?U-LZ$5*bQBkVoT2ng;xu`Ixv6s*HV zze<9$I^655cXiAVCIj#67s33q$5C7S=n5z)`r-(!I^$S<9gWYp9-;{e>y<oF6WDebIVaI$;_npTRqkYR^6t8;Q>34o`=K`UouvA(yALi~Wp~bUiN00R3 z#HN`_q_|F(=nl2JYes=Kmgu4Zi8kxF%~!V~NA|+Z^}*Jb_S&j8Sz)xCCQs@CIR)Ts zskMH<82)Sedh;&F!b~h3N2h0PnqbsLWVI)4<_maztfxXy7WvzA1Tl75Me zdd*k&r&lC9y?et}W>0D7BbWh!S6-~GOT zy>ukR`y)~(Zqu`AWeF>+Mv6H(&ePEPjc;e@d(h{Frs5Uh!9g(uZNx@W7G(MM^AFY9 zE*$B;*O$rEF|SBmxTPuGn>7yRxryMw-=*4PjE_ewK&aq*Jg?Y#X~XM!|(k;$|bfI-}np3^=qpx*et>| zb?@@-JVG&QCI9O90V;%aqf&cSm=3LMc4o|VZP<*id-{1t+;p*7e`a9P7fnWjRH`W5 zkkKK|218b395vb=lx4ib`=S8zI?chE5##cQC7x2u(hj%7kCH2WgkMgHS|7ocjLAMi zDxW+Z^asy0^9LJow`sp@SvwYntaOCEGUJlk(wYtL1#57&qU+*Pt!QJ5UCxCb5wfyx z%Ag}Ks-V%Uxq#9ON(`4J`t?g$-n6$k9rK)-liNKU2RL^ihhj2Rx?zA@u==VZSl3)M zmQjl&6q259eR!iHQqH^b{$@rylBD~+~Q8ilUZFI334pACRf@1L|pD=HY z*L8beLytHeAr+S-k8|Mo9>T}mztu$5el{Il6p57@@)e~?tv#!$sObdwSSyHo5yy_K zj9q&?FYuI#`>J~Tm;M0Ezu+l{?k< z&i=8YjQYkx7wisaX5lhg@;lvI1zd~;*6c;WPceb6@YzIno7lPA%L3l;^7&hN2kgpu zP~6_kR?7JCcZ=|SBAemy-;7yDOcKH zONQTz{QAItc_zn|^0uVv1>|~P+L~E7Zg##M0*#Msdq3N(mJ<&*^vdFJ9&fkNGI5_m5Q}hon1asoD+!8 z3Ws8L%-d9D{uXs`DAbaxTUyFr$`9^Y4bS-iUG+xmvwh|Dh7v?hdEl=fW|jR-;K7Ex z-~;itzuFJzlXM`IPE|Vou0kvbo%Kx3Dy1TrmsrC!+!OE#>&+U-=fX;cTbI&7T51OZ zW4G6dFGnB;&cq0*51pfPgka*tti5&GZ$g~(L74^FRnQUEpcsVT)12SiU2q`LvZ--R zdymmUEGCELWwGW7KCx9fG2o7UGXM5LG`xjAVhJSDbv{~t zHwS0sg$bf?Wi`mTa$rg4HoUV5K*hecuZJ}o$>7v{}|pEH#^Y0=m&gAAcP@zC~! zh<0;j!H3Sk)vL%v#Prcj9GS4_L{6{TF?D=yL8Q4Y%8N8Jk*Hq#2b8|}Dd8+h|2A?D zp+Z(r#u4zlQ0c3y-{+|b!YHrTUGJ6iih2eZFT$-E^M*`_$BY+i~I2vS}dv$k)6-Y1o3BJ3_^Z!yc!E{I>PI+lCM2ppW+V*aKE1hZQ1 zj1_D~#n(lVxv@lVRfU+})c5S@p;dc0`KEj)L`?(7>pGVRITmwm`G;<++XZ42f z=9KBn=@tJ$F0fl>4bnx;`pzHn^t=p+TABY%Gq^3!X(pZw-G~V3kEg6^?SwGD4%Pl8 z)DzvnxmP|)Q4X{Y+(AAIhk4ca&+wNJmO^`Z)p>*Ea9ptKh2Geaa=5yJe5;USm(Aq0 zvKIuTEq;@a5kUjpfkz-;5L*g@;|U%w4BMPcf%E4Z->vdLp24+vD}4oH7vEta-xaeh>asgzU2Enw67+a z7IUz_22`A9e^Go9e=GouS&_xru6~y-*Ocqdpu`FXyFY%z(7q88b68_n*Tmshy0fHt zY_24QiVCqg8W(u{tfugbsK$yRkThtoi!{M5+>Yhf~;7 z9{kkd)`@lPhLacKF1#^U*hBOnX(b%~1l7#l>2e0LF&F$v)yxeS>_9mGNciJM7^Eqs zi4YkM;;%CW8b+?_mp!n1Q2C!x<|gE!NtpkCeED$73@pP9C>lZzw425z_|KRe2nhdQ z^U8m&Q1^d8zuobGThl0z|2^w-H;oB~@BPmM`WZ5a|C+4;s?1=4A^ZJv58#LYUtog& zYqih3#nDPGr6B40-l5%H$RQP65YS^d&>C# zUij}+{?&p0SM>Spf54&(qy+!fq}=}-(c!Pb!qI?YTt%9WxUh%^cGCxp?-c+hETI5-m+-&_ k2Y?z&=3ps9!0shhh<^xow}b_DG6aNOrh^h5{;!YxKjAK;s{jB1 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 933b6473c..be280bec0 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.5-bin.zip From a4048e8923fd4142c17736ea4b92e15b2e80fe88 Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Sat, 27 Jan 2018 11:47:53 -0700 Subject: [PATCH 32/38] Reverting chnage made to when the resource file gets created --- ds3-sdk/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ds3-sdk/build.gradle b/ds3-sdk/build.gradle index f48ca92be..ec84ec7dc 100644 --- a/ds3-sdk/build.gradle +++ b/ds3-sdk/build.gradle @@ -81,7 +81,7 @@ jar { from sourceSets.main.allJava } -compileJava.dependsOn genConfigProperties +jar.dependsOn genConfigProperties dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" From 5222654f4a67de9ffa07e3284a1901d4365678c4 Mon Sep 17 00:00:00 2001 From: Sharon Shabtai Date: Wed, 17 Apr 2019 20:33:14 -0600 Subject: [PATCH 33/38] Fix metadata header escape, split between key and value --- .../ds3client/integration/Metadata_Test.java | 4 +- .../interfaces/RequestHeadersImpl.java | 11 +- .../commands/interfaces/MetadataImpl.java | 4 +- .../utils/MetadataStringManipulation.java | 44 +++-- .../MetadataStringManipulation_Test.java | 186 ++++++++++++------ 5 files changed, 169 insertions(+), 80 deletions(-) diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Metadata_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Metadata_Test.java index 00733373e..96a1c5c23 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Metadata_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Metadata_Test.java @@ -125,7 +125,7 @@ public void multipleMetadataFields() throws IOException { @Test public void escapedMetadataWithSpaces() throws IOException { final String stringWithSpaces = "percent encoded space"; - final String escapedWithSpaces = MetadataStringManipulation.toEncodedString(stringWithSpaces); + final String escapedWithSpaces = MetadataStringManipulation.toEncodedKeyString(stringWithSpaces); final Metadata metadata = processMetadataRequest( "metadataBucket", @@ -145,7 +145,7 @@ public void escapedMetadataWithSpaces() throws IOException { @Test public void escapedMetadataWithSymbols() throws IOException { - final String escapedWithSymbols = MetadataStringManipulation.toEncodedString(STRING_WITH_SYMBOLS); + final String escapedWithSymbols = MetadataStringManipulation.toEncodedKeyString(STRING_WITH_SYMBOLS); final Metadata metadata = processMetadataRequest( "metadataBucket", diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl.java index cb6e7f5fb..49128284d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl.java @@ -23,7 +23,8 @@ import java.util.Set; import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toDecodedString; -import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toEncodedString; +import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toEncodedKeyString; +import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toEncodedValueString; /** * Implementation of request headers which percent encodes key and values. @@ -37,7 +38,7 @@ public class RequestHeadersImpl implements RequestHeaders { */ @Override public void put(final String key, final String value) { - headers.put(toEncodedString(key), toEncodedString(value)); + headers.put(toEncodedKeyString(key), toEncodedValueString(value)); } /** @@ -47,7 +48,7 @@ public void put(final String key, final String value) { @Override public Collection get(final String key) { final ImmutableList.Builder builder = ImmutableList.builder(); - for (final String value : headers.get(toEncodedString(key))) { + for (final String value : headers.get(toEncodedKeyString(key))) { builder.add(toDecodedString(value)); } return builder.build(); @@ -67,7 +68,7 @@ public int size() { */ @Override public boolean containsKey(final String key) { - return headers.containsKey(toEncodedString(key)); + return headers.containsKey(toEncodedKeyString(key)); } /** @@ -76,7 +77,7 @@ public boolean containsKey(final String key) { */ @Override public Collection removeAll(final String key) { - return headers.removeAll(toEncodedString(key)); + return headers.removeAll(toEncodedKeyString(key)); } /** diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java index e863657ec..373cf181f 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java @@ -25,7 +25,7 @@ import java.util.Set; import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toDecodedString; -import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toEncodedString; +import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toEncodedKeyString; public class MetadataImpl implements Metadata { @@ -85,7 +85,7 @@ private static List getValues(final Headers headers, final String key) { @Override public List get(final String name) { //Only ASCII chars are lower cased, do not search for key with non-ASCII symbols lower cased - final String lowerCasedName = toDecodedString(toEncodedString(name).toLowerCase()); + final String lowerCasedName = toDecodedString(toEncodedKeyString(name).toLowerCase()); return metadata.get(lowerCasedName).asList(); } diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/MetadataStringManipulation.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/MetadataStringManipulation.java index 24dbbf091..adca9706d 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/MetadataStringManipulation.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/MetadataStringManipulation.java @@ -31,15 +31,17 @@ public final class MetadataStringManipulation { /** * List of printable US-ASCII characters that do not need percent encoding. - * Includes separators equals "=" and comma ",": not encoded for use in creating Range header - * Excludes separators: "(" | ")" | "<" | ">" | "@" | ";" | ":" | "\" | <"> | "/" | "[" | "]" | "?" | "{" | "}" - * Excludes Percent "%": not considered safe because it is used in percent encoding - * Excludes Plus "+": not considered safe because its interpreted as space during decoding + * Following the spec https://tools.ietf.org/html/rfc2616#page-31 for Message Headers */ - private static final String HTTP_HEADER_SAFE_CHARS = "!#$&'*-.~^_`|,="; + private static final String HTTP_HEADER_KEY_SAFE_CHARS = "!#$&'*-.~^_`|"; + private static final String HTTP_HEADER_VALUE_SAFE_CHARS = "()<>@,;:\"/\\[]?={}" + HTTP_HEADER_KEY_SAFE_CHARS; - private static final Escaper HTTP_HEADER_ESCAPER = - new PercentEscaper(HTTP_HEADER_SAFE_CHARS, false); + + private static final Escaper HTTP_HEADER_KEY_ESCAPER = + new PercentEscaper(HTTP_HEADER_KEY_SAFE_CHARS, false); + + private static final Escaper HTTP_HEADER_VALUE_ESCAPER = + new PercentEscaper(HTTP_HEADER_VALUE_SAFE_CHARS, false); private MetadataStringManipulation() { //pass @@ -47,15 +49,29 @@ private MetadataStringManipulation() { /** * Percent encodes non-alpha-numeric characters within the specified string - * excluding the symbols listed in {@link #HTTP_HEADER_SAFE_CHARS} using UTF-8 + * excluding the symbols listed in {@link #HTTP_HEADER_KEY_SAFE_CHARS} using UTF-8 */ - public static String toEncodedString(final String str) { + public static String toEncodedKeyString(final String str) { if (str == null) { return null; } final String strUtf8 = new String(str.getBytes(StandardCharsets.UTF_8), StandardCharsets.UTF_8); - return getMetadataEscaper().escape(strUtf8); + return getMetadataKeyEscaper().escape(strUtf8); + } + + + /** + * Percent encodes non-alpha-numeric characters within the specified string + * excluding the symbols listed in {@link #HTTP_HEADER_VALUE_SAFE_CHARS} using UTF-8 + */ + public static String toEncodedValueString(final String str) { + if (str == null) { + return null; + } + + final String strUtf8 = new String(str.getBytes(StandardCharsets.UTF_8), StandardCharsets.UTF_8); + return getMetadataValueEscaper().escape(strUtf8); } /** @@ -73,7 +89,11 @@ public static String toDecodedString(final String str) { } } - private static Escaper getMetadataEscaper() { - return HTTP_HEADER_ESCAPER; + private static Escaper getMetadataKeyEscaper() { + return HTTP_HEADER_KEY_ESCAPER; + } + + private static Escaper getMetadataValueEscaper() { + return HTTP_HEADER_VALUE_ESCAPER; } } diff --git a/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java b/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java index 01af142ae..5cace80ea 100644 --- a/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java +++ b/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java @@ -20,7 +20,8 @@ import java.util.regex.Pattern; import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toDecodedString; -import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toEncodedString; +import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toEncodedKeyString; +import static com.spectralogic.ds3client.utils.MetadataStringManipulation.toEncodedValueString; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.nullValue; import static org.junit.Assert.assertFalse; @@ -33,107 +34,174 @@ public class MetadataStringManipulation_Test { private static final String STRING_WITH_SYMBOLS = "1234567890-!@#$%^&*()_+`~[]\\{}|;':\"./<>?∞πϊφϠ"; private static final String STRING_WITH_SYMBOLS_UNICODE = "1234567890-!@#$%^&*()_+`~[]\\{}|;':\"./<>?\u03C0\u221E\u03CA\u03D5\u03E0"; - private static final Pattern ENCODED_PATTERN = Pattern.compile("[a-zA-Z0-9!#$&'*\\-.~\\^_`|,=%]*"); + private static final Pattern KEY_ENCODED_PATTERN = Pattern.compile("[a-zA-Z0-9!#$&'*-.~^_`|%]*"); + + private static final Pattern VALUE_ENCODED_PATTERN = Pattern.compile("[a-zA-Z0-9!#$&'*-.~^_`|%()<>@,;:\"/\\\\\\[\\]?={}]*"); /* - * Verifies that an encoded string only contains header safe characters + * Verifies that an encoded string only contains key header safe characters */ - private static boolean isEncodedSafeChars(final String str) { - return ENCODED_PATTERN.matcher(str).matches(); + private static boolean isEncodedSafeKeyChars(final String str) { + return KEY_ENCODED_PATTERN.matcher(str).matches(); + } + + /* + * Verifies that an encoded string only contains value header safe characters + */ + private static boolean isEncodedSafeValueChars(final String str) { + return VALUE_ENCODED_PATTERN.matcher(str).matches(); } @Test - public void encodedPattern_Test() { - assertTrue(isEncodedSafeChars("")); - assertTrue(isEncodedSafeChars("abc123")); - assertTrue(isEncodedSafeChars("!#$&'*-.~^_`|,=%")); - - assertFalse(isEncodedSafeChars(" ")); - assertFalse(isEncodedSafeChars("{")); - assertFalse(isEncodedSafeChars("}")); - assertFalse(isEncodedSafeChars("[")); - assertFalse(isEncodedSafeChars("]")); - assertFalse(isEncodedSafeChars("<")); - assertFalse(isEncodedSafeChars(">")); - assertFalse(isEncodedSafeChars("@")); - assertFalse(isEncodedSafeChars(";")); - assertFalse(isEncodedSafeChars(":")); - assertFalse(isEncodedSafeChars("\\")); - assertFalse(isEncodedSafeChars("\"")); - assertFalse(isEncodedSafeChars("/")); - assertFalse(isEncodedSafeChars("?")); - assertFalse(isEncodedSafeChars("+")); - - assertFalse(isEncodedSafeChars("\u221E")); - assertFalse(isEncodedSafeChars("\u03C0")); - assertFalse(isEncodedSafeChars("\u03CA")); - assertFalse(isEncodedSafeChars("\u03D5")); - assertFalse(isEncodedSafeChars("\u03E0")); + public void encodedKeyPattern_Test() { + assertTrue(isEncodedSafeKeyChars("")); + assertTrue(isEncodedSafeKeyChars("abc123")); + assertTrue(isEncodedSafeKeyChars("!#$&'*-.~^_`|%")); + + assertFalse(isEncodedSafeKeyChars(" ")); + assertFalse(isEncodedSafeKeyChars("{")); + assertFalse(isEncodedSafeKeyChars("}")); + assertFalse(isEncodedSafeKeyChars("[")); + assertFalse(isEncodedSafeKeyChars("]")); + assertFalse(isEncodedSafeKeyChars("<")); + assertFalse(isEncodedSafeKeyChars(">")); + assertFalse(isEncodedSafeKeyChars("@")); + assertFalse(isEncodedSafeKeyChars(";")); + assertFalse(isEncodedSafeKeyChars(":")); + assertFalse(isEncodedSafeKeyChars("\\")); + assertFalse(isEncodedSafeKeyChars("\"")); + assertFalse(isEncodedSafeKeyChars("/")); + assertFalse(isEncodedSafeKeyChars("?")); + + assertFalse(isEncodedSafeKeyChars("\u221E")); + assertFalse(isEncodedSafeKeyChars("\u03C0")); + assertFalse(isEncodedSafeKeyChars("\u03CA")); + assertFalse(isEncodedSafeKeyChars("\u03D5")); + assertFalse(isEncodedSafeKeyChars("\u03E0")); + } + @Test + public void encodedValuePattern_Test() { + assertTrue(isEncodedSafeValueChars("")); + assertTrue(isEncodedSafeValueChars("abc123")); + assertTrue(isEncodedSafeValueChars("!#$&'*-.~^_`|,=%")); + assertTrue(isEncodedSafeValueChars("{")); + assertTrue(isEncodedSafeValueChars("}")); + assertTrue(isEncodedSafeValueChars("<")); + assertTrue(isEncodedSafeValueChars(">")); + assertTrue(isEncodedSafeValueChars("@")); + assertTrue(isEncodedSafeValueChars(";")); + assertTrue(isEncodedSafeValueChars(":")); + assertTrue(isEncodedSafeValueChars("\"")); + assertTrue(isEncodedSafeValueChars("/")); + assertTrue(isEncodedSafeValueChars("?")); + assertTrue(isEncodedSafeValueChars("[")); + assertTrue(isEncodedSafeValueChars("]")); + assertTrue(isEncodedSafeValueChars("\\")); + + assertFalse(isEncodedSafeValueChars(" ")); + + assertFalse(isEncodedSafeValueChars("\u221E")); + assertFalse(isEncodedSafeValueChars("\u03C0")); + assertFalse(isEncodedSafeValueChars("\u03CA")); + assertFalse(isEncodedSafeValueChars("\u03D5")); + assertFalse(isEncodedSafeValueChars("\u03E0")); } @Test public void encodeDecode_NullString_Test() { - assertThat(toEncodedString(null), is(nullValue())); + assertThat(toEncodedKeyString(null), is(nullValue())); + assertThat(toEncodedValueString(null), is(nullValue())); assertThat(toDecodedString(null), is(nullValue())); } @Test public void encodeDecode_WithSpaces_Test() { - final String encoded = toEncodedString(STRING_WITH_SPACES); - assertTrue(isEncodedSafeChars(encoded)); - assertThat(toDecodedString(encoded), is(STRING_WITH_SPACES)); + final String encodedKey = toEncodedKeyString(STRING_WITH_SPACES); + assertTrue(isEncodedSafeKeyChars(encodedKey)); + assertThat(toDecodedString(encodedKey), is(STRING_WITH_SPACES)); + + final String encodedValue = toEncodedValueString(STRING_WITH_SPACES); + assertTrue(isEncodedSafeValueChars(encodedValue)); + assertThat(toDecodedString(encodedValue), is(STRING_WITH_SPACES)); } @Test public void encodeDecode_WithSymbols_Test() { - final String encoded = toEncodedString(STRING_WITH_SYMBOLS); - assertTrue(isEncodedSafeChars(encoded)); - assertThat(toDecodedString(encoded), is(STRING_WITH_SYMBOLS)); + final String encodedKey = toEncodedKeyString(STRING_WITH_SYMBOLS); + assertTrue(isEncodedSafeKeyChars(encodedKey)); + assertThat(toDecodedString(encodedKey), is(STRING_WITH_SYMBOLS)); + + final String encodedValue = toEncodedValueString(STRING_WITH_SYMBOLS); + assertTrue(isEncodedSafeValueChars(encodedValue)); + assertThat(toDecodedString(encodedValue), is(STRING_WITH_SYMBOLS)); } @Test public void encodeDecode_WithUnicodeSymbols_Test() { - final String encoded = toEncodedString(STRING_WITH_SYMBOLS_UNICODE); - assertTrue(isEncodedSafeChars(encoded)); - assertThat(toDecodedString(encoded), is(STRING_WITH_SYMBOLS_UNICODE)); + final String encodedKey = toEncodedKeyString(STRING_WITH_SYMBOLS_UNICODE); + assertTrue(isEncodedSafeKeyChars(encodedKey)); + assertThat(toDecodedString(encodedKey), is(STRING_WITH_SYMBOLS_UNICODE)); + + final String encodedValue = toEncodedValueString(STRING_WITH_SYMBOLS_UNICODE); + assertTrue(isEncodedSafeValueChars(encodedValue)); + assertThat(toDecodedString(encodedValue), is(STRING_WITH_SYMBOLS_UNICODE)); } @Test public void encodeDecode_SpaceAndPlus_Test() { final String plusSpace = " +"; - final String encoded = toEncodedString(plusSpace); - assertTrue(isEncodedSafeChars(encoded)); - assertThat(toDecodedString(encoded), is(plusSpace)); + + final String encodedKey = toEncodedKeyString(plusSpace); + assertTrue(isEncodedSafeKeyChars(encodedKey)); + assertThat(toDecodedString(encodedKey), is(plusSpace)); + + final String encodedValue = toEncodedValueString(plusSpace); + assertTrue(isEncodedSafeValueChars(encodedValue)); + assertThat(toDecodedString(encodedValue), is(plusSpace)); } @Test public void encodeDecode_Range_Test() { final String range = "Range=bytes=0-10,110-120"; - final String encoded = toEncodedString(range); - assertTrue(isEncodedSafeChars(encoded)); - assertThat(encoded, is(range)); + final String encodedValue = toEncodedValueString(range); + assertTrue(isEncodedSafeValueChars(encodedValue)); + assertThat(encodedValue, is(range)); assertThat(toDecodedString(range), is(range)); } @Test public void decodedDecode_LowerCase_Test() { - final String encodedToLower = toEncodedString(STRING_WITH_SYMBOLS).toLowerCase(); - assertTrue(isEncodedSafeChars(encodedToLower)); - assertThat(toDecodedString(encodedToLower), is(STRING_WITH_SYMBOLS)); + final String encodedToLowerKey = toEncodedKeyString(STRING_WITH_SYMBOLS).toLowerCase(); + assertTrue(isEncodedSafeKeyChars(encodedToLowerKey)); + assertThat(toDecodedString(encodedToLowerKey), is(STRING_WITH_SYMBOLS)); + + final String encodedToLowerValue = toEncodedValueString(STRING_WITH_SYMBOLS).toLowerCase(); + assertTrue(isEncodedSafeValueChars(encodedToLowerValue)); + assertThat(toDecodedString(encodedToLowerValue), is(STRING_WITH_SYMBOLS)); } @Test public void encodeDecode_DoubleEncoding_Test() { - final String encoded1 = toEncodedString(STRING_WITH_SYMBOLS); - final String encoded2 = toEncodedString(encoded1); - assertTrue(isEncodedSafeChars(encoded1)); - assertTrue(isEncodedSafeChars(encoded2)); - - final String decoded1 = toDecodedString(encoded2); - final String decoded2 = toDecodedString(decoded1); - assertThat(decoded1, is(encoded1)); - assertThat(decoded2, is(STRING_WITH_SYMBOLS)); + final String encoded1Key = toEncodedKeyString(STRING_WITH_SYMBOLS); + final String encoded2Key = toEncodedKeyString(encoded1Key); + assertTrue(isEncodedSafeKeyChars(encoded1Key)); + assertTrue(isEncodedSafeKeyChars(encoded2Key)); + + final String decoded1Key = toDecodedString(encoded2Key); + final String decoded2Key = toDecodedString(decoded1Key); + assertThat(decoded1Key, is(encoded1Key)); + assertThat(decoded2Key, is(STRING_WITH_SYMBOLS)); + + final String encoded1Value = toEncodedValueString(STRING_WITH_SYMBOLS); + final String encoded2Value = toEncodedValueString(encoded1Value); + assertTrue(isEncodedSafeValueChars(encoded1Value)); + assertTrue(isEncodedSafeValueChars(encoded2Value)); + + final String decoded1Value = toDecodedString(encoded2Value); + final String decoded2Value = toDecodedString(decoded1Value); + assertThat(decoded1Value, is(encoded1Value)); + assertThat(decoded2Value, is(STRING_WITH_SYMBOLS)); } } From 827d6660efb93345e05883816aeef1d734bc94a7 Mon Sep 17 00:00:00 2001 From: Sharon Shabtai Date: Thu, 18 Apr 2019 14:02:32 -0600 Subject: [PATCH 34/38] Fix 'Method names should not contain underscores' issue --- .../metadata/MACMetadataRestore_Test.java | 2 +- .../metadata/PosixMetadataRestore_Test.java | 2 +- .../metadata/PosixMetadataStore_Test.java | 8 +++--- .../metadata/WindowsMetadataRestore_Test.java | 6 ++-- .../metadata/WindowsMetadataStore_Test.java | 14 +++++----- .../ds3client/integration/Util.java | 2 +- .../ObjectStreamBuilder_Test.java | 4 +-- .../AdvancedBucketManagement_Test.java | 16 +++++------ .../integration/CustomParser_Test.java | 4 +-- .../integration/GroupManagement_Test.java | 8 +++--- .../integration/Regression_Test.java | 2 +- .../ds3client/integration/Smoke_Test.java | 4 +-- .../integration/UsersAndGroups_Test.java | 8 +++--- .../ds3client/Ds3Client_Test.java | 2 +- .../interfaces/RequestHeadersImpl_Test.java | 28 +++++++++---------- .../utils/ResponseParserUtils_Test.java | 6 ++-- .../spectrads3/GetPutJobToReplicate_Test.java | 2 +- .../helpers/JobPartTracker_Test.java | 2 +- .../models/ModelFunctionality_Test.java | 4 +-- .../ds3client/models/ModelParsing_Test.java | 8 +++--- .../ds3client/models/ServiceList_Test.java | 2 +- .../FailedRequestException_Test.java | 14 +++++----- .../utils/SafeString_Manipulation_Test.java | 20 ++++++------- .../MetadataStringManipulation_Test.java | 20 ++++++------- 24 files changed, 94 insertions(+), 94 deletions(-) diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MACMetadataRestore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MACMetadataRestore_Test.java index 9b0645bd6..29fb28c0f 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MACMetadataRestore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MACMetadataRestore_Test.java @@ -41,7 +41,7 @@ public class MACMetadataRestore_Test { private final File file = new File(getClass().getClassLoader().getResource("LoremIpsum.txt").getFile()); @Test - public void restoreFileTimes_Test() throws Exception { + public void restoreFileTimesTest() throws Exception { if (Platform.isMac()) { final SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd-MM-yy:HH:mm"); diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore_Test.java index 07ab02d07..611095302 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore_Test.java @@ -53,7 +53,7 @@ public void checkPreconditions() { private final File file = new File(getClass().getClassLoader().getResource("LoremIpsum.txt").getFile()); @Test - public void restoreFileTimes_Test() throws Exception{ + public void restoreFileTimesTest() throws Exception{ final BasicHeader basicHeader[] = new BasicHeader[3]; final BasicFileAttributes attr = Files.readAttributes(file.toPath(), BasicFileAttributes.class); basicHeader[0] = new BasicHeader(MetadataKeyConstants.METADATA_PREFIX + MetadataKeyConstants.KEY_CREATION_TIME, String.valueOf(attr.creationTime().toMillis())); diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataStore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataStore_Test.java index dd2a25af9..edd05ff67 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataStore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataStore_Test.java @@ -38,7 +38,7 @@ public class PosixMetadataStore_Test { private final PosixMetadataStore posixMetadataStore = new PosixMetadataStore(mMetadataMap); @Test - public void saveCreationTimeMetaData_Test() throws IOException { + public void saveCreationTimeMetaDataTest() throws IOException { final BasicFileAttributes attr = Files.readAttributes(file.toPath(), BasicFileAttributes.class); final long creationTime = attr.creationTime().toMillis(); posixMetadataStore.saveCreationTimeMetaData(attr); @@ -46,7 +46,7 @@ public void saveCreationTimeMetaData_Test() throws IOException { } @Test - public void saveAccessTimeMetaData_Test() throws IOException { + public void saveAccessTimeMetaDataTest() throws IOException { final BasicFileAttributes attr = Files.readAttributes(file.toPath(), BasicFileAttributes.class); final long lastAccessTime = attr.lastAccessTime().toMillis(); posixMetadataStore.saveAccessTimeMetaData(attr); @@ -55,7 +55,7 @@ public void saveAccessTimeMetaData_Test() throws IOException { @Test - public void saveLastModifiedTime_Test() throws IOException { + public void saveLastModifiedTimeTest() throws IOException { final BasicFileAttributes attr = Files.readAttributes(file.toPath(), BasicFileAttributes.class); final long lastModifiedTime = attr.lastModifiedTime().toMillis(); posixMetadataStore.saveLastModifiedTime(attr); @@ -63,7 +63,7 @@ public void saveLastModifiedTime_Test() throws IOException { } @Test - public void saveOSMetaData_Test() throws IOException { + public void saveOSMetaDataTest() throws IOException { final String localOSName = MetaDataUtil.getOS(); posixMetadataStore.saveOSMetaData(localOSName); Assert.assertEquals(mMetadataMap.build().get(MetadataKeyConstants.METADATA_PREFIX + MetadataKeyConstants.KEY_OS), String.valueOf(localOSName)); diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore_Test.java index 3da51176b..5759b9612 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore_Test.java @@ -56,7 +56,7 @@ public void checkPreconditions() { } @Test - public void restoreFileTimes_Test() throws Exception { + public void restoreFileTimesTest() throws Exception { final BasicHeader basicHeader[] = new BasicHeader[3]; final Path filePath = ResourceUtils.loadFileResource(FILE_NAME); @@ -75,7 +75,7 @@ public void restoreFileTimes_Test() throws Exception { @Test - public void restoreUserAndOwner_Test() throws Exception { + public void restoreUserAndOwnerTest() throws Exception { final ImmutableMap.Builder metadataMap = new ImmutableMap.Builder<>(); final WindowsMetadataStore windowsMetadataStore = new WindowsMetadataStore(metadataMap); final Class aClass = WindowsMetadataStore.class; @@ -117,7 +117,7 @@ public void restoreUserAndOwner_Test() throws Exception { @Test - public void restorePermissions_Test() throws NoSuchMethodException, IOException, URISyntaxException, InvocationTargetException, IllegalAccessException, InterruptedException { + public void restorePermissionsTest() throws NoSuchMethodException, IOException, URISyntaxException, InvocationTargetException, IllegalAccessException, InterruptedException { final ImmutableMap.Builder mMetadataMap = new ImmutableMap.Builder<>(); final WindowsMetadataStore windowsMetadataStore = new WindowsMetadataStore(mMetadataMap); final Class aClass = WindowsMetadataStore.class; diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore_Test.java index e78f90df3..935ea155e 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore_Test.java @@ -38,7 +38,7 @@ public class WindowsMetadataStore_Test { private final WindowsMetadataStore windowsMetadataStore = new WindowsMetadataStore(mMetadataMap); @Test - public void saveCreationTimeMetaData_Test() throws IOException { + public void saveCreationTimeMetaDataTest() throws IOException { final BasicFileAttributes attr = Files.readAttributes(file.toPath(), BasicFileAttributes.class); final long creationTime = attr.creationTime().toMillis(); windowsMetadataStore.saveCreationTimeMetaData(attr); @@ -46,7 +46,7 @@ public void saveCreationTimeMetaData_Test() throws IOException { } @Test - public void saveAccessTimeMetaData_Test() throws IOException { + public void saveAccessTimeMetaDataTest() throws IOException { final BasicFileAttributes attr = Files.readAttributes(file.toPath(), BasicFileAttributes.class); final long lastAccessTime = attr.lastAccessTime().toMillis(); windowsMetadataStore.saveAccessTimeMetaData(attr); @@ -55,7 +55,7 @@ public void saveAccessTimeMetaData_Test() throws IOException { @Test - public void saveLastModifiedTime_Test() throws IOException { + public void saveLastModifiedTimeTest() throws IOException { final BasicFileAttributes attr = Files.readAttributes(file.toPath(), BasicFileAttributes.class); final long lastModifiedTime = attr.lastModifiedTime().toMillis(); windowsMetadataStore.saveLastModifiedTime(attr); @@ -63,14 +63,14 @@ public void saveLastModifiedTime_Test() throws IOException { } @Test - public void saveOSMetaData_Test() throws IOException { + public void saveOSMetaDataTest() throws IOException { final String localOSName = MetaDataUtil.getOS(); windowsMetadataStore.saveOSMetaData(localOSName); Assert.assertEquals(mMetadataMap.build().get(METADATA_PREFIX + MetadataKeyConstants.KEY_OS), String.valueOf(localOSName)); } @Test - public void saveWinDescriptor_Test() throws Exception { + public void saveWinDescriptorTest() throws Exception { if (MetaDataUtil.getOS().contains("Windows")) { final Class aClass = WindowsMetadataStore.class; final Method method = aClass.getDeclaredMethod("saveWindowsDescriptors", new Class[]{Path.class}); @@ -83,7 +83,7 @@ public void saveWinDescriptor_Test() throws Exception { } @Test - public void saveFlagMetadata_Test() throws Exception { + public void saveFlagMetadataTest() throws Exception { if (MetaDataUtil.getOS().contains("Windows")) { final Class aClass = WindowsMetadataStore.class; final Method method = aClass.getDeclaredMethod("saveFlagMetaData", new Class[]{Path.class}); @@ -94,7 +94,7 @@ public void saveFlagMetadata_Test() throws Exception { } @Test - public void saveWindowsfilePermissions_Test() throws Exception { + public void saveWindowsFilePermissionsTest() throws Exception { if (MetaDataUtil.getOS().contains("Windows")) { final Class aClass = WindowsMetadataStore.class; final Method method = aClass.getDeclaredMethod("saveWindowsfilePermissions", new Class[]{Path.class}); diff --git a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java index 069eafbde..60874d63e 100644 --- a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java +++ b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java @@ -59,7 +59,7 @@ public static Ds3Client insecureFromEnv() { return builder.build(); } - public static void assumeVersion1_2(final Ds3Client client) throws IOException { + public static void assumeVersionOneDotTwo(final Ds3Client client) throws IOException { final int majorVersion = Integer.parseInt(client.getSystemInformationSpectraS3( new GetSystemInformationSpectraS3Request()).getSystemInformationResult().getBuildInformation().getVersion().split("\\.")[0]); assumeThat(majorVersion, is(1)); diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectStreamBuilder_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectStreamBuilder_Test.java index 90949bbac..ef04647e4 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectStreamBuilder_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectStreamBuilder_Test.java @@ -82,7 +82,7 @@ public void afterRunningTestMethod() throws IOException { } @Test - public void objectInputStreamBuilder_Test() throws IOException, URISyntaxException { + public void objectInputStreamBuilderTest() throws IOException, URISyntaxException { //Verify that the object was transferred correctly to the BP in beforeRunningTestMethod final GetObjectDetailsSpectraS3Request objectDetailsRequest = new GetObjectDetailsSpectraS3Request(OBJ_NAME, BUCKET_NAME); @@ -93,7 +93,7 @@ public void objectInputStreamBuilder_Test() throws IOException, URISyntaxExcepti } @Test - public void objectOutputStreamBuilder_Test() throws IOException, URISyntaxException { + public void objectOutputStreamBuilderTest() throws IOException, URISyntaxException { //Retrieve the object on the BP using ObjectOutputStreamBuilder and verify contents final Ds3Object obj = new Ds3Object(OBJ_NAME, OBJ_BYTES.length); final Ds3ClientHelpers.Job job = HELPERS.startReadJob(BUCKET_NAME, Lists.newArrayList(obj)); diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/AdvancedBucketManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/AdvancedBucketManagement_Test.java index 13f4392f1..c1fc7a0a2 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/AdvancedBucketManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/AdvancedBucketManagement_Test.java @@ -60,7 +60,7 @@ public static void teardown() throws IOException, SignatureException { } @Test - public void createDeleteDataPolicy_Test() throws IOException, SignatureException { + public void createDeleteDataPolicyTest() throws IOException, SignatureException { final String dataPolicyName = "ds3_java_sdk_create_delete_data_policy"; try { @@ -86,7 +86,7 @@ public void createDeleteDataPolicy_Test() throws IOException, SignatureException } @Test - public void createDeleteEmptyStorageDomain_Test() throws IOException, SignatureException { + public void createDeleteEmptyStorageDomainTest() throws IOException, SignatureException { final String storageDomainName = "create_delete_empty_storage_domain"; try { @@ -104,7 +104,7 @@ public void createDeleteEmptyStorageDomain_Test() throws IOException, SignatureE } @Test - public void createDeletePoolPartition_Test() throws IOException, SignatureException { + public void createDeletePoolPartitionTest() throws IOException, SignatureException { final String poolPartitionName = "create_delete_pool_partition"; try { @@ -130,7 +130,7 @@ public void createDeletePoolPartition_Test() throws IOException, SignatureExcept } @Test - public void createPoolStorageDomainMember_Test() throws IOException, SignatureException { + public void createPoolStorageDomainMemberTest() throws IOException, SignatureException { final String storageDomainName = "create_pool_storage_domain_member_sd"; final String poolPartitionName = "create_pool_storage_domain_member_pp"; UUID storageDomainMemberId = null; @@ -172,7 +172,7 @@ public void createPoolStorageDomainMember_Test() throws IOException, SignatureEx } @Test - public void createBucketSpectraS3_Test() throws IOException, SignatureException { + public void createBucketSpectraS3Test() throws IOException, SignatureException { final String bucketName = "create_bucket_spectra_s3"; try { final PutBucketSpectraS3Response response = client @@ -186,7 +186,7 @@ public void createBucketSpectraS3_Test() throws IOException, SignatureException } @Test - public void createBucketSpectraS3_WithDataPolicy_Test() throws IOException, SignatureException { + public void createBucketSpectraS3WithDataPolicyTest() throws IOException, SignatureException { final String bucketName = "create_bucket_spectra_s3"; final String dataPolicyName = "create_bucket_spectra_s3_data_policy"; final String storageDomainName = "create_bucket_spectra_s3_storage_domain"; @@ -244,7 +244,7 @@ public void createBucketSpectraS3_WithDataPolicy_Test() throws IOException, Sign } @Test - public void putDuplicateObjects_VersioningKeepLatest_Test() throws IOException, + public void putDuplicateObjectsVersioningKeepLatestTest() throws IOException, SignatureException, URISyntaxException { final String bucketName = "duplicate_object_versioning_keep_latest"; final String dataPolicyName = "duplicate_object_versioning_keep_latest_dp"; @@ -316,7 +316,7 @@ public void putDuplicateObjects_VersioningKeepLatest_Test() throws IOException, } @Test - public void putDuplicateObjects_VersioningNone_Test() throws IOException, + public void putDuplicateObjectsVersioningNoneTest() throws IOException, SignatureException, URISyntaxException { final String bucketName = "duplicate_object_versioning_none"; final String dataPolicyName = "duplicate_object_versioning_none_dp"; diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/CustomParser_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/CustomParser_Test.java index 8323abcf5..0cacf8739 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/CustomParser_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/CustomParser_Test.java @@ -95,7 +95,7 @@ public void afterRunningTestMethod() throws IOException { } @Test - public void getObjectCustomParser_Test() throws IOException, URISyntaxException { + public void getObjectCustomParserTest() throws IOException, URISyntaxException { final Ds3Object object = new Ds3Object(OBJ_NAME); final GetBulkJobSpectraS3Response getBulkJobSpectraS3Response = client .getBulkJobSpectraS3(new GetBulkJobSpectraS3Request(BUCKET_NAME, Lists.newArrayList(object))); @@ -137,7 +137,7 @@ public GetObjectResponse apply(final GetObjectCustomParserParameters getObjectPa @SuppressWarnings("deprecation") @Test (expected = FailedRequestException.class) - public void getObjectCustomParserNoObject_Test() throws IOException{ + public void getObjectCustomParserNoObjectTest() throws IOException{ final String objectName = "doesNotExistObject"; final GetObjectRequest request = new GetObjectRequest( diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GroupManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GroupManagement_Test.java index b955d9c4d..100928fe5 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GroupManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GroupManagement_Test.java @@ -58,7 +58,7 @@ public static void teardown() throws IOException, SignatureException { } @Test - public void createDeleteGroup_Test() throws IOException, SignatureException { + public void createDeleteGroupTest() throws IOException, SignatureException { final String groupName = "create_delete_group_sdk_test"; try { @@ -77,7 +77,7 @@ public void createDeleteGroup_Test() throws IOException, SignatureException { } @Test - public void createDataPolicyForGroup_Test() throws IOException, SignatureException { + public void createDataPolicyForGroupTest() throws IOException, SignatureException { final String groupName = "create_data_policy_for_group_g"; final String dataPolicyName = "create_data_policy_for_group_dp"; UUID aclId = null; @@ -118,7 +118,7 @@ public void createDataPolicyForGroup_Test() throws IOException, SignatureExcepti } @Test - public void createGroupGroupMember_Test() throws IOException, SignatureException { + public void createGroupGroupMemberTest() throws IOException, SignatureException { final String parentGroupName = "create_group_group_member_parent"; final String childGroupName = "create_group_group_member_child"; @@ -159,7 +159,7 @@ public void createGroupGroupMember_Test() throws IOException, SignatureException } @Test - public void createBucketAclForGroup_Test() throws IOException, SignatureException { + public void createBucketAclForGroupTest() throws IOException, SignatureException { final String bucketName = "create_bucket_acl_for_group_b"; final String groupName = "create_bucket_acl_for_group_g"; diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Regression_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Regression_Test.java index 43b8e1442..2cbe5ccc4 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Regression_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Regression_Test.java @@ -243,7 +243,7 @@ public void testPrefixForNestedDirectories() throws IOException { @Test public void emptyObjectTest() throws IOException { - Util.assumeVersion1_2(client); + Util.assumeVersionOneDotTwo(client); final String bucketName = "emptyObject"; final List objects = Collections.singletonList(new Ds3Object("obj1.txt", 0)); diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java index 2ed51564d..296d16658 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java @@ -939,7 +939,7 @@ public void testRecoverReadJobDoesNotExist() throws IOException, JobRecoveryExce @Test public void putDirectory() throws IOException { - assumeVersion1_2(client); + assumeVersionOneDotTwo(client); final String bucketName = "putDir"; @@ -971,7 +971,7 @@ public SeekableByteChannel buildChannel(final String key) throws IOException { @Test public void putDirectoryWithOtherObjects() throws IOException { - assumeVersion1_2(client); + assumeVersionOneDotTwo(client); final String bucketName = "mixedPutDir"; diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java index 7496b547c..7d9cbc4d3 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java @@ -176,7 +176,7 @@ public void getUsersWithCombination() throws IOException, SignatureException { } @Test - public void ModifyUserDefaultDataPolicy() throws IOException, SignatureException { + public void modifyUserDefaultDataPolicy() throws IOException, SignatureException { final GetUserSpectraS3Response getSpectraResponse = client .getUserSpectraS3(new GetUserSpectraS3Request(spectraUUID)); @@ -188,7 +188,7 @@ public void ModifyUserDefaultDataPolicy() throws IOException, SignatureException } @Test - public void ModifyUserName() throws IOException, SignatureException { + public void modifyUserName() throws IOException, SignatureException { final GetUserSpectraS3Response getSpectraResponse = client .getUserSpectraS3(new GetUserSpectraS3Request(spectraUUID)); @@ -203,7 +203,7 @@ public void ModifyUserName() throws IOException, SignatureException { @Test - public void ModifyUserNameAndDataPolicy() throws IOException, SignatureException { + public void modifyUserNameAndDataPolicy() throws IOException, SignatureException { final GetUserSpectraS3Response getSpectraResponse = client .getUserSpectraS3(new GetUserSpectraS3Request(spectraUUID)); @@ -217,7 +217,7 @@ public void ModifyUserNameAndDataPolicy() throws IOException, SignatureException } @Test - public void RegenerateUserSecretKey() throws IOException, SignatureException { + public void megenerateUserSecretKey() throws IOException, SignatureException { try { client.regenerateUserSecretKeySpectraS3( new RegenerateUserSecretKeySpectraS3Request(UUID.randomUUID())); diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java index 1b1c9379d..ba0bb5608 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java @@ -933,7 +933,7 @@ public void testGettingGitCommitHash() { } @Test - public void VerifySystemHealthSpectraS3() throws IOException { + public void verifySystemHealthSpectraS3() throws IOException { final String responsePayload = "0"; final VerifySystemHealthSpectraS3Response response = MockNetwork diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl_Test.java index 729ff1129..ed60eeb2a 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl_Test.java @@ -36,25 +36,25 @@ private static RequestHeaders getTestRequestHeaders() { } @Test (expected = NullPointerException.class) - public void put_Null_Test() { + public void putNullTest() { final RequestHeaders rh = getTestRequestHeaders(); rh.put(null, null); } @Test (expected = NullPointerException.class) - public void put_NullValue_Test() { + public void putNullValueTest() { final RequestHeaders rh = getTestRequestHeaders(); rh.put("Key", null); } @Test (expected = NullPointerException.class) - public void put_NullKey_Test() { + public void putNullKeyTest() { final RequestHeaders rh = getTestRequestHeaders(); rh.put(null, "Value"); } @Test - public void put_PercentEncoding_Test() { + public void putPercentEncodingTest() { final RequestHeaders rh = getTestRequestHeaders(); rh.put("Key With Space", "Val With Space"); final Multimap result = rh.getMultimap(); @@ -62,13 +62,13 @@ public void put_PercentEncoding_Test() { } @Test (expected = NullPointerException.class) - public void get_Null_Test() { + public void getNullTest() { final RequestHeaders rh = getTestRequestHeaders(); rh.get(null); } @Test - public void get_Test() { + public void getTest() { final RequestHeaders rh = getTestRequestHeaders(); assertThat(rh.get("").size(), is(0)); assertThat(rh.get("Key One").size(), is(2)); @@ -77,17 +77,17 @@ public void get_Test() { } @Test - public void size_Test() { + public void sizeTest() { assertThat(getTestRequestHeaders().size(), is(3)); } @Test (expected = NullPointerException.class) - public void containsKey_NullString_Test() { + public void containsKeyNullStringTest() { assertFalse(getTestRequestHeaders().containsKey(null)); } @Test - public void containsKey_Test() { + public void containsKeyTest() { final RequestHeaders rh = getTestRequestHeaders(); System.out.println(rh.keySet()); @@ -100,13 +100,13 @@ public void containsKey_Test() { } @Test (expected = NullPointerException.class) - public void removeAll_Null_Test() { + public void removeAllNullTest() { final RequestHeaders rh = getTestRequestHeaders(); assertThat(rh.removeAll(null).size(), is(0)); } @Test - public void removeAll_Test() { + public void removeAllTest() { final RequestHeaders rh = getTestRequestHeaders(); assertThat(rh.removeAll("").size(), is(0)); @@ -123,7 +123,7 @@ public void removeAll_Test() { } @Test - public void entries_Test() { + public void entriesTest() { final Collection> result = getTestRequestHeaders().entries(); assertThat(result.size(), is(3)); @@ -142,7 +142,7 @@ public void entries_Test() { } @Test - public void getMultimap_Test() { + public void getMultimapTest() { final Multimap result = getTestRequestHeaders().getMultimap(); assertThat(result.size(), is(3)); @@ -152,7 +152,7 @@ public void getMultimap_Test() { } @Test - public void keySet_Test() { + public void keySetTest() { final Set result = getTestRequestHeaders().keySet(); assertThat(result.size(), is(2)); assertThat(result, hasItem("Key One")); diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java index eafa594f0..e36ac82c2 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java @@ -26,7 +26,7 @@ public class ResponseParserUtils_Test { @Test - public void getRequestId_Test() { + public void getRequestIdTest() { final String requestId = "123"; final ImmutableMap headers = ImmutableMap.of( "x-amz-request-id", requestId, @@ -37,7 +37,7 @@ public void getRequestId_Test() { } @Test - public void getRequestId_WithoutRequestId_Test() { + public void getRequestIdWithoutRequestIdTest() { final ImmutableMap headers = ImmutableMap.of( "Content-Type", "Text/xml"); @@ -46,7 +46,7 @@ public void getRequestId_WithoutRequestId_Test() { } @Test - public void getRequestId_EmptyHeaders_Test() { + public void getRequestIdEmptyHeadersTest() { final String result = ResponseParserUtils.getRequestId(new MockedHeaders(ImmutableMap.of())); assertThat(result, is(nullValue())); } diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/spectrads3/GetPutJobToReplicate_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/spectrads3/GetPutJobToReplicate_Test.java index 8f44b380e..bf2801851 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/spectrads3/GetPutJobToReplicate_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/spectrads3/GetPutJobToReplicate_Test.java @@ -28,7 +28,7 @@ public class GetPutJobToReplicate_Test { @Test - public void getPutJobToReplicate_ProcessResponse_Test() throws IOException { + public void getPutJobToReplicateProcessResponseTest() throws IOException { final String responsePayload = "Some response payload"; final ImmutableMap emptyMap = ImmutableMap.of(); final WebResponse webResponse = new MockedWebResponse(responsePayload, 200, emptyMap); diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTracker_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTracker_Test.java index 76a2b5cca..804aadffa 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTracker_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTracker_Test.java @@ -54,7 +54,7 @@ public void trackerCallsTrackers() { } @Test - public void TrackerEventsForward() + public void trackerEventsForward() { final MockObjectPartTracker fooTracker = new MockObjectPartTracker("foo", Arrays.asList(false, true)); final MockObjectPartTracker barTracker = new MockObjectPartTracker("bar", Arrays.asList(true, false)); diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelFunctionality_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelFunctionality_Test.java index 993c7021f..3b2d5d056 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelFunctionality_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelFunctionality_Test.java @@ -23,7 +23,7 @@ public class ModelFunctionality_Test { @Test - public void bulkObjectEqualsEmptyObjects_Test() { + public void bulkObjectEqualsEmptyObjectsTest() { final BulkObject obj1 = new BulkObject(); final BulkObject obj2 = new BulkObject(); @@ -31,7 +31,7 @@ public void bulkObjectEqualsEmptyObjects_Test() { } @Test - public void bulkObjectNullableEquals_Test() { + public void bulkObjectNullableEqualsTest() { assertThat(BulkObject.nullableEquals(null, null), is(true)); assertThat(BulkObject.nullableEquals("1", null), is(false)); assertThat(BulkObject.nullableEquals("1", "1"), is(true)); diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelParsing_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelParsing_Test.java index 6448b9078..82392a8d4 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelParsing_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelParsing_Test.java @@ -30,7 +30,7 @@ public class ModelParsing_Test { @Test - public void listBucketResult_Parse_Test() throws IOException { + public void listBucketResultParseTest() throws IOException { final String input = "testmovies/movie1.mov" + "jason04531ac9-6639-4bee-8c09-9c8f0fbdbdcb" + "0movies/movie2.mov" + @@ -49,7 +49,7 @@ public void listBucketResult_Parse_Test() throws IOException { } @Test - public void listBucketResult_CommonPrefixes_Test() throws IOException { + public void listBucketResultCommonPrefixesTest() throws IOException { final String input = "" + "movies/" + "scores/" + @@ -68,7 +68,7 @@ public void listBucketResult_CommonPrefixes_Test() throws IOException { } @Test - public void completeMultipartUpload_Parse_Test() throws IOException { + public void completeMultipartUploadParseTest() throws IOException { final String input = "" + "1a54357aff0632cce46d942af68356b38" + "20c78aef83f66abc1fa1e8477f296d394" + @@ -86,7 +86,7 @@ public void completeMultipartUpload_Parse_Test() throws IOException { } @Test - public void completeMultipartUpload_ToString_Test() { + public void completeMultipartUploadToStringTest() { final String expected = "" + "1a54357aff0632cce46d942af68356b38" + "20c78aef83f66abc1fa1e8477f296d394" + diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ServiceList_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ServiceList_Test.java index 5a7f4e58b..a177235af 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ServiceList_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ServiceList_Test.java @@ -28,7 +28,7 @@ public class ServiceList_Test { @Test - public void service_list_serialization() throws IOException { + public void serviceListSerialization() throws IOException { final UUID id = UUID.randomUUID(); final String stringResponse = "\n" + "" + id.toString() + "ryantestBucket22013-12-11T23:20:09bulkTest2013-12-11T23:20:09bulkTest12013-12-11T23:20:09bulkTest22013-12-11T23:20:09bulkTest32013-12-11T23:20:09bulkTest42013-12-11T23:20:09bulkTest52013-12-11T23:20:09bulkTest62013-12-11T23:20:09testBucket32013-12-11T23:20:09testBucket12013-12-11T23:20:09testbucket2013-12-11T23:20:09"; diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/FailedRequestException_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/FailedRequestException_Test.java index fa25268c3..d06866810 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/FailedRequestException_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/FailedRequestException_Test.java @@ -33,46 +33,46 @@ private static Error createTestError() { } @Test - public void buildRequestIdMessage_Test() { + public void buildRequestIdMessageTest() { final String result = buildRequestIdMessage("123"); assertThat(result, is("for request #123")); } @Test - public void buildRequestIdMessage_EmptyId_Test() { + public void buildRequestIdMessageEmptyIdTest() { final String result = buildRequestIdMessage(""); assertThat(result, is("for unknown request")); } @Test - public void buildRequestIdMessage_NullId_Test() { + public void buildRequestIdMessageNullIdTest() { final String result = buildRequestIdMessage(null); assertThat(result, is("for unknown request")); } @Test - public void buildExceptionMessage_NullErrorAndRequestId_Test() { + public void buildExceptionMessageNullErrorAndRequestIdTest() { final String expected = "Expected a status code of 200, 203 but got 400 for unknown request. Could not parse the response for additional information."; final String result = buildExceptionMessage(null, ImmutableList.of(200, 203), 400, null); assertThat(result, is(expected)); } @Test - public void buildExceptionMessage_NullError_Test() { + public void buildExceptionMessageNullErrorTest() { final String expected = "Expected a status code of 200, 203 but got 400 for request #123. Could not parse the response for additional information."; final String result = buildExceptionMessage(null, ImmutableList.of(200, 203), 400, "123"); assertThat(result, is(expected)); } @Test - public void buildExceptionMessage_NullRequestId_Test() { + public void buildExceptionMessageNullRequestIdTest() { final String expected = "Expected a status code of 200, 203 but got 400 for unknown request. Error message: \"Error message\""; final String result = buildExceptionMessage(createTestError(), ImmutableList.of(200, 203), 400, null); assertThat(result, is(expected)); } @Test - public void buildExceptionMessage_Test() { + public void buildExceptionMessageTest() { final String expected = "Expected a status code of 200, 203 but got 400 for request #123. Error message: \"Error message\""; final String result = buildExceptionMessage(createTestError(), ImmutableList.of(200, 203), 400, "123"); assertThat(result, is(expected)); diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/SafeString_Manipulation_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/SafeString_Manipulation_Test.java index 0fee2caa4..0441372c6 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/SafeString_Manipulation_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/SafeString_Manipulation_Test.java @@ -26,13 +26,13 @@ public class SafeString_Manipulation_Test { @Test - public void safeToString_Int_Test() { + public void safeToStringIntTest() { final int myInt = 5; assertThat(SafeStringManipulation.safeToString(myInt), is("5")); } @Test - public void safeToString_Integer_Test() { + public void safeToStringIntegerTest() { final Integer nullInt = null; assertThat(SafeStringManipulation.safeToString(nullInt), is(nullValue())); @@ -41,13 +41,13 @@ public void safeToString_Integer_Test() { } @Test - public void safeToString_Boolean_Test() { + public void safeToStringBooleanTest() { final boolean myBoolean = true; assertThat(SafeStringManipulation.safeToString(myBoolean), is("true")); } @Test - public void safeToString_Double_Test() { + public void safeToStringDoubleTest() { final double myDouble = 2.1; assertThat(SafeStringManipulation.safeToString(myDouble), is("2.1")); @@ -59,7 +59,7 @@ public void safeToString_Double_Test() { } @Test - public void safeToString_Long_Test() { + public void safeToStringLongTest() { final long myLong = 3; assertThat(SafeStringManipulation.safeToString(myLong), is("3")); @@ -71,7 +71,7 @@ public void safeToString_Long_Test() { } @Test - public void safeToString_String_Test() { + public void safeToStringStringTest() { final String nullString = null; assertThat(SafeStringManipulation.safeToString(nullString), is(nullValue())); @@ -80,7 +80,7 @@ public void safeToString_String_Test() { } @Test - public void safeToString_Date_Test() { + public void safeToStringDateTest() { final Date nullDate = null; assertThat(SafeStringManipulation.safeToString(nullDate), is(nullValue())); @@ -93,7 +93,7 @@ private enum TestEnum { } @Test - public void safeToString_Enum_Test() { + public void safeToStringEnumTest() { final TestEnum nullEnum = null; assertThat(SafeStringManipulation.safeToString(nullEnum), is(nullValue())); @@ -102,7 +102,7 @@ public void safeToString_Enum_Test() { } @Test - public void safeUrlEscape_Test() { + public void safeUrlEscapeTest() { assertThat(SafeStringManipulation.safeUrlEscape(null), is(nullValue())); assertThat(SafeStringManipulation.safeUrlEscape(""), is("")); assertThat(SafeStringManipulation.safeUrlEscape("one2three+four"), is("one2three%2Bfour")); @@ -110,7 +110,7 @@ public void safeUrlEscape_Test() { } @Test - public void safeQueryParamEscape_Test() { + public void safeQueryParamEscapeTest() { assertThat(SafeStringManipulation.safeQueryParamEscape(null), is(nullValue())); assertThat(SafeStringManipulation.safeQueryParamEscape(""), is("")); assertThat(SafeStringManipulation.safeQueryParamEscape("one2three+four"), is("one2three%2Bfour")); diff --git a/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java b/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java index 5cace80ea..5c24443c3 100644 --- a/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java +++ b/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java @@ -53,7 +53,7 @@ private static boolean isEncodedSafeValueChars(final String str) { } @Test - public void encodedKeyPattern_Test() { + public void encodedKeyPatternTest() { assertTrue(isEncodedSafeKeyChars("")); assertTrue(isEncodedSafeKeyChars("abc123")); assertTrue(isEncodedSafeKeyChars("!#$&'*-.~^_`|%")); @@ -81,7 +81,7 @@ public void encodedKeyPattern_Test() { } @Test - public void encodedValuePattern_Test() { + public void encodedValuePatternTest() { assertTrue(isEncodedSafeValueChars("")); assertTrue(isEncodedSafeValueChars("abc123")); assertTrue(isEncodedSafeValueChars("!#$&'*-.~^_`|,=%")); @@ -109,14 +109,14 @@ public void encodedValuePattern_Test() { } @Test - public void encodeDecode_NullString_Test() { + public void encodeDecodeNullStringTest() { assertThat(toEncodedKeyString(null), is(nullValue())); assertThat(toEncodedValueString(null), is(nullValue())); assertThat(toDecodedString(null), is(nullValue())); } @Test - public void encodeDecode_WithSpaces_Test() { + public void encodeDecodeWithSpacesTest() { final String encodedKey = toEncodedKeyString(STRING_WITH_SPACES); assertTrue(isEncodedSafeKeyChars(encodedKey)); assertThat(toDecodedString(encodedKey), is(STRING_WITH_SPACES)); @@ -127,7 +127,7 @@ public void encodeDecode_WithSpaces_Test() { } @Test - public void encodeDecode_WithSymbols_Test() { + public void encodeDecodeWithSymbolsTest() { final String encodedKey = toEncodedKeyString(STRING_WITH_SYMBOLS); assertTrue(isEncodedSafeKeyChars(encodedKey)); assertThat(toDecodedString(encodedKey), is(STRING_WITH_SYMBOLS)); @@ -138,7 +138,7 @@ public void encodeDecode_WithSymbols_Test() { } @Test - public void encodeDecode_WithUnicodeSymbols_Test() { + public void encodeDecodeWithUnicodeSymbolsTest() { final String encodedKey = toEncodedKeyString(STRING_WITH_SYMBOLS_UNICODE); assertTrue(isEncodedSafeKeyChars(encodedKey)); assertThat(toDecodedString(encodedKey), is(STRING_WITH_SYMBOLS_UNICODE)); @@ -149,7 +149,7 @@ public void encodeDecode_WithUnicodeSymbols_Test() { } @Test - public void encodeDecode_SpaceAndPlus_Test() { + public void encodeDecodeSpaceAndPlusTest() { final String plusSpace = " +"; final String encodedKey = toEncodedKeyString(plusSpace); @@ -162,7 +162,7 @@ public void encodeDecode_SpaceAndPlus_Test() { } @Test - public void encodeDecode_Range_Test() { + public void encodeDecodeRangeTest() { final String range = "Range=bytes=0-10,110-120"; final String encodedValue = toEncodedValueString(range); @@ -172,7 +172,7 @@ public void encodeDecode_Range_Test() { } @Test - public void decodedDecode_LowerCase_Test() { + public void decodedDecodeLowerCaseTest() { final String encodedToLowerKey = toEncodedKeyString(STRING_WITH_SYMBOLS).toLowerCase(); assertTrue(isEncodedSafeKeyChars(encodedToLowerKey)); assertThat(toDecodedString(encodedToLowerKey), is(STRING_WITH_SYMBOLS)); @@ -183,7 +183,7 @@ public void decodedDecode_LowerCase_Test() { } @Test - public void encodeDecode_DoubleEncoding_Test() { + public void encodeDecodeDoubleEncodingTest() { final String encoded1Key = toEncodedKeyString(STRING_WITH_SYMBOLS); final String encoded2Key = toEncodedKeyString(encoded1Key); assertTrue(isEncodedSafeKeyChars(encoded1Key)); From a73ac18d7eef133e48be93ccb1f61dcab48b840f Mon Sep 17 00:00:00 2001 From: Sharon Shabtai Date: Mon, 22 Apr 2019 10:31:32 -0600 Subject: [PATCH 35/38] Update copyright to 2019 --- build.gradle | 22 +++++++++---------- contract/3_4_1_contract.xml | 15 +++++++++++++ ds3-interfaces/build.gradle | 15 +++++++++++++ .../ds3client/helpers/MetadataAccess.java | 2 +- .../helpers/MetadataReceivedListener.java | 2 +- .../metadata/interfaces/MetadataRestore.java | 2 +- .../metadata/interfaces/MetadataStore.java | 2 +- .../ds3client/networking/Headers.java | 2 +- .../ds3client/networking/Metadata.java | 2 +- ds3-metadata/build.gradle | 6 ++--- .../metadata/AbstractMetadataRestore.java | 2 +- .../metadata/AbstractMetadataStore.java | 2 +- .../metadata/MACMetadataRestore.java | 2 +- .../ds3client/metadata/MetaDataUtil.java | 2 +- .../metadata/MetadataAccessImpl.java | 2 +- .../metadata/MetadataKeyConstants.java | 2 +- .../MetadataReceivedListenerImpl.java | 2 +- .../metadata/MetadataRestoreFactory.java | 2 +- .../metadata/MetadataStoreFactory.java | 2 +- .../ds3client/metadata/PermissionsUtils.java | 2 +- .../metadata/PosixMetadataRestore.java | 2 +- .../metadata/PosixMetadataStore.java | 2 +- .../metadata/WindowsMetadataException.java | 2 +- .../metadata/WindowsMetadataRestore.java | 2 +- .../metadata/WindowsMetadataStore.java | 2 +- .../ds3client/metadata/jna/Advapi32.java | 2 +- .../spectralogic/ds3client/MockedHeaders.java | 2 +- .../ds3client/MockedHeadersReturningKeys.java | 2 +- .../metadata/MACMetadataRestore_Test.java | 2 +- .../metadata/MetadataAccessImpl_Test.java | 2 +- .../MetadataReceivedListenerImpl_Test.java | 2 +- .../metadata/MetadataRestoreFactory_Test.java | 2 +- .../metadata/PosixMetadataRestore_Test.java | 2 +- .../metadata/PosixMetadataStore_Test.java | 2 +- .../metadata/WindowsMetadataRestore_Test.java | 2 +- .../metadata/WindowsMetadataStore_Test.java | 2 +- ds3-sdk-integration/build.gradle | 6 ++--- .../ds3client/integration/NullChannel.java | 2 +- .../integration/RandomDataInputStream.java | 2 +- .../integration/ResourceObjectPutter.java | 2 +- .../integration/TransferredListener.java | 2 +- .../ds3client/integration/Util.java | 2 +- .../spectralogic/ds3client/MockedHeaders.java | 2 +- .../ds3client/MockedWebResponse.java | 2 +- .../helpers/FileSystemHelper_Test.java | 2 +- .../ObjectStreamBuilder_Test.java | 2 +- .../AdvancedBucketManagement_Test.java | 2 +- .../integration/CustomParser_Test.java | 2 +- .../integration/DataIntegrity_Test.java | 2 +- .../integration/GetJobManagement_Test.java | 2 +- .../integration/GroupManagement_Test.java | 2 +- .../ds3client/integration/Insecure_Test.java | 2 +- .../ds3client/integration/Iterators_Test.java | 2 +- .../ds3client/integration/Metadata_Test.java | 2 +- .../NotificationsIntegration_test.java | 2 +- .../integration/PutJobManagement_Test.java | 2 +- .../integration/Regression_Test.java | 2 +- .../ds3client/integration/Smoke_Test.java | 2 +- .../SpectraS3PaginationLoader_Test.java | 2 +- .../integration/UsersAndGroups_Test.java | 2 +- .../test/helpers/ABMTestHelper.java | 2 +- .../test/helpers/Ds3ClientShim.java | 2 +- .../test/helpers/Ds3ClientShimFactory.java | 2 +- ...s3ClientShimWithFailedChunkAllocation.java | 2 +- .../Ds3ClientShimWithFailedGetObject.java | 2 +- .../Ds3ClientShimWithFailedPutObject.java | 2 +- .../test/helpers/JobStatusHelper.java | 2 +- .../NotificationCleanupTestHelper.java | 2 +- .../test/helpers/TempStorageIds.java | 2 +- .../test/helpers/TempStorageUtil.java | 2 +- ds3-sdk-samples/build.gradle | 6 ++--- .../samples/BulkGetWithMetadata.java | 2 +- .../ds3client/samples/BulkPutExample.java | 2 +- .../samples/BulkPutWithChecksums.java | 2 +- .../samples/BulkPutWithMetadata.java | 2 +- .../ds3client/samples/Ds3BulkGetExample.java | 2 +- .../Ds3PutObjectRelativePathExample.java | 2 +- .../samples/Ds3ServiceListExample.java | 2 +- .../samples/PartialObjectGetExample.java | 2 +- .../samples/PutEmptyFolderExample.java | 2 +- .../ds3client/samples/RecoverJobExample.java | 2 +- ds3-sdk/build.gradle | 2 +- .../spectralogic/ds3client/BulkCommand.java | 2 +- .../ds3client/ConnectionDetailsImpl.java | 2 +- .../com/spectralogic/ds3client/Ds3Client.java | 2 +- .../ds3client/Ds3ClientBuilder.java | 2 +- .../spectralogic/ds3client/Ds3ClientImpl.java | 2 +- .../ds3client/Ds3InputStreamEntity.java | 2 +- .../ds3client/GetObjectCustomParser.java | 2 +- .../ds3client/annotations/Action.java | 2 +- .../ds3client/annotations/Resource.java | 2 +- .../annotations/ResponsePayloadModel.java | 2 +- .../commands/AbortMultiPartUploadRequest.java | 2 +- .../AbortMultiPartUploadResponse.java | 2 +- .../CompleteMultiPartUploadRequest.java | 2 +- .../CompleteMultiPartUploadResponse.java | 2 +- .../commands/DeleteBucketRequest.java | 2 +- .../commands/DeleteBucketResponse.java | 2 +- .../commands/DeleteObjectRequest.java | 2 +- .../commands/DeleteObjectResponse.java | 2 +- .../commands/DeleteObjectsRequest.java | 2 +- .../commands/DeleteObjectsResponse.java | 2 +- .../ds3client/commands/GetBucketRequest.java | 2 +- .../ds3client/commands/GetBucketResponse.java | 2 +- .../ds3client/commands/GetObjectRequest.java | 2 +- .../ds3client/commands/GetObjectResponse.java | 2 +- .../ds3client/commands/GetServiceRequest.java | 2 +- .../commands/GetServiceResponse.java | 2 +- .../ds3client/commands/HeadBucketRequest.java | 2 +- .../commands/HeadBucketResponse.java | 2 +- .../ds3client/commands/HeadObjectRequest.java | 2 +- .../commands/HeadObjectResponse.java | 2 +- .../InitiateMultiPartUploadRequest.java | 2 +- .../InitiateMultiPartUploadResponse.java | 2 +- .../ListMultiPartUploadPartsRequest.java | 2 +- .../ListMultiPartUploadPartsResponse.java | 2 +- .../commands/ListMultiPartUploadsRequest.java | 2 +- .../ListMultiPartUploadsResponse.java | 2 +- .../ds3client/commands/PutBucketRequest.java | 2 +- .../ds3client/commands/PutBucketResponse.java | 2 +- .../PutMultiPartUploadPartRequest.java | 2 +- .../PutMultiPartUploadPartResponse.java | 2 +- .../ds3client/commands/PutObjectRequest.java | 2 +- .../ds3client/commands/PutObjectResponse.java | 2 +- .../AbstractCreateNotificationRequest.java | 2 +- .../AbstractDeleteNotificationRequest.java | 2 +- .../AbstractGetNotificationRequest.java | 2 +- .../interfaces/AbstractPaginationRequest.java | 2 +- .../AbstractPaginationResponse.java | 2 +- .../commands/interfaces/AbstractRequest.java | 2 +- .../commands/interfaces/AbstractResponse.java | 2 +- .../commands/interfaces/BulkRequest.java | 2 +- .../commands/interfaces/BulkResponse.java | 2 +- .../commands/interfaces/Ds3Request.java | 2 +- .../commands/interfaces/Ds3Response.java | 2 +- .../interfaces/PaginationRequest.java | 2 +- .../interfaces/PaginationResponse.java | 2 +- .../commands/interfaces/RequestHeaders.java | 2 +- .../interfaces/RequestHeadersImpl.java | 2 +- .../ds3client/commands/package-info.java | 2 +- .../AbortMultiPartUploadResponseParser.java | 2 +- ...locateJobChunkSpectraS3ResponseParser.java | 2 +- ...ancelActiveJobSpectraS3ResponseParser.java | 2 +- ...lAllActiveJobsSpectraS3ResponseParser.java | 2 +- .../CancelAllJobsSpectraS3ResponseParser.java | 2 +- ...jectOnAllTapesSpectraS3ResponseParser.java | 2 +- ...ancelEjectTapeSpectraS3ResponseParser.java | 2 +- ...rmatOnAllTapesSpectraS3ResponseParser.java | 2 +- ...ncelFormatTapeSpectraS3ResponseParser.java | 2 +- ...portOnAllPoolsSpectraS3ResponseParser.java | 2 +- ...portOnAllTapesSpectraS3ResponseParser.java | 2 +- ...ncelImportPoolSpectraS3ResponseParser.java | 2 +- ...ncelImportTapeSpectraS3ResponseParser.java | 2 +- .../CancelJobSpectraS3ResponseParser.java | 2 +- ...lineOnAllTapesSpectraS3ResponseParser.java | 2 +- ...ncelOnlineTapeSpectraS3ResponseParser.java | 2 +- ...rifyOnAllPoolsSpectraS3ResponseParser.java | 2 +- ...rifyOnAllTapesSpectraS3ResponseParser.java | 2 +- ...ncelVerifyPoolSpectraS3ResponseParser.java | 2 +- ...ncelVerifyTapeSpectraS3ResponseParser.java | 2 +- ...CleanTapeDriveSpectraS3ResponseParser.java | 2 +- ...llCanceledJobsSpectraS3ResponseParser.java | 2 +- ...lCompletedJobsSpectraS3ResponseParser.java | 2 +- ...obAzureTargetsSpectraS3ResponseParser.java | 2 +- ...BlobDs3TargetsSpectraS3ResponseParser.java | 2 +- ...spectBlobPoolsSpectraS3ResponseParser.java | 2 +- ...tBlobS3TargetsSpectraS3ResponseParser.java | 2 +- ...spectBlobTapesSpectraS3ResponseParser.java | 2 +- ...ompactAllPoolsSpectraS3ResponseParser.java | 2 +- .../CompactPoolSpectraS3ResponseParser.java | 2 +- ...CompleteMultiPartUploadResponseParser.java | 2 +- ...ainToDs3TargetSpectraS3ResponseParser.java | 2 +- ...DeallocatePoolSpectraS3ResponseParser.java | 2 +- ...gateCreateUserSpectraS3ResponseParser.java | 2 +- ...gateDeleteUserSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...rgetBucketNameSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...eTargetFailureSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...eteAzureTargetSpectraS3ResponseParser.java | 2 +- ...eleteBucketAclSpectraS3ResponseParser.java | 2 +- .../parsers/DeleteBucketResponseParser.java | 2 +- .../DeleteBucketSpectraS3ResponseParser.java | 2 +- ...ersistenceRuleSpectraS3ResponseParser.java | 2 +- ...eDataPolicyAclSpectraS3ResponseParser.java | 2 +- ...leteDataPolicySpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...3TargetFailureSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...eleteDs3TargetSpectraS3ResponseParser.java | 2 +- ...derRecursivelySpectraS3ResponseParser.java | 2 +- ...eteGroupMemberSpectraS3ResponseParser.java | 2 +- .../DeleteGroupSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- .../parsers/DeleteObjectResponseParser.java | 2 +- .../parsers/DeleteObjectsResponseParser.java | 2 +- ...nentlyLostPoolSpectraS3ResponseParser.java | 2 +- ...nentlyLostTapeSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...etePoolFailureSpectraS3ResponseParser.java | 2 +- ...ePoolPartitionSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...rgetBucketNameSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...3TargetFailureSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...DeleteS3TargetSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...eDomainFailureSpectraS3ResponseParser.java | 2 +- ...geDomainMemberSpectraS3ResponseParser.java | 2 +- ...eStorageDomainSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nsityDirectiveSpectraS3ResponseParser.java | 2 +- ...eleteTapeDriveSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...eteTapeFailureSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...rtitionFailureSpectraS3ResponseParser.java | 2 +- ...eTapePartitionSpectraS3ResponseParser.java | 2 +- .../EjectAllTapesSpectraS3ResponseParser.java | 2 +- ...ageDomainBlobsSpectraS3ResponseParser.java | 2 +- ...tStorageDomainSpectraS3ResponseParser.java | 2 +- .../EjectTapeSpectraS3ResponseParser.java | 2 +- ...eKeyValidationSpectraS3ResponseParser.java | 2 +- ...llCacheReclaimSpectraS3ResponseParser.java | 2 +- ...ronmentRefreshSpectraS3ResponseParser.java | 2 +- ...ronmentRefreshSpectraS3ResponseParser.java | 2 +- ...ronmentRefreshSpectraS3ResponseParser.java | 2 +- ...llForeignPoolsSpectraS3ResponseParser.java | 2 +- ...FormatAllTapesSpectraS3ResponseParser.java | 2 +- ...matForeignPoolSpectraS3ResponseParser.java | 2 +- .../FormatTapeSpectraS3ResponseParser.java | 2 +- .../GetActiveJobSpectraS3ResponseParser.java | 2 +- .../GetActiveJobsSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...plicationRulesSpectraS3ResponseParser.java | 2 +- ...getBucketNamesSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...TargetFailuresSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...eadPreferencesSpectraS3ResponseParser.java | 2 +- ...GetAzureTargetSpectraS3ResponseParser.java | 2 +- ...etAzureTargetsSpectraS3ResponseParser.java | 2 +- ...lobPersistenceSpectraS3ResponseParser.java | 2 +- ...sOnAzureTargetSpectraS3ResponseParser.java | 2 +- ...obsOnDs3TargetSpectraS3ResponseParser.java | 2 +- ...GetBlobsOnPoolSpectraS3ResponseParser.java | 2 +- ...lobsOnS3TargetSpectraS3ResponseParser.java | 2 +- ...GetBlobsOnTapeSpectraS3ResponseParser.java | 2 +- .../GetBucketAclSpectraS3ResponseParser.java | 2 +- .../GetBucketAclsSpectraS3ResponseParser.java | 2 +- ...apacitySummarySpectraS3ResponseParser.java | 2 +- .../parsers/GetBucketResponseParser.java | 2 +- .../GetBucketSpectraS3ResponseParser.java | 2 +- .../GetBucketsSpectraS3ResponseParser.java | 2 +- .../GetBulkJobSpectraS3ResponseParser.java | 2 +- ...acheFilesystemSpectraS3ResponseParser.java | 2 +- ...cheFilesystemsSpectraS3ResponseParser.java | 2 +- .../GetCacheStateSpectraS3ResponseParser.java | 2 +- ...GetCanceledJobSpectraS3ResponseParser.java | 2 +- ...etCanceledJobsSpectraS3ResponseParser.java | 2 +- ...etCompletedJobSpectraS3ResponseParser.java | 2 +- ...tCompletedJobsSpectraS3ResponseParser.java | 2 +- ...ataPathBackendSpectraS3ResponseParser.java | 2 +- ...ersistenceRuleSpectraS3ResponseParser.java | 2 +- ...rsistenceRulesSpectraS3ResponseParser.java | 2 +- ...BlobStoreTasksSpectraS3ResponseParser.java | 2 +- ...etDataPoliciesSpectraS3ResponseParser.java | 2 +- ...tDataPolicyAclSpectraS3ResponseParser.java | 2 +- ...DataPolicyAclsSpectraS3ResponseParser.java | 2 +- .../GetDataPolicySpectraS3ResponseParser.java | 2 +- ...plicationRulesSpectraS3ResponseParser.java | 2 +- ...tDegradedBlobsSpectraS3ResponseParser.java | 2 +- ...egradedBucketsSpectraS3ResponseParser.java | 2 +- ...rsistenceRulesSpectraS3ResponseParser.java | 2 +- ...plicationRulesSpectraS3ResponseParser.java | 2 +- ...plicationRulesSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...plicationRulesSpectraS3ResponseParser.java | 2 +- ...etDataPoliciesSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...TargetFailuresSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...eadPreferencesSpectraS3ResponseParser.java | 2 +- .../GetDs3TargetSpectraS3ResponseParser.java | 2 +- .../GetDs3TargetsSpectraS3ResponseParser.java | 2 +- ...GetFeatureKeysSpectraS3ResponseParser.java | 2 +- ...GetGroupMemberSpectraS3ResponseParser.java | 2 +- ...etGroupMembersSpectraS3ResponseParser.java | 2 +- .../GetGroupSpectraS3ResponseParser.java | 2 +- .../GetGroupsSpectraS3ResponseParser.java | 2 +- ...GetJobChunkDaoSpectraS3ResponseParser.java | 2 +- .../GetJobChunkSpectraS3ResponseParser.java | 2 +- ...ientProcessingSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- .../GetJobSpectraS3ResponseParser.java | 2 +- ...JobToReplicateSpectraS3ResponseParser.java | 2 +- .../GetJobsSpectraS3ResponseParser.java | 2 +- .../GetNodeSpectraS3ResponseParser.java | 2 +- .../GetNodesSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...tObjectDetailsSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- .../parsers/GetObjectResponseParser.java | 2 +- ...ObjectsDetailsSpectraS3ResponseParser.java | 2 +- ...ithFullDetailsSpectraS3ResponseParser.java | 2 +- ...mentForObjectsSpectraS3ResponseParser.java | 2 +- ...ithFullDetailsSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...etPoolFailuresSpectraS3ResponseParser.java | 2 +- ...tPoolPartitionSpectraS3ResponseParser.java | 2 +- ...PoolPartitionsSpectraS3ResponseParser.java | 2 +- .../GetPoolSpectraS3ResponseParser.java | 2 +- .../GetPoolsSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...plicationRulesSpectraS3ResponseParser.java | 2 +- ...getBucketNamesSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...TargetFailuresSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...eadPreferencesSpectraS3ResponseParser.java | 2 +- .../GetS3TargetSpectraS3ResponseParser.java | 2 +- .../GetS3TargetsSpectraS3ResponseParser.java | 2 +- .../parsers/GetServiceResponseParser.java | 2 +- ...apacitySummarySpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...DomainFailuresSpectraS3ResponseParser.java | 2 +- ...geDomainMemberSpectraS3ResponseParser.java | 2 +- ...eDomainMembersSpectraS3ResponseParser.java | 2 +- ...tStorageDomainSpectraS3ResponseParser.java | 2 +- ...StorageDomainsSpectraS3ResponseParser.java | 2 +- ...obAzureTargetsSpectraS3ResponseParser.java | 2 +- ...BlobDs3TargetsSpectraS3ResponseParser.java | 2 +- ...spectBlobPoolsSpectraS3ResponseParser.java | 2 +- ...tBlobS3TargetsSpectraS3ResponseParser.java | 2 +- ...spectBlobTapesSpectraS3ResponseParser.java | 2 +- ...SuspectBucketsSpectraS3ResponseParser.java | 2 +- ...SuspectObjectsSpectraS3ResponseParser.java | 2 +- ...ithFullDetailsSpectraS3ResponseParser.java | 2 +- ...apacitySummarySpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...SystemFailuresSpectraS3ResponseParser.java | 2 +- ...temInformationSpectraS3ResponseParser.java | 2 +- ...nsityDirectiveSpectraS3ResponseParser.java | 2 +- ...sityDirectivesSpectraS3ResponseParser.java | 2 +- .../GetTapeDriveSpectraS3ResponseParser.java | 2 +- .../GetTapeDrivesSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...etTapeFailuresSpectraS3ResponseParser.java | 2 +- ...tTapeLibrariesSpectraS3ResponseParser.java | 2 +- ...GetTapeLibrarySpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nRegistrationsSpectraS3ResponseParser.java | 2 +- ...titionFailuresSpectraS3ResponseParser.java | 2 +- ...tTapePartitionSpectraS3ResponseParser.java | 2 +- ...ithFullDetailsSpectraS3ResponseParser.java | 2 +- ...TapePartitionsSpectraS3ResponseParser.java | 2 +- ...ithFullDetailsSpectraS3ResponseParser.java | 2 +- .../GetTapeSpectraS3ResponseParser.java | 2 +- .../GetTapesSpectraS3ResponseParser.java | 2 +- .../GetUserSpectraS3ResponseParser.java | 2 +- .../GetUsersSpectraS3ResponseParser.java | 2 +- .../parsers/HeadBucketResponseParser.java | 2 +- .../parsers/HeadObjectResponseParser.java | 2 +- ...ImportAllPoolsSpectraS3ResponseParser.java | 2 +- ...ImportAllTapesSpectraS3ResponseParser.java | 2 +- ...ortAzureTargetSpectraS3ResponseParser.java | 2 +- .../ImportPoolSpectraS3ResponseParser.java | 2 +- ...ImportS3TargetSpectraS3ResponseParser.java | 2 +- .../ImportTapeSpectraS3ResponseParser.java | 2 +- ...InitiateMultiPartUploadResponseParser.java | 2 +- ...nspectAllTapesSpectraS3ResponseParser.java | 2 +- .../InspectTapeSpectraS3ResponseParser.java | 2 +- ...istMultiPartUploadPartsResponseParser.java | 2 +- .../ListMultiPartUploadsResponseParser.java | 2 +- ...getsAsDegradedSpectraS3ResponseParser.java | 2 +- ...getsAsDegradedSpectraS3ResponseParser.java | 2 +- ...oolsAsDegradedSpectraS3ResponseParser.java | 2 +- ...getsAsDegradedSpectraS3ResponseParser.java | 2 +- ...apesAsDegradedSpectraS3ResponseParser.java | 2 +- ...odifyActiveJobSpectraS3ResponseParser.java | 2 +- ...llAzureTargetsSpectraS3ResponseParser.java | 2 +- ...yAllDs3TargetsSpectraS3ResponseParser.java | 2 +- ...ModifyAllPoolsSpectraS3ResponseParser.java | 2 +- ...fyAllS3TargetsSpectraS3ResponseParser.java | 2 +- ...TapePartitionsSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...ifyAzureTargetSpectraS3ResponseParser.java | 2 +- .../ModifyBucketSpectraS3ResponseParser.java | 2 +- ...acheFilesystemSpectraS3ResponseParser.java | 2 +- ...ataPathBackendSpectraS3ResponseParser.java | 2 +- ...ersistenceRuleSpectraS3ResponseParser.java | 2 +- ...difyDataPolicySpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...odifyDs3TargetSpectraS3ResponseParser.java | 2 +- .../ModifyGroupSpectraS3ResponseParser.java | 2 +- .../ModifyJobSpectraS3ResponseParser.java | 2 +- .../ModifyNodeSpectraS3ResponseParser.java | 2 +- ...yPoolPartitionSpectraS3ResponseParser.java | 2 +- .../ModifyPoolSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...ModifyS3TargetSpectraS3ResponseParser.java | 2 +- ...geDomainMemberSpectraS3ResponseParser.java | 2 +- ...yStorageDomainSpectraS3ResponseParser.java | 2 +- ...yTapePartitionSpectraS3ResponseParser.java | 2 +- .../ModifyTapeSpectraS3ResponseParser.java | 2 +- .../ModifyUserSpectraS3ResponseParser.java | 2 +- ...OnlineAllTapesSpectraS3ResponseParser.java | 2 +- .../OnlineTapeSpectraS3ResponseParser.java | 2 +- ...teredDs3TargetSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...rgetBucketNameSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...ketAclForGroupSpectraS3ResponseParser.java | 2 +- ...cketAclForUserSpectraS3ResponseParser.java | 2 +- .../parsers/PutBucketResponseParser.java | 2 +- .../PutBucketSpectraS3ResponseParser.java | 2 +- .../PutBulkJobSpectraS3ResponseParser.java | 2 +- ...ersistenceRuleSpectraS3ResponseParser.java | 2 +- ...icyAclForGroupSpectraS3ResponseParser.java | 2 +- ...licyAclForUserSpectraS3ResponseParser.java | 2 +- .../PutDataPolicySpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...ketAclForGroupSpectraS3ResponseParser.java | 2 +- ...cketAclForUserSpectraS3ResponseParser.java | 2 +- ...icyAclForGroupSpectraS3ResponseParser.java | 2 +- ...licyAclForUserSpectraS3ResponseParser.java | 2 +- ...oupGroupMemberSpectraS3ResponseParser.java | 2 +- .../PutGroupSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- .../PutMultiPartUploadPartResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- .../parsers/PutObjectResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...tPoolPartitionSpectraS3ResponseParser.java | 2 +- ...geDomainMemberSpectraS3ResponseParser.java | 2 +- ...eplicationRuleSpectraS3ResponseParser.java | 2 +- ...rgetBucketNameSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...ReadPreferenceSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...tStorageDomainSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...nsityDirectiveSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...onRegistrationSpectraS3ResponseParser.java | 2 +- ...geDomainMemberSpectraS3ResponseParser.java | 2 +- ...serGroupMemberSpectraS3ResponseParser.java | 2 +- ...ImportAllTapesSpectraS3ResponseParser.java | 2 +- .../RawImportTapeSpectraS3ResponseParser.java | 2 +- ...eUserSecretKeySpectraS3ResponseParser.java | 2 +- ...terAzureTargetSpectraS3ResponseParser.java | 2 +- ...isterDs3TargetSpectraS3ResponseParser.java | 2 +- ...gisterS3TargetSpectraS3ResponseParser.java | 2 +- ...eplicatePutJobSpectraS3ResponseParser.java | 2 +- ...anceIdentifierSpectraS3ResponseParser.java | 2 +- ...ncateActiveJobSpectraS3ResponseParser.java | 2 +- ...eAllActiveJobsSpectraS3ResponseParser.java | 2 +- ...runcateAllJobsSpectraS3ResponseParser.java | 2 +- .../TruncateJobSpectraS3ResponseParser.java | 2 +- ...VerifyAllPoolsSpectraS3ResponseParser.java | 2 +- ...VerifyAllTapesSpectraS3ResponseParser.java | 2 +- ...ifyAzureTargetSpectraS3ResponseParser.java | 2 +- .../VerifyBulkJobSpectraS3ResponseParser.java | 2 +- ...erifyDs3TargetSpectraS3ResponseParser.java | 2 +- ...mentForObjectsSpectraS3ResponseParser.java | 2 +- ...ithFullDetailsSpectraS3ResponseParser.java | 2 +- .../VerifyPoolSpectraS3ResponseParser.java | 2 +- ...VerifyS3TargetSpectraS3ResponseParser.java | 2 +- ...ToCreatePutJobSpectraS3ResponseParser.java | 2 +- ...fySystemHealthSpectraS3ResponseParser.java | 2 +- .../VerifyTapeSpectraS3ResponseParser.java | 2 +- ...sMemberOfGroupSpectraS3ResponseParser.java | 2 +- .../interfaces/AbstractResponseParser.java | 2 +- .../GetObjectCustomParserParameters.java | 2 +- .../commands/parsers/utils/Function.java | 2 +- .../parsers/utils/ResponseParserUtils.java | 2 +- .../AllocateJobChunkSpectraS3Request.java | 2 +- .../AllocateJobChunkSpectraS3Response.java | 2 +- .../CancelActiveJobSpectraS3Request.java | 2 +- .../CancelActiveJobSpectraS3Response.java | 2 +- .../CancelAllActiveJobsSpectraS3Request.java | 2 +- .../CancelAllActiveJobsSpectraS3Response.java | 2 +- .../CancelAllJobsSpectraS3Request.java | 2 +- .../CancelAllJobsSpectraS3Response.java | 2 +- ...CancelEjectOnAllTapesSpectraS3Request.java | 2 +- ...ancelEjectOnAllTapesSpectraS3Response.java | 2 +- .../CancelEjectTapeSpectraS3Request.java | 2 +- .../CancelEjectTapeSpectraS3Response.java | 2 +- ...ancelFormatOnAllTapesSpectraS3Request.java | 2 +- ...ncelFormatOnAllTapesSpectraS3Response.java | 2 +- .../CancelFormatTapeSpectraS3Request.java | 2 +- .../CancelFormatTapeSpectraS3Response.java | 2 +- ...ancelImportOnAllPoolsSpectraS3Request.java | 2 +- ...ncelImportOnAllPoolsSpectraS3Response.java | 2 +- ...ancelImportOnAllTapesSpectraS3Request.java | 2 +- ...ncelImportOnAllTapesSpectraS3Response.java | 2 +- .../CancelImportPoolSpectraS3Request.java | 2 +- .../CancelImportPoolSpectraS3Response.java | 2 +- .../CancelImportTapeSpectraS3Request.java | 2 +- .../CancelImportTapeSpectraS3Response.java | 2 +- .../spectrads3/CancelJobSpectraS3Request.java | 2 +- .../CancelJobSpectraS3Response.java | 2 +- ...ancelOnlineOnAllTapesSpectraS3Request.java | 2 +- ...ncelOnlineOnAllTapesSpectraS3Response.java | 2 +- .../CancelOnlineTapeSpectraS3Request.java | 2 +- .../CancelOnlineTapeSpectraS3Response.java | 2 +- ...ancelVerifyOnAllPoolsSpectraS3Request.java | 2 +- ...ncelVerifyOnAllPoolsSpectraS3Response.java | 2 +- ...ancelVerifyOnAllTapesSpectraS3Request.java | 2 +- ...ncelVerifyOnAllTapesSpectraS3Response.java | 2 +- .../CancelVerifyPoolSpectraS3Request.java | 2 +- .../CancelVerifyPoolSpectraS3Response.java | 2 +- .../CancelVerifyTapeSpectraS3Request.java | 2 +- .../CancelVerifyTapeSpectraS3Response.java | 2 +- .../CleanTapeDriveSpectraS3Request.java | 2 +- .../CleanTapeDriveSpectraS3Response.java | 2 +- .../ClearAllCanceledJobsSpectraS3Request.java | 2 +- ...ClearAllCanceledJobsSpectraS3Response.java | 2 +- ...ClearAllCompletedJobsSpectraS3Request.java | 2 +- ...learAllCompletedJobsSpectraS3Response.java | 2 +- ...spectBlobAzureTargetsSpectraS3Request.java | 2 +- ...pectBlobAzureTargetsSpectraS3Response.java | 2 +- ...SuspectBlobDs3TargetsSpectraS3Request.java | 2 +- ...uspectBlobDs3TargetsSpectraS3Response.java | 2 +- ...ClearSuspectBlobPoolsSpectraS3Request.java | 2 +- ...learSuspectBlobPoolsSpectraS3Response.java | 2 +- ...rSuspectBlobS3TargetsSpectraS3Request.java | 2 +- ...SuspectBlobS3TargetsSpectraS3Response.java | 2 +- ...ClearSuspectBlobTapesSpectraS3Request.java | 2 +- ...learSuspectBlobTapesSpectraS3Response.java | 2 +- .../CompactAllPoolsSpectraS3Request.java | 2 +- .../CompactAllPoolsSpectraS3Response.java | 2 +- .../CompactPoolSpectraS3Request.java | 2 +- .../CompactPoolSpectraS3Response.java | 2 +- ...rageDomainToDs3TargetSpectraS3Request.java | 2 +- ...ageDomainToDs3TargetSpectraS3Response.java | 2 +- .../DeallocatePoolSpectraS3Request.java | 2 +- .../DeallocatePoolSpectraS3Response.java | 2 +- .../DelegateCreateUserSpectraS3Request.java | 2 +- .../DelegateCreateUserSpectraS3Response.java | 2 +- .../DelegateDeleteUserSpectraS3Request.java | 2 +- .../DelegateDeleteUserSpectraS3Response.java | 2 +- ...reDataReplicationRuleSpectraS3Request.java | 2 +- ...eDataReplicationRuleSpectraS3Response.java | 2 +- ...AzureTargetBucketNameSpectraS3Request.java | 2 +- ...zureTargetBucketNameSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...eteAzureTargetFailureSpectraS3Request.java | 2 +- ...teAzureTargetFailureSpectraS3Response.java | 2 +- ...eTargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- .../DeleteAzureTargetSpectraS3Request.java | 2 +- .../DeleteAzureTargetSpectraS3Response.java | 2 +- .../DeleteBucketAclSpectraS3Request.java | 2 +- .../DeleteBucketAclSpectraS3Response.java | 2 +- .../DeleteBucketSpectraS3Request.java | 2 +- .../DeleteBucketSpectraS3Response.java | 2 +- ...teDataPersistenceRuleSpectraS3Request.java | 2 +- ...eDataPersistenceRuleSpectraS3Response.java | 2 +- .../DeleteDataPolicyAclSpectraS3Request.java | 2 +- .../DeleteDataPolicyAclSpectraS3Response.java | 2 +- .../DeleteDataPolicySpectraS3Request.java | 2 +- .../DeleteDataPolicySpectraS3Response.java | 2 +- ...s3DataReplicationRuleSpectraS3Request.java | 2 +- ...3DataReplicationRuleSpectraS3Response.java | 2 +- ...eleteDs3TargetFailureSpectraS3Request.java | 2 +- ...leteDs3TargetFailureSpectraS3Response.java | 2 +- ...3TargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- .../DeleteDs3TargetSpectraS3Request.java | 2 +- .../DeleteDs3TargetSpectraS3Response.java | 2 +- ...leteFolderRecursivelySpectraS3Request.java | 2 +- ...eteFolderRecursivelySpectraS3Response.java | 2 +- .../DeleteGroupMemberSpectraS3Request.java | 2 +- .../DeleteGroupMemberSpectraS3Response.java | 2 +- .../DeleteGroupSpectraS3Request.java | 2 +- .../DeleteGroupSpectraS3Response.java | 2 +- ...tePermanentlyLostPoolSpectraS3Request.java | 2 +- ...ePermanentlyLostPoolSpectraS3Response.java | 2 +- ...tePermanentlyLostTapeSpectraS3Request.java | 2 +- ...ePermanentlyLostTapeSpectraS3Response.java | 2 +- .../DeletePoolFailureSpectraS3Request.java | 2 +- .../DeletePoolFailureSpectraS3Response.java | 2 +- .../DeletePoolPartitionSpectraS3Request.java | 2 +- .../DeletePoolPartitionSpectraS3Response.java | 2 +- ...S3DataReplicationRuleSpectraS3Request.java | 2 +- ...3DataReplicationRuleSpectraS3Response.java | 2 +- ...eteS3TargetBucketNameSpectraS3Request.java | 2 +- ...teS3TargetBucketNameSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...DeleteS3TargetFailureSpectraS3Request.java | 2 +- ...eleteS3TargetFailureSpectraS3Response.java | 2 +- ...3TargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- .../DeleteS3TargetSpectraS3Request.java | 2 +- .../DeleteS3TargetSpectraS3Response.java | 2 +- ...eStorageDomainFailureSpectraS3Request.java | 2 +- ...StorageDomainFailureSpectraS3Response.java | 2 +- ...teStorageDomainMemberSpectraS3Request.java | 2 +- ...eStorageDomainMemberSpectraS3Response.java | 2 +- .../DeleteStorageDomainSpectraS3Request.java | 2 +- .../DeleteStorageDomainSpectraS3Response.java | 2 +- ...eTapeDensityDirectiveSpectraS3Request.java | 2 +- ...TapeDensityDirectiveSpectraS3Response.java | 2 +- .../DeleteTapeDriveSpectraS3Request.java | 2 +- .../DeleteTapeDriveSpectraS3Response.java | 2 +- .../DeleteTapeFailureSpectraS3Request.java | 2 +- .../DeleteTapeFailureSpectraS3Response.java | 2 +- ...eTapePartitionFailureSpectraS3Request.java | 2 +- ...TapePartitionFailureSpectraS3Response.java | 2 +- .../DeleteTapePartitionSpectraS3Request.java | 2 +- .../DeleteTapePartitionSpectraS3Response.java | 2 +- .../EjectAllTapesSpectraS3Request.java | 2 +- .../EjectAllTapesSpectraS3Response.java | 2 +- ...ectStorageDomainBlobsSpectraS3Request.java | 2 +- ...ctStorageDomainBlobsSpectraS3Response.java | 2 +- .../EjectStorageDomainSpectraS3Request.java | 2 +- .../EjectStorageDomainSpectraS3Response.java | 2 +- .../spectrads3/EjectTapeSpectraS3Request.java | 2 +- .../EjectTapeSpectraS3Response.java | 2 +- ...eFeatureKeyValidationSpectraS3Request.java | 2 +- ...FeatureKeyValidationSpectraS3Response.java | 2 +- ...ForceFullCacheReclaimSpectraS3Request.java | 2 +- ...orceFullCacheReclaimSpectraS3Response.java | 2 +- ...oolEnvironmentRefreshSpectraS3Request.java | 2 +- ...olEnvironmentRefreshSpectraS3Response.java | 2 +- ...apeEnvironmentRefreshSpectraS3Request.java | 2 +- ...peEnvironmentRefreshSpectraS3Response.java | 2 +- ...getEnvironmentRefreshSpectraS3Request.java | 2 +- ...etEnvironmentRefreshSpectraS3Response.java | 2 +- ...FormatAllForeignPoolsSpectraS3Request.java | 2 +- ...ormatAllForeignPoolsSpectraS3Response.java | 2 +- .../FormatAllTapesSpectraS3Request.java | 2 +- .../FormatAllTapesSpectraS3Response.java | 2 +- .../FormatForeignPoolSpectraS3Request.java | 2 +- .../FormatForeignPoolSpectraS3Response.java | 2 +- .../FormatTapeSpectraS3Request.java | 2 +- .../FormatTapeSpectraS3Response.java | 2 +- .../GetActiveJobSpectraS3Request.java | 2 +- .../GetActiveJobSpectraS3Response.java | 2 +- .../GetActiveJobsSpectraS3Request.java | 2 +- .../GetActiveJobsSpectraS3Response.java | 2 +- ...reDataReplicationRuleSpectraS3Request.java | 2 +- ...eDataReplicationRuleSpectraS3Response.java | 2 +- ...eDataReplicationRulesSpectraS3Request.java | 2 +- ...DataReplicationRulesSpectraS3Response.java | 2 +- ...zureTargetBucketNamesSpectraS3Request.java | 2 +- ...ureTargetBucketNamesSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...etAzureTargetFailuresSpectraS3Request.java | 2 +- ...tAzureTargetFailuresSpectraS3Response.java | 2 +- ...eTargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- ...TargetReadPreferencesSpectraS3Request.java | 2 +- ...argetReadPreferencesSpectraS3Response.java | 2 +- .../GetAzureTargetSpectraS3Request.java | 2 +- .../GetAzureTargetSpectraS3Response.java | 2 +- .../GetAzureTargetsSpectraS3Request.java | 2 +- .../GetAzureTargetsSpectraS3Response.java | 2 +- .../GetBlobPersistenceSpectraS3Request.java | 2 +- .../GetBlobPersistenceSpectraS3Response.java | 2 +- ...GetBlobsOnAzureTargetSpectraS3Request.java | 2 +- ...etBlobsOnAzureTargetSpectraS3Response.java | 2 +- .../GetBlobsOnDs3TargetSpectraS3Request.java | 2 +- .../GetBlobsOnDs3TargetSpectraS3Response.java | 2 +- .../GetBlobsOnPoolSpectraS3Request.java | 2 +- .../GetBlobsOnPoolSpectraS3Response.java | 2 +- .../GetBlobsOnS3TargetSpectraS3Request.java | 2 +- .../GetBlobsOnS3TargetSpectraS3Response.java | 2 +- .../GetBlobsOnTapeSpectraS3Request.java | 2 +- .../GetBlobsOnTapeSpectraS3Response.java | 2 +- .../GetBucketAclSpectraS3Request.java | 2 +- .../GetBucketAclSpectraS3Response.java | 2 +- .../GetBucketAclsSpectraS3Request.java | 2 +- .../GetBucketAclsSpectraS3Response.java | 2 +- ...BucketCapacitySummarySpectraS3Request.java | 2 +- ...ucketCapacitySummarySpectraS3Response.java | 2 +- .../spectrads3/GetBucketSpectraS3Request.java | 2 +- .../GetBucketSpectraS3Response.java | 2 +- .../GetBucketsSpectraS3Request.java | 2 +- .../GetBucketsSpectraS3Response.java | 2 +- .../GetBulkJobSpectraS3Request.java | 2 +- .../GetBulkJobSpectraS3Response.java | 2 +- .../GetCacheFilesystemSpectraS3Request.java | 2 +- .../GetCacheFilesystemSpectraS3Response.java | 2 +- .../GetCacheFilesystemsSpectraS3Request.java | 2 +- .../GetCacheFilesystemsSpectraS3Response.java | 2 +- .../GetCacheStateSpectraS3Request.java | 2 +- .../GetCacheStateSpectraS3Response.java | 2 +- .../GetCanceledJobSpectraS3Request.java | 2 +- .../GetCanceledJobSpectraS3Response.java | 2 +- .../GetCanceledJobsSpectraS3Request.java | 2 +- .../GetCanceledJobsSpectraS3Response.java | 2 +- .../GetCompletedJobSpectraS3Request.java | 2 +- .../GetCompletedJobSpectraS3Response.java | 2 +- .../GetCompletedJobsSpectraS3Request.java | 2 +- .../GetCompletedJobsSpectraS3Response.java | 2 +- .../GetDataPathBackendSpectraS3Request.java | 2 +- .../GetDataPathBackendSpectraS3Response.java | 2 +- ...etDataPersistenceRuleSpectraS3Request.java | 2 +- ...tDataPersistenceRuleSpectraS3Response.java | 2 +- ...tDataPersistenceRulesSpectraS3Request.java | 2 +- ...DataPersistenceRulesSpectraS3Response.java | 2 +- ...PlannerBlobStoreTasksSpectraS3Request.java | 2 +- ...lannerBlobStoreTasksSpectraS3Response.java | 2 +- .../GetDataPoliciesSpectraS3Request.java | 2 +- .../GetDataPoliciesSpectraS3Response.java | 2 +- .../GetDataPolicyAclSpectraS3Request.java | 2 +- .../GetDataPolicyAclSpectraS3Response.java | 2 +- .../GetDataPolicyAclsSpectraS3Request.java | 2 +- .../GetDataPolicyAclsSpectraS3Response.java | 2 +- .../GetDataPolicySpectraS3Request.java | 2 +- .../GetDataPolicySpectraS3Response.java | 2 +- ...eDataReplicationRulesSpectraS3Request.java | 2 +- ...DataReplicationRulesSpectraS3Response.java | 2 +- .../GetDegradedBlobsSpectraS3Request.java | 2 +- .../GetDegradedBlobsSpectraS3Response.java | 2 +- .../GetDegradedBucketsSpectraS3Request.java | 2 +- .../GetDegradedBucketsSpectraS3Response.java | 2 +- ...dDataPersistenceRulesSpectraS3Request.java | 2 +- ...DataPersistenceRulesSpectraS3Response.java | 2 +- ...3DataReplicationRulesSpectraS3Request.java | 2 +- ...DataReplicationRulesSpectraS3Response.java | 2 +- ...3DataReplicationRulesSpectraS3Request.java | 2 +- ...DataReplicationRulesSpectraS3Response.java | 2 +- ...s3DataReplicationRuleSpectraS3Request.java | 2 +- ...3DataReplicationRuleSpectraS3Response.java | 2 +- ...3DataReplicationRulesSpectraS3Request.java | 2 +- ...DataReplicationRulesSpectraS3Response.java | 2 +- ...Ds3TargetDataPoliciesSpectraS3Request.java | 2 +- ...s3TargetDataPoliciesSpectraS3Response.java | 2 +- .../GetDs3TargetFailuresSpectraS3Request.java | 2 +- ...GetDs3TargetFailuresSpectraS3Response.java | 2 +- ...3TargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- ...TargetReadPreferencesSpectraS3Request.java | 2 +- ...argetReadPreferencesSpectraS3Response.java | 2 +- .../GetDs3TargetSpectraS3Request.java | 2 +- .../GetDs3TargetSpectraS3Response.java | 2 +- .../GetDs3TargetsSpectraS3Request.java | 2 +- .../GetDs3TargetsSpectraS3Response.java | 2 +- .../GetFeatureKeysSpectraS3Request.java | 2 +- .../GetFeatureKeysSpectraS3Response.java | 2 +- .../GetGroupMemberSpectraS3Request.java | 2 +- .../GetGroupMemberSpectraS3Response.java | 2 +- .../GetGroupMembersSpectraS3Request.java | 2 +- .../GetGroupMembersSpectraS3Response.java | 2 +- .../spectrads3/GetGroupSpectraS3Request.java | 2 +- .../spectrads3/GetGroupSpectraS3Response.java | 2 +- .../spectrads3/GetGroupsSpectraS3Request.java | 2 +- .../GetGroupsSpectraS3Response.java | 2 +- .../GetJobChunkDaoSpectraS3Request.java | 2 +- .../GetJobChunkDaoSpectraS3Response.java | 2 +- .../GetJobChunkSpectraS3Request.java | 2 +- .../GetJobChunkSpectraS3Response.java | 2 +- ...dyForClientProcessingSpectraS3Request.java | 2 +- ...yForClientProcessingSpectraS3Response.java | 2 +- .../spectrads3/GetJobSpectraS3Request.java | 2 +- .../spectrads3/GetJobSpectraS3Response.java | 2 +- .../GetJobToReplicateSpectraS3Request.java | 2 +- .../GetJobToReplicateSpectraS3Response.java | 2 +- .../spectrads3/GetJobsSpectraS3Request.java | 2 +- .../spectrads3/GetJobsSpectraS3Response.java | 2 +- .../spectrads3/GetNodeSpectraS3Request.java | 2 +- .../spectrads3/GetNodeSpectraS3Response.java | 2 +- .../spectrads3/GetNodesSpectraS3Request.java | 2 +- .../spectrads3/GetNodesSpectraS3Response.java | 2 +- .../GetObjectDetailsSpectraS3Request.java | 2 +- .../GetObjectDetailsSpectraS3Response.java | 2 +- .../GetObjectsDetailsSpectraS3Request.java | 2 +- .../GetObjectsDetailsSpectraS3Response.java | 2 +- ...bjectsWithFullDetailsSpectraS3Request.java | 2 +- ...jectsWithFullDetailsSpectraS3Response.java | 2 +- ...alPlacementForObjectsSpectraS3Request.java | 2 +- ...lPlacementForObjectsSpectraS3Response.java | 2 +- ...bjectsWithFullDetailsSpectraS3Request.java | 2 +- ...jectsWithFullDetailsSpectraS3Response.java | 2 +- .../GetPoolFailuresSpectraS3Request.java | 2 +- .../GetPoolFailuresSpectraS3Response.java | 2 +- .../GetPoolPartitionSpectraS3Request.java | 2 +- .../GetPoolPartitionSpectraS3Response.java | 2 +- .../GetPoolPartitionsSpectraS3Request.java | 2 +- .../GetPoolPartitionsSpectraS3Response.java | 2 +- .../spectrads3/GetPoolSpectraS3Request.java | 2 +- .../spectrads3/GetPoolSpectraS3Response.java | 2 +- .../spectrads3/GetPoolsSpectraS3Request.java | 2 +- .../spectrads3/GetPoolsSpectraS3Response.java | 2 +- ...S3DataReplicationRuleSpectraS3Request.java | 2 +- ...3DataReplicationRuleSpectraS3Response.java | 2 +- ...3DataReplicationRulesSpectraS3Request.java | 2 +- ...DataReplicationRulesSpectraS3Response.java | 2 +- ...etS3TargetBucketNamesSpectraS3Request.java | 2 +- ...tS3TargetBucketNamesSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- .../GetS3TargetFailuresSpectraS3Request.java | 2 +- .../GetS3TargetFailuresSpectraS3Response.java | 2 +- ...3TargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- ...TargetReadPreferencesSpectraS3Request.java | 2 +- ...argetReadPreferencesSpectraS3Response.java | 2 +- .../GetS3TargetSpectraS3Request.java | 2 +- .../GetS3TargetSpectraS3Response.java | 2 +- .../GetS3TargetsSpectraS3Request.java | 2 +- .../GetS3TargetsSpectraS3Response.java | 2 +- ...DomainCapacitySummarySpectraS3Request.java | 2 +- ...omainCapacitySummarySpectraS3Response.java | 2 +- ...StorageDomainFailuresSpectraS3Request.java | 2 +- ...torageDomainFailuresSpectraS3Response.java | 2 +- ...etStorageDomainMemberSpectraS3Request.java | 2 +- ...tStorageDomainMemberSpectraS3Response.java | 2 +- ...tStorageDomainMembersSpectraS3Request.java | 2 +- ...StorageDomainMembersSpectraS3Response.java | 2 +- .../GetStorageDomainSpectraS3Request.java | 2 +- .../GetStorageDomainSpectraS3Response.java | 2 +- .../GetStorageDomainsSpectraS3Request.java | 2 +- .../GetStorageDomainsSpectraS3Response.java | 2 +- ...spectBlobAzureTargetsSpectraS3Request.java | 2 +- ...pectBlobAzureTargetsSpectraS3Response.java | 2 +- ...SuspectBlobDs3TargetsSpectraS3Request.java | 2 +- ...uspectBlobDs3TargetsSpectraS3Response.java | 2 +- .../GetSuspectBlobPoolsSpectraS3Request.java | 2 +- .../GetSuspectBlobPoolsSpectraS3Response.java | 2 +- ...tSuspectBlobS3TargetsSpectraS3Request.java | 2 +- ...SuspectBlobS3TargetsSpectraS3Response.java | 2 +- .../GetSuspectBlobTapesSpectraS3Request.java | 2 +- .../GetSuspectBlobTapesSpectraS3Response.java | 2 +- .../GetSuspectBucketsSpectraS3Request.java | 2 +- .../GetSuspectBucketsSpectraS3Response.java | 2 +- .../GetSuspectObjectsSpectraS3Request.java | 2 +- .../GetSuspectObjectsSpectraS3Response.java | 2 +- ...bjectsWithFullDetailsSpectraS3Request.java | 2 +- ...jectsWithFullDetailsSpectraS3Response.java | 2 +- ...SystemCapacitySummarySpectraS3Request.java | 2 +- ...ystemCapacitySummarySpectraS3Response.java | 2 +- .../GetSystemFailuresSpectraS3Request.java | 2 +- .../GetSystemFailuresSpectraS3Response.java | 2 +- .../GetSystemInformationSpectraS3Request.java | 2 +- ...GetSystemInformationSpectraS3Response.java | 2 +- ...tTapeDensityDirectiveSpectraS3Request.java | 2 +- ...TapeDensityDirectiveSpectraS3Response.java | 2 +- ...TapeDensityDirectivesSpectraS3Request.java | 2 +- ...apeDensityDirectivesSpectraS3Response.java | 2 +- .../GetTapeDriveSpectraS3Request.java | 2 +- .../GetTapeDriveSpectraS3Response.java | 2 +- .../GetTapeDrivesSpectraS3Request.java | 2 +- .../GetTapeDrivesSpectraS3Response.java | 2 +- .../GetTapeFailuresSpectraS3Request.java | 2 +- .../GetTapeFailuresSpectraS3Response.java | 2 +- .../GetTapeLibrariesSpectraS3Request.java | 2 +- .../GetTapeLibrariesSpectraS3Response.java | 2 +- .../GetTapeLibrarySpectraS3Request.java | 2 +- .../GetTapeLibrarySpectraS3Response.java | 2 +- ...TapePartitionFailuresSpectraS3Request.java | 2 +- ...apePartitionFailuresSpectraS3Response.java | 2 +- .../GetTapePartitionSpectraS3Request.java | 2 +- .../GetTapePartitionSpectraS3Response.java | 2 +- ...titionWithFullDetailsSpectraS3Request.java | 2 +- ...itionWithFullDetailsSpectraS3Response.java | 2 +- .../GetTapePartitionsSpectraS3Request.java | 2 +- .../GetTapePartitionsSpectraS3Response.java | 2 +- ...itionsWithFullDetailsSpectraS3Request.java | 2 +- ...tionsWithFullDetailsSpectraS3Response.java | 2 +- .../spectrads3/GetTapeSpectraS3Request.java | 2 +- .../spectrads3/GetTapeSpectraS3Response.java | 2 +- .../spectrads3/GetTapesSpectraS3Request.java | 2 +- .../spectrads3/GetTapesSpectraS3Response.java | 2 +- .../spectrads3/GetUserSpectraS3Request.java | 2 +- .../spectrads3/GetUserSpectraS3Response.java | 2 +- .../spectrads3/GetUsersSpectraS3Request.java | 2 +- .../spectrads3/GetUsersSpectraS3Response.java | 2 +- .../ImportAllPoolsSpectraS3Request.java | 2 +- .../ImportAllPoolsSpectraS3Response.java | 2 +- .../ImportAllTapesSpectraS3Request.java | 2 +- .../ImportAllTapesSpectraS3Response.java | 2 +- .../ImportAzureTargetSpectraS3Request.java | 2 +- .../ImportAzureTargetSpectraS3Response.java | 2 +- .../ImportPoolSpectraS3Request.java | 2 +- .../ImportPoolSpectraS3Response.java | 2 +- .../ImportS3TargetSpectraS3Request.java | 2 +- .../ImportS3TargetSpectraS3Response.java | 2 +- .../ImportTapeSpectraS3Request.java | 2 +- .../ImportTapeSpectraS3Response.java | 2 +- .../InspectAllTapesSpectraS3Request.java | 2 +- .../InspectAllTapesSpectraS3Response.java | 2 +- .../InspectTapeSpectraS3Request.java | 2 +- .../InspectTapeSpectraS3Response.java | 2 +- ...zureTargetsAsDegradedSpectraS3Request.java | 2 +- ...ureTargetsAsDegradedSpectraS3Response.java | 2 +- ...bDs3TargetsAsDegradedSpectraS3Request.java | 2 +- ...Ds3TargetsAsDegradedSpectraS3Response.java | 2 +- ...ctBlobPoolsAsDegradedSpectraS3Request.java | 2 +- ...tBlobPoolsAsDegradedSpectraS3Response.java | 2 +- ...obS3TargetsAsDegradedSpectraS3Request.java | 2 +- ...bS3TargetsAsDegradedSpectraS3Response.java | 2 +- ...ctBlobTapesAsDegradedSpectraS3Request.java | 2 +- ...tBlobTapesAsDegradedSpectraS3Response.java | 2 +- .../ModifyActiveJobSpectraS3Request.java | 2 +- .../ModifyActiveJobSpectraS3Response.java | 2 +- ...ModifyAllAzureTargetsSpectraS3Request.java | 2 +- ...odifyAllAzureTargetsSpectraS3Response.java | 2 +- .../ModifyAllDs3TargetsSpectraS3Request.java | 2 +- .../ModifyAllDs3TargetsSpectraS3Response.java | 2 +- .../ModifyAllPoolsSpectraS3Request.java | 2 +- .../ModifyAllPoolsSpectraS3Response.java | 2 +- .../ModifyAllS3TargetsSpectraS3Request.java | 2 +- .../ModifyAllS3TargetsSpectraS3Response.java | 2 +- ...difyAllTapePartitionsSpectraS3Request.java | 2 +- ...ifyAllTapePartitionsSpectraS3Response.java | 2 +- ...reDataReplicationRuleSpectraS3Request.java | 2 +- ...eDataReplicationRuleSpectraS3Response.java | 2 +- .../ModifyAzureTargetSpectraS3Request.java | 2 +- .../ModifyAzureTargetSpectraS3Response.java | 2 +- .../ModifyBucketSpectraS3Request.java | 2 +- .../ModifyBucketSpectraS3Response.java | 2 +- ...ModifyCacheFilesystemSpectraS3Request.java | 2 +- ...odifyCacheFilesystemSpectraS3Response.java | 2 +- ...ModifyDataPathBackendSpectraS3Request.java | 2 +- ...odifyDataPathBackendSpectraS3Response.java | 2 +- ...fyDataPersistenceRuleSpectraS3Request.java | 2 +- ...yDataPersistenceRuleSpectraS3Response.java | 2 +- .../ModifyDataPolicySpectraS3Request.java | 2 +- .../ModifyDataPolicySpectraS3Response.java | 2 +- ...s3DataReplicationRuleSpectraS3Request.java | 2 +- ...3DataReplicationRuleSpectraS3Response.java | 2 +- .../ModifyDs3TargetSpectraS3Request.java | 2 +- .../ModifyDs3TargetSpectraS3Response.java | 2 +- .../ModifyGroupSpectraS3Request.java | 2 +- .../ModifyGroupSpectraS3Response.java | 2 +- .../spectrads3/ModifyJobSpectraS3Request.java | 2 +- .../ModifyJobSpectraS3Response.java | 2 +- .../ModifyNodeSpectraS3Request.java | 2 +- .../ModifyNodeSpectraS3Response.java | 2 +- .../ModifyPoolPartitionSpectraS3Request.java | 2 +- .../ModifyPoolPartitionSpectraS3Response.java | 2 +- .../ModifyPoolSpectraS3Request.java | 2 +- .../ModifyPoolSpectraS3Response.java | 2 +- ...S3DataReplicationRuleSpectraS3Request.java | 2 +- ...3DataReplicationRuleSpectraS3Response.java | 2 +- .../ModifyS3TargetSpectraS3Request.java | 2 +- .../ModifyS3TargetSpectraS3Response.java | 2 +- ...fyStorageDomainMemberSpectraS3Request.java | 2 +- ...yStorageDomainMemberSpectraS3Response.java | 2 +- .../ModifyStorageDomainSpectraS3Request.java | 2 +- .../ModifyStorageDomainSpectraS3Response.java | 2 +- .../ModifyTapePartitionSpectraS3Request.java | 2 +- .../ModifyTapePartitionSpectraS3Response.java | 2 +- .../ModifyTapeSpectraS3Request.java | 2 +- .../ModifyTapeSpectraS3Response.java | 2 +- .../ModifyUserSpectraS3Request.java | 2 +- .../ModifyUserSpectraS3Response.java | 2 +- .../OnlineAllTapesSpectraS3Request.java | 2 +- .../OnlineAllTapesSpectraS3Response.java | 2 +- .../OnlineTapeSpectraS3Request.java | 2 +- .../OnlineTapeSpectraS3Response.java | 2 +- ...ckRegisteredDs3TargetSpectraS3Request.java | 2 +- ...kRegisteredDs3TargetSpectraS3Response.java | 2 +- ...reDataReplicationRuleSpectraS3Request.java | 2 +- ...eDataReplicationRuleSpectraS3Response.java | 2 +- ...AzureTargetBucketNameSpectraS3Request.java | 2 +- ...zureTargetBucketNameSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...eTargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- .../PutBucketAclForGroupSpectraS3Request.java | 2 +- ...PutBucketAclForGroupSpectraS3Response.java | 2 +- .../PutBucketAclForUserSpectraS3Request.java | 2 +- .../PutBucketAclForUserSpectraS3Response.java | 2 +- .../spectrads3/PutBucketSpectraS3Request.java | 2 +- .../PutBucketSpectraS3Response.java | 2 +- .../PutBulkJobSpectraS3Request.java | 2 +- .../PutBulkJobSpectraS3Response.java | 2 +- ...utDataPersistenceRuleSpectraS3Request.java | 2 +- ...tDataPersistenceRuleSpectraS3Response.java | 2 +- ...DataPolicyAclForGroupSpectraS3Request.java | 2 +- ...ataPolicyAclForGroupSpectraS3Response.java | 2 +- ...tDataPolicyAclForUserSpectraS3Request.java | 2 +- ...DataPolicyAclForUserSpectraS3Response.java | 2 +- .../PutDataPolicySpectraS3Request.java | 2 +- .../PutDataPolicySpectraS3Response.java | 2 +- ...s3DataReplicationRuleSpectraS3Request.java | 2 +- ...3DataReplicationRuleSpectraS3Response.java | 2 +- ...3TargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- ...obalBucketAclForGroupSpectraS3Request.java | 2 +- ...balBucketAclForGroupSpectraS3Response.java | 2 +- ...lobalBucketAclForUserSpectraS3Request.java | 2 +- ...obalBucketAclForUserSpectraS3Response.java | 2 +- ...DataPolicyAclForGroupSpectraS3Request.java | 2 +- ...ataPolicyAclForGroupSpectraS3Response.java | 2 +- ...lDataPolicyAclForUserSpectraS3Request.java | 2 +- ...DataPolicyAclForUserSpectraS3Response.java | 2 +- .../PutGroupGroupMemberSpectraS3Request.java | 2 +- .../PutGroupGroupMemberSpectraS3Response.java | 2 +- .../spectrads3/PutGroupSpectraS3Request.java | 2 +- .../spectrads3/PutGroupSpectraS3Response.java | 2 +- .../PutPoolPartitionSpectraS3Request.java | 2 +- .../PutPoolPartitionSpectraS3Response.java | 2 +- ...olStorageDomainMemberSpectraS3Request.java | 2 +- ...lStorageDomainMemberSpectraS3Response.java | 2 +- ...S3DataReplicationRuleSpectraS3Request.java | 2 +- ...3DataReplicationRuleSpectraS3Response.java | 2 +- ...PutS3TargetBucketNameSpectraS3Request.java | 2 +- ...utS3TargetBucketNameSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...3TargetReadPreferenceSpectraS3Request.java | 2 +- ...TargetReadPreferenceSpectraS3Response.java | 2 +- .../PutStorageDomainSpectraS3Request.java | 2 +- .../PutStorageDomainSpectraS3Response.java | 2 +- ...tTapeDensityDirectiveSpectraS3Request.java | 2 +- ...TapeDensityDirectiveSpectraS3Response.java | 2 +- ...peStorageDomainMemberSpectraS3Request.java | 2 +- ...eStorageDomainMemberSpectraS3Response.java | 2 +- .../PutUserGroupMemberSpectraS3Request.java | 2 +- .../PutUserGroupMemberSpectraS3Response.java | 2 +- .../RawImportAllTapesSpectraS3Request.java | 2 +- .../RawImportAllTapesSpectraS3Response.java | 2 +- .../RawImportTapeSpectraS3Request.java | 2 +- .../RawImportTapeSpectraS3Response.java | 2 +- ...generateUserSecretKeySpectraS3Request.java | 2 +- ...enerateUserSecretKeySpectraS3Response.java | 2 +- .../RegisterAzureTargetSpectraS3Request.java | 2 +- .../RegisterAzureTargetSpectraS3Response.java | 2 +- .../RegisterDs3TargetSpectraS3Request.java | 2 +- .../RegisterDs3TargetSpectraS3Response.java | 2 +- .../RegisterS3TargetSpectraS3Request.java | 2 +- .../RegisterS3TargetSpectraS3Response.java | 2 +- .../ReplicatePutJobSpectraS3Request.java | 2 +- .../ReplicatePutJobSpectraS3Response.java | 2 +- ...setInstanceIdentifierSpectraS3Request.java | 2 +- ...etInstanceIdentifierSpectraS3Response.java | 2 +- .../TruncateActiveJobSpectraS3Request.java | 2 +- .../TruncateActiveJobSpectraS3Response.java | 2 +- ...TruncateAllActiveJobsSpectraS3Request.java | 2 +- ...runcateAllActiveJobsSpectraS3Response.java | 2 +- .../TruncateAllJobsSpectraS3Request.java | 2 +- .../TruncateAllJobsSpectraS3Response.java | 2 +- .../TruncateJobSpectraS3Request.java | 2 +- .../TruncateJobSpectraS3Response.java | 2 +- .../VerifyAllPoolsSpectraS3Request.java | 2 +- .../VerifyAllPoolsSpectraS3Response.java | 2 +- .../VerifyAllTapesSpectraS3Request.java | 2 +- .../VerifyAllTapesSpectraS3Response.java | 2 +- .../VerifyAzureTargetSpectraS3Request.java | 2 +- .../VerifyAzureTargetSpectraS3Response.java | 2 +- .../VerifyBulkJobSpectraS3Request.java | 2 +- .../VerifyBulkJobSpectraS3Response.java | 2 +- .../VerifyDs3TargetSpectraS3Request.java | 2 +- .../VerifyDs3TargetSpectraS3Response.java | 2 +- ...alPlacementForObjectsSpectraS3Request.java | 2 +- ...lPlacementForObjectsSpectraS3Response.java | 2 +- ...bjectsWithFullDetailsSpectraS3Request.java | 2 +- ...jectsWithFullDetailsSpectraS3Response.java | 2 +- .../VerifyPoolSpectraS3Request.java | 2 +- .../VerifyPoolSpectraS3Response.java | 2 +- .../VerifyS3TargetSpectraS3Request.java | 2 +- .../VerifyS3TargetSpectraS3Response.java | 2 +- ...ifySafeToCreatePutJobSpectraS3Request.java | 2 +- ...fySafeToCreatePutJobSpectraS3Response.java | 2 +- .../VerifySystemHealthSpectraS3Request.java | 2 +- .../VerifySystemHealthSpectraS3Response.java | 2 +- .../VerifyTapeSpectraS3Request.java | 2 +- .../VerifyTapeSpectraS3Response.java | 2 +- ...fyUserIsMemberOfGroupSpectraS3Request.java | 2 +- ...yUserIsMemberOfGroupSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ficationRegistrationsSpectraS3Request.java | 2 +- ...icationRegistrationsSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- ...ificationRegistrationSpectraS3Request.java | 2 +- ...ficationRegistrationSpectraS3Response.java | 2 +- .../ContentLengthNotMatchException.java | 2 +- .../exceptions/Ds3NoMoreRetriesException.java | 2 +- ...FolderNameMissingTrailingForwardSlash.java | 2 +- .../exceptions/InvalidCertificate.java | 2 +- .../RetryAfterExpectedException.java | 2 +- ...bleToConvertToCommonPrefixesException.java | 2 +- .../UnableToConvertToContentsException.java | 2 +- .../ds3client/helpers/ChecksumFunction.java | 2 +- .../ds3client/helpers/ChecksumListener.java | 2 +- .../helpers/DataTransferredListener.java | 2 +- .../ds3client/helpers/Ds3ClientHelpers.java | 2 +- .../helpers/Ds3ClientHelpersImpl.java | 2 +- .../helpers/ExceptionClassifier.java | 2 +- .../ds3client/helpers/FileObjectGetter.java | 2 +- .../ds3client/helpers/FileObjectPutter.java | 2 +- .../ds3client/helpers/FileSystemHelper.java | 2 +- .../helpers/FileSystemHelperImpl.java | 2 +- .../ds3client/helpers/FolderNameFilter.java | 2 +- .../ds3client/helpers/JobImpl.java | 2 +- .../ds3client/helpers/JobPart.java | 2 +- .../ds3client/helpers/JobPartTracker.java | 2 +- .../helpers/JobPartTrackerFactory.java | 2 +- .../ds3client/helpers/JobPartTrackerImpl.java | 2 +- .../helpers/JobRecoveryException.java | 2 +- .../JobRecoveryNotActiveException.java | 2 +- .../helpers/JobRecoveryTypeException.java | 2 +- .../ds3client/helpers/JobState.java | 2 +- .../helpers/ObjectChannelBuilderLogger.java | 2 +- .../helpers/ObjectCompletedListener.java | 2 +- .../ds3client/helpers/ObjectPart.java | 2 +- .../helpers/ObjectPartComparator.java | 2 +- .../ds3client/helpers/ObjectPartTracker.java | 2 +- .../helpers/ObjectPartTrackerImpl.java | 2 +- .../ObjectStorageSpaceVerificationResult.java | 2 +- .../ds3client/helpers/ReadJobImpl.java | 2 +- .../helpers/RecoverableIOException.java | 2 +- .../helpers/TruncateNotAllowedException.java | 2 +- .../helpers/UnrecoverableIOException.java | 2 +- .../helpers/WaitingForChunksListener.java | 2 +- .../ds3client/helpers/WriteJobImpl.java | 2 +- .../IoLoggingChannelBuilder.java | 2 +- .../ObjectInputStreamBuilder.java | 2 +- .../ObjectOutputStreamBuilder.java | 2 +- .../PrefixAdderObjectChannelBuilder.java | 2 +- .../PrefixRemoverObjectChannelBuilder.java | 2 +- .../ReadOnlySeekableByteChannel.java | 2 +- .../WriteOnlySeekableByteChannel.java | 2 +- .../helpers/channels/BlobComparator.java | 2 +- .../channels/RangedSeekableByteChannel.java | 2 +- .../channels/WindowedChannelFactory.java | 2 +- .../channels/WindowedSeekableByteChannel.java | 2 +- .../helpers/events/ConcurrentEventRunner.java | 2 +- .../ds3client/helpers/events/EventRunner.java | 2 +- .../helpers/events/MetadataEvent.java | 20 ++++++++--------- .../helpers/events/SameThreadEventRunner.java | 2 +- .../helpers/options/ReadJobOptions.java | 2 +- .../helpers/options/WriteJobOptions.java | 2 +- .../ds3client/helpers/package-info.java | 2 +- .../helpers/pagination/FileSystemKey.java | 2 +- .../pagination/GetBucketKeyLoader.java | 2 +- .../pagination/GetBucketKeyLoaderFactory.java | 2 +- .../pagination/GetBucketLoaderFactory.java | 2 +- .../GetObjectsFullDetailsLoader.java | 2 +- .../GetObjectsFullDetailsLoaderFactory.java | 2 +- .../helpers/pagination/PaginatingCommand.java | 2 +- .../pagination/SpectraS3PaginationLoader.java | 2 +- ...etObjectsFullDetailsPaginatingCommand.java | 2 +- .../helpers/pagination/package-info.java | 2 +- .../helpers/strategy/StrategyUtils.java | 2 +- .../blobstrategy/AbstractBlobStrategy.java | 20 ++++++++--------- ...ckPearlChunkAttemptRetryDelayBehavior.java | 20 ++++++++--------- .../strategy/blobstrategy/BlobStrategy.java | 20 ++++++++--------- .../blobstrategy/BlobStrategyMaker.java | 20 ++++++++--------- .../ChunkAttemptRetryBehavior.java | 20 ++++++++--------- .../ChunkAttemptRetryDelayBehavior.java | 20 ++++++++--------- ...DefinedChunkAttemptRetryDelayBehavior.java | 20 ++++++++--------- ...inueForeverChunkAttemptsRetryBehavior.java | 20 ++++++++--------- .../GetSequentialBlobStrategy.java | 2 +- .../MaxChunkAttemptsRetryBehavior.java | 20 ++++++++--------- .../PutSequentialBlobStrategy.java | 2 +- .../channelstrategy/ChannelPreparable.java | 20 ++++++++--------- .../channelstrategy/ChannelStrategy.java | 20 ++++++++--------- .../NullChannelPreparable.java | 20 ++++++++--------- .../RandomAccessChannelStrategy.java | 20 ++++++++--------- .../SeekableByteChannelDecorator.java | 20 ++++++++--------- .../SequentialChannelStrategy.java | 20 ++++++++--------- .../SequentialFileReaderChannelStrategy.java | 20 ++++++++--------- .../SequentialFileWriterChannelStrategy.java | 20 ++++++++--------- .../TruncatingChannelPreparable.java | 20 ++++++++--------- .../transferstrategy/AbstractObserver.java | 20 ++++++++--------- .../AbstractTransferStrategy.java | 20 ++++++++--------- .../BlobTransferredEventObserver.java | 20 ++++++++--------- .../transferstrategy/ChecksumEvent.java | 20 ++++++++--------- .../transferstrategy/ChecksumObserver.java | 20 ++++++++--------- ...ContinueForeverTransferRetryDecorator.java | 20 ++++++++--------- .../DataTransferredObserver.java | 20 ++++++++--------- .../transferstrategy/EventDispatcher.java | 20 ++++++++--------- .../transferstrategy/EventDispatcherImpl.java | 20 ++++++++--------- .../FailureEventObserver.java | 20 ++++++++--------- .../GetJobNetworkFailureRetryDecorator.java | 20 ++++++++--------- .../GetJobPartialBlobTransferMethod.java | 20 ++++++++--------- .../GetJobTransferMethod.java | 20 ++++++++--------- ...MaxNumObjectTransferAttemptsDecorator.java | 20 ++++++++--------- .../MetaDataReceivedObserver.java | 20 ++++++++--------- .../MultiThreadedTransferStrategy.java | 20 ++++++++--------- .../ObjectCompletedObserver.java | 20 ++++++++--------- .../strategy/transferstrategy/Observer.java | 20 ++++++++--------- .../PutJobTransferMethod.java | 20 ++++++++--------- .../transferstrategy/RangeHelper.java | 20 ++++++++--------- .../SingleThreadedTransferStrategy.java | 20 ++++++++--------- .../transferstrategy/TransferMethod.java | 20 ++++++++--------- .../transferstrategy/TransferMethodMaker.java | 20 ++++++++--------- .../TransferRetryDecorator.java | 20 ++++++++--------- .../transferstrategy/TransferStrategy.java | 20 ++++++++--------- .../TransferStrategyBuilder.java | 20 ++++++++--------- .../transferstrategy/UpdateStrategy.java | 20 ++++++++--------- .../WaitingForChunksObserver.java | 20 ++++++++--------- .../helpers/util/PartialObjectHelpers.java | 2 +- .../ds3client/models/ActiveJob.java | 2 +- .../ds3client/models/ActiveJobList.java | 2 +- .../ds3client/models/AutoInspectMode.java | 2 +- .../models/AzureDataReplicationRule.java | 2 +- .../models/AzureDataReplicationRuleList.java | 2 +- .../ds3client/models/AzureTarget.java | 2 +- .../models/AzureTargetBucketName.java | 2 +- .../models/AzureTargetBucketNameList.java | 2 +- .../ds3client/models/AzureTargetFailure.java | 2 +- .../models/AzureTargetFailureList.java | 2 +- ...TargetFailureNotificationRegistration.java | 2 +- ...etFailureNotificationRegistrationList.java | 2 +- .../ds3client/models/AzureTargetList.java | 2 +- .../models/AzureTargetReadPreference.java | 2 +- .../models/AzureTargetReadPreferenceList.java | 2 +- .../spectralogic/ds3client/models/Blob.java | 2 +- .../models/BlobStoreTaskInformation.java | 2 +- .../ds3client/models/BlobStoreTaskState.java | 2 +- .../models/BlobStoreTasksInformation.java | 2 +- .../spectralogic/ds3client/models/Bucket.java | 2 +- .../ds3client/models/BucketAcl.java | 2 +- .../ds3client/models/BucketAclList.java | 2 +- .../ds3client/models/BucketAclPermission.java | 2 +- .../ds3client/models/BucketDetails.java | 2 +- .../ds3client/models/BucketList.java | 2 +- .../ds3client/models/BuildInformation.java | 2 +- .../ds3client/models/BulkObject.java | 2 +- .../ds3client/models/BulkObjectList.java | 2 +- .../models/CacheEntryInformation.java | 2 +- .../ds3client/models/CacheEntryState.java | 2 +- .../ds3client/models/CacheFilesystem.java | 2 +- .../models/CacheFilesystemInformation.java | 2 +- .../ds3client/models/CacheFilesystemList.java | 2 +- .../ds3client/models/CacheInformation.java | 2 +- .../ds3client/models/CanceledJob.java | 2 +- .../ds3client/models/CanceledJobList.java | 2 +- .../models/CapacitySummaryContainer.java | 2 +- .../ds3client/models/ChecksumType.java | 2 +- .../models/CompleteMultipartUploadResult.java | 2 +- .../ds3client/models/CompletedJob.java | 2 +- .../ds3client/models/CompletedJobList.java | 2 +- .../ds3client/models/Contents.java | 2 +- .../ds3client/models/DataIsolationLevel.java | 2 +- .../ds3client/models/DataPathBackend.java | 2 +- .../ds3client/models/DataPersistenceRule.java | 2 +- .../models/DataPersistenceRuleList.java | 2 +- .../models/DataPersistenceRuleType.java | 2 +- .../models/DataPlacementRuleState.java | 2 +- .../ds3client/models/DataPolicy.java | 2 +- .../ds3client/models/DataPolicyAcl.java | 2 +- .../ds3client/models/DataPolicyAclList.java | 2 +- .../ds3client/models/DataPolicyList.java | 2 +- .../models/DataReplicationRuleType.java | 2 +- .../models/DatabasePhysicalSpaceState.java | 2 +- .../ds3client/models/DegradedBlob.java | 2 +- .../ds3client/models/DegradedBlobList.java | 2 +- .../ds3client/models/DeleteObjectError.java | 2 +- .../ds3client/models/DeleteResult.java | 2 +- .../ds3client/models/DetailedS3Object.java | 2 +- .../models/DetailedS3ObjectList.java | 2 +- .../ds3client/models/DetailedTapeFailure.java | 2 +- .../models/DetailedTapeFailureList.java | 2 +- .../models/DetailedTapePartition.java | 2 +- .../models/Ds3DataReplicationRule.java | 2 +- .../models/Ds3DataReplicationRuleList.java | 2 +- .../ds3client/models/Ds3Target.java | 2 +- .../Ds3TargetAccessControlReplication.java | 2 +- .../ds3client/models/Ds3TargetFailure.java | 2 +- .../models/Ds3TargetFailureList.java | 2 +- ...TargetFailureNotificationRegistration.java | 2 +- ...etFailureNotificationRegistrationList.java | 2 +- .../ds3client/models/Ds3TargetList.java | 2 +- .../models/Ds3TargetReadPreference.java | 2 +- .../models/Ds3TargetReadPreferenceList.java | 2 +- .../spectralogic/ds3client/models/Error.java | 2 +- .../ds3client/models/FeatureKey.java | 2 +- .../ds3client/models/FeatureKeyList.java | 2 +- .../ds3client/models/FeatureKeyType.java | 2 +- .../spectralogic/ds3client/models/Group.java | 2 +- .../ds3client/models/GroupList.java | 2 +- .../ds3client/models/GroupMember.java | 2 +- .../ds3client/models/GroupMemberList.java | 2 +- .../models/HealthVerificationResult.java | 2 +- .../models/HttpResponseFormatType.java | 2 +- .../models/ImportConflictResolutionMode.java | 2 +- .../models/ImportExportConfiguration.java | 2 +- .../models/InitiateMultipartUploadResult.java | 2 +- .../spectralogic/ds3client/models/Job.java | 2 +- .../ds3client/models/JobChunk.java | 2 +- .../models/JobChunkBlobStoreState.java | 2 +- ...obChunkClientProcessingOrderGuarantee.java | 2 +- .../JobCompletedNotificationRegistration.java | 2 +- ...CompletedNotificationRegistrationList.java | 2 +- .../JobCreatedNotificationRegistration.java | 2 +- ...obCreatedNotificationRegistrationList.java | 2 +- ...reationFailedNotificationRegistration.java | 2 +- ...ionFailedNotificationRegistrationList.java | 2 +- .../ds3client/models/JobList.java | 2 +- .../ds3client/models/JobNode.java | 2 +- .../ds3client/models/JobRequestType.java | 2 +- .../ds3client/models/JobStatus.java | 2 +- .../models/ListAllMyBucketsResult.java | 2 +- .../ds3client/models/ListBucketResult.java | 2 +- .../models/ListMultiPartUploadsResult.java | 2 +- .../ds3client/models/ListPartsResult.java | 2 +- .../ds3client/models/LtfsFileNamingMode.java | 2 +- .../ds3client/models/MasterObjectList.java | 2 +- .../ds3client/models/MultiPartUpload.java | 2 +- .../ds3client/models/MultiPartUploadPart.java | 2 +- .../models/NamedDetailedTapePartition.java | 2 +- .../NamedDetailedTapePartitionList.java | 2 +- .../models/NamingConventionType.java | 2 +- .../spectralogic/ds3client/models/Node.java | 2 +- .../ds3client/models/NodeList.java | 2 +- .../ds3client/models/Objects.java | 2 +- .../ds3client/models/PhysicalPlacement.java | 2 +- .../spectralogic/ds3client/models/Pool.java | 2 +- .../ds3client/models/PoolFailure.java | 2 +- .../ds3client/models/PoolFailureList.java | 2 +- .../PoolFailureNotificationRegistration.java | 2 +- ...olFailureNotificationRegistrationList.java | 2 +- .../ds3client/models/PoolFailureType.java | 2 +- .../ds3client/models/PoolHealth.java | 2 +- .../ds3client/models/PoolList.java | 2 +- .../ds3client/models/PoolPartition.java | 2 +- .../ds3client/models/PoolPartitionList.java | 2 +- .../ds3client/models/PoolState.java | 2 +- .../ds3client/models/PoolType.java | 2 +- .../ds3client/models/Priority.java | 2 +- .../ds3client/models/Quiesced.java | 2 +- .../ds3client/models/RequestType.java | 2 +- .../ds3client/models/RestOperationType.java | 2 +- .../models/S3DataReplicationRule.java | 2 +- .../models/S3DataReplicationRuleList.java | 2 +- .../models/S3InitialDataPlacementPolicy.java | 2 +- .../ds3client/models/S3Object.java | 2 +- ...3ObjectCachedNotificationRegistration.java | 2 +- ...ectCachedNotificationRegistrationList.java | 2 +- .../ds3client/models/S3ObjectList.java | 2 +- .../S3ObjectLostNotificationRegistration.java | 2 +- ...bjectLostNotificationRegistrationList.java | 2 +- ...jectPersistedNotificationRegistration.java | 2 +- ...PersistedNotificationRegistrationList.java | 2 +- .../ds3client/models/S3ObjectToDelete.java | 2 +- .../ds3client/models/S3ObjectType.java | 2 +- .../ds3client/models/S3Region.java | 2 +- .../ds3client/models/S3Target.java | 2 +- .../ds3client/models/S3TargetBucketName.java | 2 +- .../models/S3TargetBucketNameList.java | 2 +- .../ds3client/models/S3TargetFailure.java | 2 +- .../ds3client/models/S3TargetFailureList.java | 2 +- ...TargetFailureNotificationRegistration.java | 2 +- ...etFailureNotificationRegistrationList.java | 2 +- .../ds3client/models/S3TargetList.java | 2 +- .../models/S3TargetReadPreference.java | 2 +- .../models/S3TargetReadPreferenceList.java | 2 +- .../ds3client/models/SpectraUser.java | 2 +- .../ds3client/models/SpectraUserList.java | 2 +- .../ds3client/models/StorageDomain.java | 2 +- .../models/StorageDomainCapacitySummary.java | 2 +- .../models/StorageDomainFailure.java | 2 +- .../models/StorageDomainFailureList.java | 2 +- ...DomainFailureNotificationRegistration.java | 2 +- ...inFailureNotificationRegistrationList.java | 2 +- .../models/StorageDomainFailureType.java | 2 +- .../ds3client/models/StorageDomainList.java | 2 +- .../ds3client/models/StorageDomainMember.java | 2 +- .../models/StorageDomainMemberList.java | 2 +- .../models/StorageDomainMemberState.java | 2 +- .../models/SuspectBlobAzureTarget.java | 2 +- .../models/SuspectBlobAzureTargetList.java | 2 +- .../models/SuspectBlobDs3Target.java | 2 +- .../models/SuspectBlobDs3TargetList.java | 2 +- .../ds3client/models/SuspectBlobPool.java | 2 +- .../ds3client/models/SuspectBlobPoolList.java | 2 +- .../ds3client/models/SuspectBlobS3Target.java | 2 +- .../models/SuspectBlobS3TargetList.java | 2 +- .../ds3client/models/SuspectBlobTape.java | 2 +- .../ds3client/models/SuspectBlobTapeList.java | 2 +- .../ds3client/models/SystemFailure.java | 2 +- .../ds3client/models/SystemFailureList.java | 2 +- ...SystemFailureNotificationRegistration.java | 2 +- ...emFailureNotificationRegistrationList.java | 2 +- .../ds3client/models/SystemFailureType.java | 2 +- .../ds3client/models/SystemInformation.java | 2 +- .../spectralogic/ds3client/models/Tape.java | 2 +- .../models/TapeDensityDirective.java | 2 +- .../models/TapeDensityDirectiveList.java | 2 +- .../ds3client/models/TapeDrive.java | 2 +- .../ds3client/models/TapeDriveList.java | 2 +- .../ds3client/models/TapeDriveState.java | 2 +- .../ds3client/models/TapeDriveType.java | 2 +- .../ds3client/models/TapeFailure.java | 2 +- .../ds3client/models/TapeFailureList.java | 2 +- .../TapeFailureNotificationRegistration.java | 2 +- ...peFailureNotificationRegistrationList.java | 2 +- .../ds3client/models/TapeFailureType.java | 2 +- .../ds3client/models/TapeLibrary.java | 2 +- .../ds3client/models/TapeLibraryList.java | 2 +- .../ds3client/models/TapeList.java | 2 +- .../ds3client/models/TapePartition.java | 2 +- .../models/TapePartitionFailure.java | 2 +- .../models/TapePartitionFailureList.java | 2 +- ...titionFailureNotificationRegistration.java | 2 +- ...onFailureNotificationRegistrationList.java | 2 +- .../models/TapePartitionFailureType.java | 2 +- .../ds3client/models/TapePartitionList.java | 2 +- .../ds3client/models/TapePartitionState.java | 2 +- .../ds3client/models/TapeState.java | 2 +- .../ds3client/models/TargetFailureType.java | 2 +- .../models/TargetReadPreferenceType.java | 2 +- .../ds3client/models/TargetState.java | 2 +- .../models/UnavailableMediaUsagePolicy.java | 2 +- .../spectralogic/ds3client/models/User.java | 2 +- .../ds3client/models/VersioningLevel.java | 2 +- .../ds3client/models/WriteOptimization.java | 2 +- .../models/WritePreferenceLevel.java | 2 +- .../ds3client/models/bulk/Ds3Object.java | 2 +- .../ds3client/models/bulk/Ds3ObjectList.java | 2 +- .../models/bulk/PartialDs3Object.java | 2 +- .../ds3client/models/bulk/RequestType.java | 2 +- .../models/common/CommonPrefixes.java | 2 +- .../ds3client/models/common/Credentials.java | 2 +- .../ds3client/models/common/Range.java | 2 +- .../models/common/SignatureDetails.java | 2 +- .../ds3client/models/delete/Delete.java | 2 +- .../ds3client/models/delete/DeleteObject.java | 2 +- .../multipart/CompleteMultipartUpload.java | 2 +- .../ds3client/models/multipart/Part.java | 2 +- .../ds3client/models/package-info.java | 2 +- .../networking/ConnectionDetails.java | 2 +- .../networking/FailedRequestException.java | 2 +- .../FailedRequestUsingMgmtPortException.java | 2 +- .../FailedToGetBucketException.java | 2 +- .../HashGeneratingMatchHandler.java | 2 +- .../ds3client/networking/HeadersImpl.java | 2 +- .../ds3client/networking/HttpVerb.java | 2 +- .../ds3client/networking/NetUtils.java | 2 +- .../ds3client/networking/NetworkClient.java | 2 +- .../networking/NetworkClientImpl.java | 2 +- .../RequiresMarkSupportedException.java | 2 +- .../ResponseProcessingException.java | 2 +- .../networking/TooManyRedirectsException.java | 2 +- .../networking/TooManyRetriesException.java | 2 +- .../ds3client/networking/WebResponse.java | 2 +- .../ds3client/networking/WebResponseImpl.java | 2 +- .../ds3client/networking/package-info.java | 2 +- .../spectralogic/ds3client/package-info.java | 2 +- .../ds3client/serializer/XmlOutput.java | 2 +- .../serializer/XmlProcessingException.java | 2 +- .../ds3client/serializer/package-info.java | 2 +- .../spectralogic/ds3client/utils/Builder.java | 2 +- .../utils/ByteArraySeekableByteChannel.java | 2 +- .../ds3client/utils/DateFormatter.java | 2 +- .../utils/EmptySeekableByteChannel.java | 2 +- .../spectralogic/ds3client/utils/IOUtils.java | 2 +- .../ds3client/utils/InvalidMd5Exception.java | 2 +- .../ds3client/utils/JobUtils.java | 2 +- .../utils/LoggingSeekableByteChannel.java | 2 +- .../ds3client/utils/MultiMap.java | 2 +- .../ds3client/utils/MultiMapImpl.java | 2 +- .../utils/NotImplementedException.java | 2 +- .../ds3client/utils/PerformanceUtils.java | 2 +- .../ds3client/utils/Predicate.java | 2 +- .../ds3client/utils/PropertyUtils.java | 2 +- .../ds3client/utils/ResponseUtils.java | 2 +- .../ds3client/utils/SSLSetupException.java | 2 +- .../utils/SafeStringManipulation.java | 2 +- .../utils/SeekableByteChannelInputStream.java | 2 +- .../ds3client/utils/Signature.java | 2 +- .../utils/collections/LazyIterable.java | 2 +- .../utils/collections/StreamWrapper.java | 2 +- .../ds3client/utils/hashing/CRC32CHasher.java | 2 +- .../ds3client/utils/hashing/CRC32Hasher.java | 2 +- .../utils/hashing/ChecksumHasher.java | 2 +- .../utils/hashing/ChecksumUtils.java | 20 ++++++++--------- .../ds3client/utils/hashing/Crc32c.java | 2 +- .../ds3client/utils/hashing/DigestHasher.java | 2 +- .../ds3client/utils/hashing/Hasher.java | 2 +- .../ds3client/utils/hashing/MD5Hasher.java | 2 +- .../ds3client/utils/hashing/Md5Hash.java | 2 +- .../ds3client/utils/hashing/SHA256Hasher.java | 2 +- .../ds3client/utils/hashing/SHA512Hasher.java | 2 +- .../ds3client/utils/package-info.java | 2 +- .../ds3client/helpers/DeleteBucket.kt | 2 +- .../ds3client/helpers/FileTreeWalker.kt | 2 +- .../utils/collections/IterableExtensions.kt | 2 +- .../utils/collections/WindowedIterator.kt | 2 +- .../ds3client/ConnectionFixture.java | 2 +- .../ds3client/Ds3ClientBuilder_Test.java | 2 +- .../ds3client/Ds3Client_Test.java | 2 +- .../spectralogic/ds3client/MockNetwork.java | 2 +- .../spectralogic/ds3client/MockedHeaders.java | 2 +- .../ds3client/MockedWebResponse.java | 2 +- .../commands/GetObjectRequest_Test.java | 2 +- .../ds3client/commands/MetadataImpl_Test.java | 2 +- .../SeekableByteChannelInputStream_Test.java | 2 +- .../interfaces/RequestHeadersImpl_Test.java | 2 +- .../utils/ResponseParserUtils_Test.java | 2 +- .../spectrads3/GetPutJobToReplicate_Test.java | 2 +- .../helpers/Ds3ClientHelpers_Test.java | 2 +- .../helpers/ExceptionClassifier_Test.java | 2 +- .../helpers/FileObjectGetter_Test.java | 2 +- .../helpers/FileObjectPutter_Test.java | 2 +- .../helpers/FolderNameFilter_Test.java | 2 +- .../helpers/JobPartTrackerFactory_Test.java | 2 +- .../helpers/JobPartTracker_Test.java | 2 +- .../helpers/ObjectPartComparator_Test.java | 2 +- ...jectPartTrackerImpl_CompletePart_Test.java | 2 +- .../helpers/ObjectPartTrackerImpl_Test.java | 2 +- .../ds3client/helpers/ObjectPart_Test.java | 2 +- .../ds3client/helpers/RequestMatchers.java | 2 +- .../ds3client/helpers/ResponseBuilders.java | 2 +- .../ObjectInputStreamBuilder_Test.java | 2 +- .../ObjectOutputStreamBuilder_Test.java | 2 +- .../channelbuilders/StreamObjectGetter.java | 2 +- .../channelbuilders/StreamObjectPutter.java | 2 +- .../RangedSeekableByteChannel_Test.java | 2 +- .../channels/WindowedChannelFactory_Test.java | 2 +- .../WindowedSeekableByteChannel_Test.java | 2 +- .../SpectraS3PaginationLoader_Test.java | 2 +- .../helpers/pagination/StubbedRequest.java | 2 +- .../RangeHelperImpl_Test.java | 2 +- .../TransferStrategy_Test.java | 2 +- .../util/PartialObjectHelpers_Test.java | 2 +- .../models/ModelFunctionality_Test.java | 2 +- .../ds3client/models/ModelParsing_Test.java | 2 +- .../ds3client/models/ServiceList_Test.java | 2 +- .../models/common/Credential_Test.java | 2 +- .../FailedRequestException_Test.java | 2 +- .../networking/HeadersImpl_Test.java | 2 +- .../ds3client/serializer/XmlOutput_Test.java | 2 +- .../ByteArraySeekableByteChannel_Test.java | 2 +- .../ds3client/utils/DateFormatter_Test.java | 2 +- .../ds3client/utils/Guard_Test.java | 2 +- .../ds3client/utils/JobUtils_Test.java | 2 +- .../ds3client/utils/NetUtils_Test.java | 2 +- .../utils/SafeString_Manipulation_Test.java | 2 +- .../ds3client/utils/Signature_Test.java | 2 +- .../ds3client/utils/hashing/Md5Hash_Test.java | 2 +- .../utils/hashing/Sha256Hash_Test.java | 2 +- .../utils/hashing/Sha512Hash_Test.java | 2 +- .../ds3client/helpers/FileTreeWalker_Test.kt | 2 +- .../collections/WindowedIterator_Test.kt | 2 +- ds3-utils/build.gradle | 6 ++--- .../commands/interfaces/MetadataImpl.java | 2 +- .../exceptions/AggregateException.java | 20 ++++++++--------- .../helpers/FailureEventListener.java | 2 +- .../helpers/events/FailureEvent.java | 2 +- .../ds3client/utils/FileUtils.java | 2 +- .../spectralogic/ds3client/utils/Guard.java | 2 +- .../utils/MetadataStringManipulation.java | 2 +- .../ds3client/utils/Platform.java | 2 +- .../ds3client/utils/ResourceUtils.java | 2 +- .../ds3client/utils/StringExtensions.java | 20 ++++++++--------- .../exceptions/AggregateException_Test.java | 20 ++++++++--------- .../MetadataStringManipulation_Test.java | 2 +- gradle.properties | 15 +++++++++++++ gradle/scripts/publish.gradle | 15 +++++++++++++ gradle/wrapper/gradle-wrapper.properties | 15 +++++++++++++ settings.gradle | 22 +++++++++---------- 1680 files changed, 2237 insertions(+), 2162 deletions(-) diff --git a/build.gradle b/build.gradle index 19a39941b..465eaf62c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,16 +1,16 @@ /* + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. * **************************************************************************** - * Copyright 2014-2016 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** */ buildscript { diff --git a/contract/3_4_1_contract.xml b/contract/3_4_1_contract.xml index 10fd02c10..a9986a8af 100644 --- a/contract/3_4_1_contract.xml +++ b/contract/3_4_1_contract.xml @@ -1,3 +1,18 @@ + + diff --git a/ds3-interfaces/build.gradle b/ds3-interfaces/build.gradle index a82804d4d..a3b66daab 100644 --- a/ds3-interfaces/build.gradle +++ b/ds3-interfaces/build.gradle @@ -1 +1,16 @@ +/* + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + apply from: "$rootDir/gradle/scripts/publish.gradle" diff --git a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/MetadataAccess.java b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/MetadataAccess.java index f9a0e5258..2e552973d 100644 --- a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/MetadataAccess.java +++ b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/MetadataAccess.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/MetadataReceivedListener.java b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/MetadataReceivedListener.java index ccc85d709..a2e821b7f 100644 --- a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/MetadataReceivedListener.java +++ b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/MetadataReceivedListener.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/metadata/interfaces/MetadataRestore.java b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/metadata/interfaces/MetadataRestore.java index b328ee20e..0ddb5da5d 100644 --- a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/metadata/interfaces/MetadataRestore.java +++ b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/metadata/interfaces/MetadataRestore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/metadata/interfaces/MetadataStore.java b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/metadata/interfaces/MetadataStore.java index 34908d2e1..fe0cd8141 100644 --- a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/metadata/interfaces/MetadataStore.java +++ b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/metadata/interfaces/MetadataStore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/networking/Headers.java b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/networking/Headers.java index 43d07f6dc..f02f57f86 100644 --- a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/networking/Headers.java +++ b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/networking/Headers.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/networking/Metadata.java b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/networking/Metadata.java index 92061ef19..3d285dacb 100644 --- a/ds3-interfaces/src/main/java/com/spectralogic/ds3client/networking/Metadata.java +++ b/ds3-interfaces/src/main/java/com/spectralogic/ds3client/networking/Metadata.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/build.gradle b/ds3-metadata/build.gradle index 19ee26af8..a3facbe6e 100644 --- a/ds3-metadata/build.gradle +++ b/ds3-metadata/build.gradle @@ -1,11 +1,11 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * or in the "license" file accompanying this file. * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataRestore.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataRestore.java index 89d732ee4..eb5f1b2bc 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataRestore.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataRestore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataStore.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataStore.java index f911bc8f0..97dcc7726 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataStore.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataStore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MACMetadataRestore.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MACMetadataRestore.java index bc0ec1d12..04ca5a84b 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MACMetadataRestore.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MACMetadataRestore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetaDataUtil.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetaDataUtil.java index b6ac53fc4..b784171ee 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetaDataUtil.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetaDataUtil.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataAccessImpl.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataAccessImpl.java index b245651e3..72e8b159d 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataAccessImpl.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataAccessImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2016 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataKeyConstants.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataKeyConstants.java index e2e4c7b1f..1f0f84634 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataKeyConstants.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataKeyConstants.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataReceivedListenerImpl.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataReceivedListenerImpl.java index b282c5194..43d28e423 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataReceivedListenerImpl.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataReceivedListenerImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2016 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataRestoreFactory.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataRestoreFactory.java index af9a3c67c..ae7bada74 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataRestoreFactory.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataRestoreFactory.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataStoreFactory.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataStoreFactory.java index 01455d291..fc99189bc 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataStoreFactory.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/MetadataStoreFactory.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PermissionsUtils.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PermissionsUtils.java index c16303c3d..b808f9c9b 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PermissionsUtils.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PermissionsUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore.java index 43db943d2..dfea71c0c 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PosixMetadataStore.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PosixMetadataStore.java index e04d4243a..783a1c7a0 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PosixMetadataStore.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/PosixMetadataStore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataException.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataException.java index aca646b23..0bbdf1029 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataException.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore.java index 9c1bcbfe2..e97632000 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore.java index 5b1b25982..e97ab1a0d 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/jna/Advapi32.java b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/jna/Advapi32.java index ee5feb643..e75a76a05 100644 --- a/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/jna/Advapi32.java +++ b/ds3-metadata/src/main/java/com/spectralogic/ds3client/metadata/jna/Advapi32.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/MockedHeaders.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/MockedHeaders.java index 9563fe716..fe4853d79 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/MockedHeaders.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/MockedHeaders.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/MockedHeadersReturningKeys.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/MockedHeadersReturningKeys.java index 60090218c..74d699807 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/MockedHeadersReturningKeys.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/MockedHeadersReturningKeys.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MACMetadataRestore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MACMetadataRestore_Test.java index 29fb28c0f..22122a219 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MACMetadataRestore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MACMetadataRestore_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataAccessImpl_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataAccessImpl_Test.java index 73f1b9f83..dc1ae3f11 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataAccessImpl_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataAccessImpl_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataReceivedListenerImpl_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataReceivedListenerImpl_Test.java index 6d60cef59..500e27baa 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataReceivedListenerImpl_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataReceivedListenerImpl_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataRestoreFactory_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataRestoreFactory_Test.java index 81b2e95e0..4fb8d3b0d 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataRestoreFactory_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/MetadataRestoreFactory_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore_Test.java index 611095302..7ef73fc41 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataRestore_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataStore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataStore_Test.java index edd05ff67..82de552bf 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataStore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/PosixMetadataStore_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore_Test.java index 5759b9612..3355eabfc 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataRestore_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore_Test.java b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore_Test.java index 935ea155e..d33ce79e1 100644 --- a/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore_Test.java +++ b/ds3-metadata/src/test/java/com/spectralogic/ds3client/metadata/WindowsMetadataStore_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/build.gradle b/ds3-sdk-integration/build.gradle index 362cf2907..e6566217a 100644 --- a/ds3-sdk-integration/build.gradle +++ b/ds3-sdk-integration/build.gradle @@ -1,11 +1,11 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * or in the "license" file accompanying this file. * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/NullChannel.java b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/NullChannel.java index ba031cabc..49d542673 100644 --- a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/NullChannel.java +++ b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/NullChannel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/RandomDataInputStream.java b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/RandomDataInputStream.java index e117c8a0b..b7884fc0c 100644 --- a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/RandomDataInputStream.java +++ b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/RandomDataInputStream.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/ResourceObjectPutter.java b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/ResourceObjectPutter.java index 50317671c..79f33e92e 100644 --- a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/ResourceObjectPutter.java +++ b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/ResourceObjectPutter.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/TransferredListener.java b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/TransferredListener.java index 0e64dc149..a1a10c010 100644 --- a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/TransferredListener.java +++ b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/TransferredListener.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java index 60874d63e..7f29d635f 100644 --- a/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java +++ b/ds3-sdk-integration/src/main/java/com/spectralogic/ds3client/integration/Util.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/MockedHeaders.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/MockedHeaders.java index b56609b2b..8553d1f61 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/MockedHeaders.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/MockedHeaders.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/MockedWebResponse.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/MockedWebResponse.java index 091fc95af..fe7fc3817 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/MockedWebResponse.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/MockedWebResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java index 2e904d99e..9e9e91b4d 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/FileSystemHelper_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectStreamBuilder_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectStreamBuilder_Test.java index ef04647e4..7e700a9b2 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectStreamBuilder_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectStreamBuilder_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/AdvancedBucketManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/AdvancedBucketManagement_Test.java index c1fc7a0a2..42d1c702b 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/AdvancedBucketManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/AdvancedBucketManagement_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/CustomParser_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/CustomParser_Test.java index 0cacf8739..870b28302 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/CustomParser_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/CustomParser_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/DataIntegrity_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/DataIntegrity_Test.java index c041a3949..4ab65034e 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/DataIntegrity_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/DataIntegrity_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java index 5790c994e..40f60c41d 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GroupManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GroupManagement_Test.java index 100928fe5..6a003f121 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GroupManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GroupManagement_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Insecure_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Insecure_Test.java index 4a3b2813e..0328c9241 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Insecure_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Insecure_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Iterators_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Iterators_Test.java index f607395f5..50ffc9615 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Iterators_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Iterators_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Metadata_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Metadata_Test.java index 96a1c5c23..6be9c54b1 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Metadata_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Metadata_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/NotificationsIntegration_test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/NotificationsIntegration_test.java index 3156e00f0..3d01ff4e9 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/NotificationsIntegration_test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/NotificationsIntegration_test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java index cfdad62ab..991a6e3fd 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/PutJobManagement_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Regression_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Regression_Test.java index 2cbe5ccc4..59622dd16 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Regression_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Regression_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java index 296d16658..dd1076c19 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/Smoke_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/SpectraS3PaginationLoader_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/SpectraS3PaginationLoader_Test.java index d7772930d..6141bcf0e 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/SpectraS3PaginationLoader_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/SpectraS3PaginationLoader_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java index 7d9cbc4d3..0b49be1ea 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/UsersAndGroups_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/ABMTestHelper.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/ABMTestHelper.java index 6dc8b6e02..3eabf1d05 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/ABMTestHelper.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/ABMTestHelper.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShim.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShim.java index bdecd0970..2472f972f 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShim.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShim.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimFactory.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimFactory.java index a25106d12..e4d70fbc1 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimFactory.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimFactory.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedChunkAllocation.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedChunkAllocation.java index 3fdabded5..d8bd064ef 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedChunkAllocation.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedChunkAllocation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedGetObject.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedGetObject.java index 54ac8f549..c23f045bf 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedGetObject.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedGetObject.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedPutObject.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedPutObject.java index 9e2a75fa9..b28a705b7 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedPutObject.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/Ds3ClientShimWithFailedPutObject.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/JobStatusHelper.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/JobStatusHelper.java index 02db191ab..127917c08 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/JobStatusHelper.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/JobStatusHelper.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/NotificationCleanupTestHelper.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/NotificationCleanupTestHelper.java index c77c892b8..9f74aaece 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/NotificationCleanupTestHelper.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/NotificationCleanupTestHelper.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageIds.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageIds.java index 6b31ae3dd..c226e408e 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageIds.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageIds.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java index dc3163316..6e6c635a5 100644 --- a/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java +++ b/ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/test/helpers/TempStorageUtil.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/build.gradle b/ds3-sdk-samples/build.gradle index f71a1040a..2640bb247 100644 --- a/ds3-sdk-samples/build.gradle +++ b/ds3-sdk-samples/build.gradle @@ -1,11 +1,11 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * or in the "license" file accompanying this file. * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkGetWithMetadata.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkGetWithMetadata.java index fbe635f5a..05b6c0a41 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkGetWithMetadata.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkGetWithMetadata.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutExample.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutExample.java index 942dcf0aa..b59724940 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutExample.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutExample.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutWithChecksums.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutWithChecksums.java index 52f37cc02..349271d3a 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutWithChecksums.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutWithChecksums.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutWithMetadata.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutWithMetadata.java index 17c7b7296..227cf21bd 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutWithMetadata.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/BulkPutWithMetadata.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3BulkGetExample.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3BulkGetExample.java index ae8080a56..03127abf4 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3BulkGetExample.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3BulkGetExample.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3PutObjectRelativePathExample.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3PutObjectRelativePathExample.java index 252fe4bf9..42bbec3db 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3PutObjectRelativePathExample.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3PutObjectRelativePathExample.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3ServiceListExample.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3ServiceListExample.java index c4d8a777b..b45666fe1 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3ServiceListExample.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/Ds3ServiceListExample.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/PartialObjectGetExample.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/PartialObjectGetExample.java index e3523df09..16b39243e 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/PartialObjectGetExample.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/PartialObjectGetExample.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/PutEmptyFolderExample.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/PutEmptyFolderExample.java index 2cb921e58..255d1fe0d 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/PutEmptyFolderExample.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/PutEmptyFolderExample.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/RecoverJobExample.java b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/RecoverJobExample.java index d4e4ee4e7..bf37a38f0 100644 --- a/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/RecoverJobExample.java +++ b/ds3-sdk-samples/src/main/java/com/spectralogic/ds3client/samples/RecoverJobExample.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/build.gradle b/ds3-sdk/build.gradle index ec84ec7dc..76dd7ac0f 100644 --- a/ds3-sdk/build.gradle +++ b/ds3-sdk/build.gradle @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/BulkCommand.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/BulkCommand.java index f3696985d..7e9370234 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/BulkCommand.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/BulkCommand.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/ConnectionDetailsImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/ConnectionDetailsImpl.java index 9f931d38a..bea5f4f56 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/ConnectionDetailsImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/ConnectionDetailsImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java index 7f7661e22..ca03376b8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3Client.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientBuilder.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientBuilder.java index c8bc9058b..3f78b9c22 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientBuilder.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientBuilder.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java index 8a92e5bb3..3f0161a01 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3InputStreamEntity.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3InputStreamEntity.java index 666b08136..9d3256a9f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3InputStreamEntity.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/Ds3InputStreamEntity.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/GetObjectCustomParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/GetObjectCustomParser.java index 263c5a6b6..39149e305 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/GetObjectCustomParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/GetObjectCustomParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/Action.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/Action.java index 4fabc6cd7..748dab36d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/Action.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/Action.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/Resource.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/Resource.java index 014ea211a..1e92037e9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/Resource.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/Resource.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/ResponsePayloadModel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/ResponsePayloadModel.java index b971fc209..bdbd138c7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/ResponsePayloadModel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/annotations/ResponsePayloadModel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/AbortMultiPartUploadRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/AbortMultiPartUploadRequest.java index e4768b494..9ced08f1e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/AbortMultiPartUploadRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/AbortMultiPartUploadRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/AbortMultiPartUploadResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/AbortMultiPartUploadResponse.java index eec1f01b1..37303bc37 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/AbortMultiPartUploadResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/AbortMultiPartUploadResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/CompleteMultiPartUploadRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/CompleteMultiPartUploadRequest.java index 272609a65..1751bcfca 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/CompleteMultiPartUploadRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/CompleteMultiPartUploadRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/CompleteMultiPartUploadResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/CompleteMultiPartUploadResponse.java index 7c71f813f..32bc308b5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/CompleteMultiPartUploadResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/CompleteMultiPartUploadResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteBucketRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteBucketRequest.java index 3e873326b..339ecca31 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteBucketRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteBucketRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteBucketResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteBucketResponse.java index 37b4bd41e..909a71542 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteBucketResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteBucketResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectRequest.java index bb2da1b05..f7c873e30 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectResponse.java index dff71b33e..6bf8fd341 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectsRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectsRequest.java index 7b370467c..5c64fbdc2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectsRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectsRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectsResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectsResponse.java index 8fd6a4c94..97f138510 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectsResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/DeleteObjectsResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetBucketRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetBucketRequest.java index d2c38fa11..cfc959979 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetBucketRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetBucketRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetBucketResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetBucketResponse.java index 86ead6a9a..dc86ac153 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetBucketResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetBucketResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectRequest.java index 68c269fcc..a39879a31 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectResponse.java index f5526b225..132126e9d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetObjectResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetServiceRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetServiceRequest.java index 24d4fe8b4..0e15e2265 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetServiceRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetServiceRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetServiceResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetServiceResponse.java index 295daaaed..f32f5406a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetServiceResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/GetServiceResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadBucketRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadBucketRequest.java index 808281c72..4f64a6404 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadBucketRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadBucketRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadBucketResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadBucketResponse.java index 5782b3577..fe4ab5659 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadBucketResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadBucketResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadObjectRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadObjectRequest.java index 10bace3d2..102a1d515 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadObjectRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadObjectRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadObjectResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadObjectResponse.java index 8097b9fc1..7d6596cca 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadObjectResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/HeadObjectResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/InitiateMultiPartUploadRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/InitiateMultiPartUploadRequest.java index d10dde46f..e6c8bb4e5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/InitiateMultiPartUploadRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/InitiateMultiPartUploadRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/InitiateMultiPartUploadResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/InitiateMultiPartUploadResponse.java index ddd5d2647..2af5ca2a9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/InitiateMultiPartUploadResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/InitiateMultiPartUploadResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadPartsRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadPartsRequest.java index bb75516b9..f1524657a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadPartsRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadPartsRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadPartsResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadPartsResponse.java index 09ea6828a..b5613a349 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadPartsResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadPartsResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadsRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadsRequest.java index d38f4ba76..d58022e5f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadsRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadsRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadsResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadsResponse.java index f9f6093aa..b2305e738 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadsResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/ListMultiPartUploadsResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutBucketRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutBucketRequest.java index 148c95439..ad64def83 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutBucketRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutBucketRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutBucketResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutBucketResponse.java index ddf9fc3d7..d6d418a86 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutBucketResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutBucketResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartRequest.java index 3e5e3c9a5..0eb7c0c7f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartResponse.java index 6cca26577..1c690d7f5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutMultiPartUploadPartResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectRequest.java index c66185a6b..12f3b9392 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectResponse.java index b0a27c05d..7a636ee68 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/PutObjectResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractCreateNotificationRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractCreateNotificationRequest.java index 020a438b5..5ce3e6f72 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractCreateNotificationRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractCreateNotificationRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractDeleteNotificationRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractDeleteNotificationRequest.java index e5e6c1314..d547468e6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractDeleteNotificationRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractDeleteNotificationRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractGetNotificationRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractGetNotificationRequest.java index c327618a2..cf20784b9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractGetNotificationRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractGetNotificationRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractPaginationRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractPaginationRequest.java index cce28b623..d1daa869b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractPaginationRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractPaginationRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractPaginationResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractPaginationResponse.java index f555b2d30..0b1ee2da2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractPaginationResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractPaginationResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractRequest.java index 4097d8425..558128d51 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractResponse.java index 38c0f0435..9af026305 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/AbstractResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/BulkRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/BulkRequest.java index 22984cdb4..761d942a0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/BulkRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/BulkRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/BulkResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/BulkResponse.java index aaaebd8a7..e24eef06b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/BulkResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/BulkResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/Ds3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/Ds3Request.java index 8160985c4..afed6f301 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/Ds3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/Ds3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/Ds3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/Ds3Response.java index 94c2f2bbf..b421d355f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/Ds3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/Ds3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/PaginationRequest.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/PaginationRequest.java index d3decb82d..e3f7f3e85 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/PaginationRequest.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/PaginationRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/PaginationResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/PaginationResponse.java index 6407d4f46..128ef66bf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/PaginationResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/PaginationResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeaders.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeaders.java index b17818dd9..a8e0d85aa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeaders.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeaders.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl.java index 49128284d..143ce6ea1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/package-info.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/package-info.java index 37052d33e..d50e303c6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/package-info.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/package-info.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/AbortMultiPartUploadResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/AbortMultiPartUploadResponseParser.java index bff3111fc..615aaac10 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/AbortMultiPartUploadResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/AbortMultiPartUploadResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/AllocateJobChunkSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/AllocateJobChunkSpectraS3ResponseParser.java index 1fd53aca9..de2509d8c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/AllocateJobChunkSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/AllocateJobChunkSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelActiveJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelActiveJobSpectraS3ResponseParser.java index f35d67f31..270892ad8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelActiveJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelActiveJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelAllActiveJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelAllActiveJobsSpectraS3ResponseParser.java index b8ae0807e..d632a69c3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelAllActiveJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelAllActiveJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelAllJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelAllJobsSpectraS3ResponseParser.java index 7b2f7b0c8..59e9e1847 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelAllJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelAllJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelEjectOnAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelEjectOnAllTapesSpectraS3ResponseParser.java index eb5321a69..08f0b6477 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelEjectOnAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelEjectOnAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelEjectTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelEjectTapeSpectraS3ResponseParser.java index 831e95418..741a21e1a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelEjectTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelEjectTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelFormatOnAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelFormatOnAllTapesSpectraS3ResponseParser.java index 0a17966e3..a9718103c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelFormatOnAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelFormatOnAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelFormatTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelFormatTapeSpectraS3ResponseParser.java index 35a0052b6..92b310b6a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelFormatTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelFormatTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportOnAllPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportOnAllPoolsSpectraS3ResponseParser.java index aa24be424..784957ba4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportOnAllPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportOnAllPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportOnAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportOnAllTapesSpectraS3ResponseParser.java index 791f9dc2f..3a7c662f9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportOnAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportOnAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportPoolSpectraS3ResponseParser.java index bedb39414..0c7b06560 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportTapeSpectraS3ResponseParser.java index ad3b8c150..a4eda7eac 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelImportTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelJobSpectraS3ResponseParser.java index 2227cca92..460578561 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelOnlineOnAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelOnlineOnAllTapesSpectraS3ResponseParser.java index 5affbb062..1a679b2f0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelOnlineOnAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelOnlineOnAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelOnlineTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelOnlineTapeSpectraS3ResponseParser.java index 9a2ccf708..c2adf533f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelOnlineTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelOnlineTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyOnAllPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyOnAllPoolsSpectraS3ResponseParser.java index 97c901283..59e153d35 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyOnAllPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyOnAllPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyOnAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyOnAllTapesSpectraS3ResponseParser.java index 17e4150b5..27793da15 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyOnAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyOnAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyPoolSpectraS3ResponseParser.java index bca23d3df..6e6e6615b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyTapeSpectraS3ResponseParser.java index 03fab3315..611aa4b3a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CancelVerifyTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CleanTapeDriveSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CleanTapeDriveSpectraS3ResponseParser.java index 6888c5f38..872b29c1b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CleanTapeDriveSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CleanTapeDriveSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearAllCanceledJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearAllCanceledJobsSpectraS3ResponseParser.java index 95bf2bdfe..59c60e9a7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearAllCanceledJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearAllCanceledJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearAllCompletedJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearAllCompletedJobsSpectraS3ResponseParser.java index d373893f3..efa471eb2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearAllCompletedJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearAllCompletedJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobAzureTargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobAzureTargetsSpectraS3ResponseParser.java index 689a73089..0d4f8a9fb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobAzureTargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobAzureTargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobDs3TargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobDs3TargetsSpectraS3ResponseParser.java index 8c7b12c53..586fc67ba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobDs3TargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobDs3TargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobPoolsSpectraS3ResponseParser.java index d042c68f2..641573bcc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobS3TargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobS3TargetsSpectraS3ResponseParser.java index 2ee566738..5b73520a9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobS3TargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobS3TargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobTapesSpectraS3ResponseParser.java index 6e0746428..a6b229664 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ClearSuspectBlobTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompactAllPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompactAllPoolsSpectraS3ResponseParser.java index 709d4b9c0..548904960 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompactAllPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompactAllPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompactPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompactPoolSpectraS3ResponseParser.java index 92fe1c073..3fd6a5cc1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompactPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompactPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompleteMultiPartUploadResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompleteMultiPartUploadResponseParser.java index e6f22fcea..4d9afd826 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompleteMultiPartUploadResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/CompleteMultiPartUploadResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ConvertStorageDomainToDs3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ConvertStorageDomainToDs3TargetSpectraS3ResponseParser.java index da5115383..660d429c6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ConvertStorageDomainToDs3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ConvertStorageDomainToDs3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeallocatePoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeallocatePoolSpectraS3ResponseParser.java index 2ba12ab21..0d1d5adcb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeallocatePoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeallocatePoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DelegateCreateUserSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DelegateCreateUserSpectraS3ResponseParser.java index dab076ee3..2be720dee 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DelegateCreateUserSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DelegateCreateUserSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DelegateDeleteUserSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DelegateDeleteUserSpectraS3ResponseParser.java index e8af083ac..427826efb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DelegateDeleteUserSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DelegateDeleteUserSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureDataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureDataReplicationRuleSpectraS3ResponseParser.java index 2bb6d38bb..ac14df773 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureDataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureDataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetBucketNameSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetBucketNameSpectraS3ResponseParser.java index 6ca12263b..ba5bd44a4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetBucketNameSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetBucketNameSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java index 248af58b8..31be32949 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetFailureSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetFailureSpectraS3ResponseParser.java index f3ce7b33a..a58eae82e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetFailureSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetFailureSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetReadPreferenceSpectraS3ResponseParser.java index 6f857194b..070cd681e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetSpectraS3ResponseParser.java index 8d2338329..482b0d5b6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteAzureTargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketAclSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketAclSpectraS3ResponseParser.java index 5c566bece..b99936668 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketAclSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketAclSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketResponseParser.java index 77dfb943a..6fde83909 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketSpectraS3ResponseParser.java index 635358864..e551c6aba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteBucketSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPersistenceRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPersistenceRuleSpectraS3ResponseParser.java index 322928d3c..3e330745a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPersistenceRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPersistenceRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPolicyAclSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPolicyAclSpectraS3ResponseParser.java index 0440888ce..a127897ac 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPolicyAclSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPolicyAclSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPolicySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPolicySpectraS3ResponseParser.java index 73f495ed0..a7a353e71 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPolicySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDataPolicySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3DataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3DataReplicationRuleSpectraS3ResponseParser.java index 551f97634..74c381b5d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3DataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3DataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java index 11ae265f6..9f8f13766 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetFailureSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetFailureSpectraS3ResponseParser.java index bd7e2831d..7e9315bb7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetFailureSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetFailureSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetReadPreferenceSpectraS3ResponseParser.java index 48fa72f88..3e283a42c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetSpectraS3ResponseParser.java index 8de4d7f5d..809c873eb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteDs3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteFolderRecursivelySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteFolderRecursivelySpectraS3ResponseParser.java index 776b5f5b6..aead5d140 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteFolderRecursivelySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteFolderRecursivelySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteGroupMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteGroupMemberSpectraS3ResponseParser.java index 696dc32ea..26a57a92e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteGroupMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteGroupMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteGroupSpectraS3ResponseParser.java index 6623f2f7f..56212bc2b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCompletedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCompletedNotificationRegistrationSpectraS3ResponseParser.java index 29ea91210..9da6ed3f3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCompletedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCompletedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCreatedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCreatedNotificationRegistrationSpectraS3ResponseParser.java index 68a30f974..a293d5fa1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCreatedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCreatedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java index e2f7edb32..fad895d6b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectCachedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectCachedNotificationRegistrationSpectraS3ResponseParser.java index 3c040d884..295384e5a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectCachedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectCachedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectLostNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectLostNotificationRegistrationSpectraS3ResponseParser.java index 88b900e6c..245f031b1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectLostNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectLostNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java index 7e9b75953..3e7c9cb77 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectResponseParser.java index bb7f40797..f099f8051 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectsResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectsResponseParser.java index c00646fca..a7e912f88 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectsResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteObjectsResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePermanentlyLostPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePermanentlyLostPoolSpectraS3ResponseParser.java index df0785cfc..9e1d3929f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePermanentlyLostPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePermanentlyLostPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePermanentlyLostTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePermanentlyLostTapeSpectraS3ResponseParser.java index 301a5ef39..f6682ebb6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePermanentlyLostTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePermanentlyLostTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolFailureNotificationRegistrationSpectraS3ResponseParser.java index 46fa2e9cf..776a33453 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolFailureSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolFailureSpectraS3ResponseParser.java index 0b9d83b2e..04308e541 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolFailureSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolFailureSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolPartitionSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolPartitionSpectraS3ResponseParser.java index ff392c838..552d4ec0f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolPartitionSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeletePoolPartitionSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3DataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3DataReplicationRuleSpectraS3ResponseParser.java index 7f7ae615c..5c68abd4d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3DataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3DataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetBucketNameSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetBucketNameSpectraS3ResponseParser.java index be3d0bf05..30d961102 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetBucketNameSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetBucketNameSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java index 664a45eb5..fa130dbfc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetFailureSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetFailureSpectraS3ResponseParser.java index 4869ff73a..0900b6fb3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetFailureSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetFailureSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetReadPreferenceSpectraS3ResponseParser.java index 95a406174..34039417f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetSpectraS3ResponseParser.java index 87c24f22b..c6f532022 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteS3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java index d11a1d196..e730331b9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainFailureSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainFailureSpectraS3ResponseParser.java index a1b20a586..8919bfe5a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainFailureSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainFailureSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainMemberSpectraS3ResponseParser.java index 5b1349e3e..5ca232832 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainSpectraS3ResponseParser.java index 73e36978f..64fed3179 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteStorageDomainSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteSystemFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteSystemFailureNotificationRegistrationSpectraS3ResponseParser.java index d67d7068c..c77451835 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteSystemFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteSystemFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeDensityDirectiveSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeDensityDirectiveSpectraS3ResponseParser.java index 66702318d..b10d8134d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeDensityDirectiveSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeDensityDirectiveSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeDriveSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeDriveSpectraS3ResponseParser.java index 9591d6baa..9e824eeb0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeDriveSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeDriveSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeFailureNotificationRegistrationSpectraS3ResponseParser.java index 692684fb0..741202c98 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeFailureSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeFailureSpectraS3ResponseParser.java index 8ef3e0058..d5aff3b2a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeFailureSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapeFailureSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java index 9c7f37858..3fef0af15 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionFailureSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionFailureSpectraS3ResponseParser.java index dcb120d50..5c8dff611 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionFailureSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionFailureSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionSpectraS3ResponseParser.java index 47fa44872..9e83d1e3a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/DeleteTapePartitionSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectAllTapesSpectraS3ResponseParser.java index e64bbcb86..2bf12bf81 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectStorageDomainBlobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectStorageDomainBlobsSpectraS3ResponseParser.java index 144ab7708..209bcff48 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectStorageDomainBlobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectStorageDomainBlobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectStorageDomainSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectStorageDomainSpectraS3ResponseParser.java index 2116ab562..a5146aa6b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectStorageDomainSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectStorageDomainSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectTapeSpectraS3ResponseParser.java index 5848063fd..9788aeba9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/EjectTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceFeatureKeyValidationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceFeatureKeyValidationSpectraS3ResponseParser.java index 77ded7f99..79085da93 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceFeatureKeyValidationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceFeatureKeyValidationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceFullCacheReclaimSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceFullCacheReclaimSpectraS3ResponseParser.java index 90b2cd928..d2df49c05 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceFullCacheReclaimSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceFullCacheReclaimSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForcePoolEnvironmentRefreshSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForcePoolEnvironmentRefreshSpectraS3ResponseParser.java index e0f99e7fe..9d03709ce 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForcePoolEnvironmentRefreshSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForcePoolEnvironmentRefreshSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceTapeEnvironmentRefreshSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceTapeEnvironmentRefreshSpectraS3ResponseParser.java index c8c43e44d..1a16a23fb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceTapeEnvironmentRefreshSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceTapeEnvironmentRefreshSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceTargetEnvironmentRefreshSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceTargetEnvironmentRefreshSpectraS3ResponseParser.java index f9d49343d..905c41a00 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceTargetEnvironmentRefreshSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ForceTargetEnvironmentRefreshSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatAllForeignPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatAllForeignPoolsSpectraS3ResponseParser.java index 285468d79..e8f50d55b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatAllForeignPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatAllForeignPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatAllTapesSpectraS3ResponseParser.java index 56b0a1ed6..eb8bad1bf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatForeignPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatForeignPoolSpectraS3ResponseParser.java index 07f97fd53..cf24e4c16 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatForeignPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatForeignPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatTapeSpectraS3ResponseParser.java index 297672e49..09a5c58a3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/FormatTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetActiveJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetActiveJobSpectraS3ResponseParser.java index bf84240ba..9174ac1ec 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetActiveJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetActiveJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetActiveJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetActiveJobsSpectraS3ResponseParser.java index 69987de82..b9a425dbf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetActiveJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetActiveJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureDataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureDataReplicationRuleSpectraS3ResponseParser.java index 1c96094f8..2e5fc1ab4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureDataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureDataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureDataReplicationRulesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureDataReplicationRulesSpectraS3ResponseParser.java index c36967b52..d3a8184eb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureDataReplicationRulesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureDataReplicationRulesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetBucketNamesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetBucketNamesSpectraS3ResponseParser.java index 4a709ffea..86b23301e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetBucketNamesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetBucketNamesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java index f192d5242..f67f8f1c0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailureNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailureNotificationRegistrationsSpectraS3ResponseParser.java index 4f90e9f1e..d2fa2201f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailureNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailureNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailuresSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailuresSpectraS3ResponseParser.java index 1d724da8c..21df5216d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailuresSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetFailuresSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetReadPreferenceSpectraS3ResponseParser.java index c3fecefb2..56760ec14 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetReadPreferencesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetReadPreferencesSpectraS3ResponseParser.java index b795c13b9..a1d4e6062 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetReadPreferencesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetReadPreferencesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetSpectraS3ResponseParser.java index fc42c339e..c71be8fe7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetsSpectraS3ResponseParser.java index 37e08e730..a927602c2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetAzureTargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobPersistenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobPersistenceSpectraS3ResponseParser.java index 5d76b29bf..c21039b2b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobPersistenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobPersistenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnAzureTargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnAzureTargetSpectraS3ResponseParser.java index b1aebf9f9..8a44c8e76 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnAzureTargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnAzureTargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnDs3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnDs3TargetSpectraS3ResponseParser.java index cd0abbd7a..1499aa80f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnDs3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnDs3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnPoolSpectraS3ResponseParser.java index 588d5675c..205cefb1a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnS3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnS3TargetSpectraS3ResponseParser.java index dd81fc1ef..ea47be3e8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnS3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnS3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnTapeSpectraS3ResponseParser.java index 150e6711b..3d7006662 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBlobsOnTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketAclSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketAclSpectraS3ResponseParser.java index 4461080df..8322a972b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketAclSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketAclSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketAclsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketAclsSpectraS3ResponseParser.java index c8dc5ed17..ca1f038a4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketAclsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketAclsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketCapacitySummarySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketCapacitySummarySpectraS3ResponseParser.java index 314b0b8e8..07a71ba01 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketCapacitySummarySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketCapacitySummarySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketResponseParser.java index e74d22e03..ef6494930 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketSpectraS3ResponseParser.java index f83a65313..950c9a563 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketsSpectraS3ResponseParser.java index 8cb8b967a..244e541fa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBucketsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBulkJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBulkJobSpectraS3ResponseParser.java index fe3adc583..293d31b05 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBulkJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetBulkJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheFilesystemSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheFilesystemSpectraS3ResponseParser.java index 3769f37ba..f00b7fefc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheFilesystemSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheFilesystemSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheFilesystemsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheFilesystemsSpectraS3ResponseParser.java index 2604784ee..c4e1e51da 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheFilesystemsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheFilesystemsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheStateSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheStateSpectraS3ResponseParser.java index 789ea90fa..860a639f4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheStateSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCacheStateSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCanceledJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCanceledJobSpectraS3ResponseParser.java index 14ab0152d..be4bd1810 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCanceledJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCanceledJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCanceledJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCanceledJobsSpectraS3ResponseParser.java index 5dd993a93..5b2ab30f9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCanceledJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCanceledJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCompletedJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCompletedJobSpectraS3ResponseParser.java index 85178aa5a..976294799 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCompletedJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCompletedJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCompletedJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCompletedJobsSpectraS3ResponseParser.java index 37efabe90..99bbf142a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCompletedJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetCompletedJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPathBackendSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPathBackendSpectraS3ResponseParser.java index 764574600..33d16477a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPathBackendSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPathBackendSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPersistenceRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPersistenceRuleSpectraS3ResponseParser.java index db6a5656f..2c908912d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPersistenceRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPersistenceRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPersistenceRulesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPersistenceRulesSpectraS3ResponseParser.java index 89fe05c8d..9715a6e45 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPersistenceRulesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPersistenceRulesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPlannerBlobStoreTasksSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPlannerBlobStoreTasksSpectraS3ResponseParser.java index e9a416347..9cc37d705 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPlannerBlobStoreTasksSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPlannerBlobStoreTasksSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPoliciesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPoliciesSpectraS3ResponseParser.java index 4de71d628..f77312eb1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPoliciesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPoliciesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicyAclSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicyAclSpectraS3ResponseParser.java index 7faf19c13..af9d3ee26 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicyAclSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicyAclSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicyAclsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicyAclsSpectraS3ResponseParser.java index b95036f7f..c773cea77 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicyAclsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicyAclsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicySpectraS3ResponseParser.java index d3b2b2a66..0f5fdabb6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDataPolicySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedAzureDataReplicationRulesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedAzureDataReplicationRulesSpectraS3ResponseParser.java index 9f00b0034..52aedc77a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedAzureDataReplicationRulesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedAzureDataReplicationRulesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedBlobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedBlobsSpectraS3ResponseParser.java index f6022b208..2ee315b1c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedBlobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedBlobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedBucketsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedBucketsSpectraS3ResponseParser.java index ed19abcae..6c7ad3008 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedBucketsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedBucketsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedDataPersistenceRulesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedDataPersistenceRulesSpectraS3ResponseParser.java index 88070b99c..5554ee86d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedDataPersistenceRulesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedDataPersistenceRulesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedDs3DataReplicationRulesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedDs3DataReplicationRulesSpectraS3ResponseParser.java index 11603125c..dfaff71a1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedDs3DataReplicationRulesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedDs3DataReplicationRulesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedS3DataReplicationRulesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedS3DataReplicationRulesSpectraS3ResponseParser.java index f3985dfe1..b52e15ea0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedS3DataReplicationRulesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDegradedS3DataReplicationRulesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3DataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3DataReplicationRuleSpectraS3ResponseParser.java index 4179d71ad..70475f2a7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3DataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3DataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3DataReplicationRulesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3DataReplicationRulesSpectraS3ResponseParser.java index 5fe7ca60a..7908fa147 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3DataReplicationRulesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3DataReplicationRulesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetDataPoliciesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetDataPoliciesSpectraS3ResponseParser.java index da3a49224..d871c64b2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetDataPoliciesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetDataPoliciesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java index 7bdbe833f..98cd2ae60 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailureNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailureNotificationRegistrationsSpectraS3ResponseParser.java index ae453303e..f5c9123d2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailureNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailureNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailuresSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailuresSpectraS3ResponseParser.java index d98962449..b832767e2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailuresSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetFailuresSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetReadPreferenceSpectraS3ResponseParser.java index 321bfa7de..4969c3a02 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetReadPreferencesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetReadPreferencesSpectraS3ResponseParser.java index 304288f61..af7fd60b1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetReadPreferencesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetReadPreferencesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetSpectraS3ResponseParser.java index 182c4a2e9..9d76864c0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetsSpectraS3ResponseParser.java index 83335a6f5..bad3933ca 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetDs3TargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetFeatureKeysSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetFeatureKeysSpectraS3ResponseParser.java index ff43e4b6b..681ba6836 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetFeatureKeysSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetFeatureKeysSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupMemberSpectraS3ResponseParser.java index c6428fd67..4c4dd2e3e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupMembersSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupMembersSpectraS3ResponseParser.java index 1c898f96b..3cce9795e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupMembersSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupMembersSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupSpectraS3ResponseParser.java index 5c34232f3..7e5e88325 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupsSpectraS3ResponseParser.java index 3b191d61b..414b1d4bb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetGroupsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunkDaoSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunkDaoSpectraS3ResponseParser.java index 3f956f657..07f504394 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunkDaoSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunkDaoSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunkSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunkSpectraS3ResponseParser.java index f91f79b36..a4d4dc762 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunkSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunkSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunksReadyForClientProcessingSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunksReadyForClientProcessingSpectraS3ResponseParser.java index c5a54ac9a..9df3a1612 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunksReadyForClientProcessingSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobChunksReadyForClientProcessingSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCompletedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCompletedNotificationRegistrationSpectraS3ResponseParser.java index 1810023ad..cd19b0d97 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCompletedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCompletedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCompletedNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCompletedNotificationRegistrationsSpectraS3ResponseParser.java index 4411c3601..06f8b9288 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCompletedNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCompletedNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreatedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreatedNotificationRegistrationSpectraS3ResponseParser.java index c77a68339..0563c394f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreatedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreatedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreatedNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreatedNotificationRegistrationsSpectraS3ResponseParser.java index 0622e5193..52fc55c17 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreatedNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreatedNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java index f102e0378..6344bc73c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreationFailedNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreationFailedNotificationRegistrationsSpectraS3ResponseParser.java index 1959b8027..59e4755a2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreationFailedNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobCreationFailedNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobSpectraS3ResponseParser.java index 795fe0db0..09efcdc04 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobToReplicateSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobToReplicateSpectraS3ResponseParser.java index 2907e145c..915e0d03c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobToReplicateSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobToReplicateSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobsSpectraS3ResponseParser.java index 00b8c2047..79ee60587 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetNodeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetNodeSpectraS3ResponseParser.java index 4b0d9ad21..05a220254 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetNodeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetNodeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetNodesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetNodesSpectraS3ResponseParser.java index a523685fb..71256a6d1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetNodesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetNodesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectCachedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectCachedNotificationRegistrationSpectraS3ResponseParser.java index 5b985b554..336ab1d99 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectCachedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectCachedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectCachedNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectCachedNotificationRegistrationsSpectraS3ResponseParser.java index 8ce3ca9ae..ad7eada61 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectCachedNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectCachedNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectDetailsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectDetailsSpectraS3ResponseParser.java index ade3dc111..1ac4efebb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectDetailsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectDetailsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectLostNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectLostNotificationRegistrationSpectraS3ResponseParser.java index 01402f6be..670ea902d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectLostNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectLostNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectLostNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectLostNotificationRegistrationsSpectraS3ResponseParser.java index 82c4e8162..c468270a1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectLostNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectLostNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java index 07b6e049b..a1b2ea2a3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectPersistedNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectPersistedNotificationRegistrationsSpectraS3ResponseParser.java index 834f8f456..68e2ff1aa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectPersistedNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectPersistedNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectResponseParser.java index ecfd0d11f..c9b617358 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectsDetailsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectsDetailsSpectraS3ResponseParser.java index e62caf22e..45e599dc1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectsDetailsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectsDetailsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectsWithFullDetailsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectsWithFullDetailsSpectraS3ResponseParser.java index 94f3e215f..8bb9ef5e8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectsWithFullDetailsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetObjectsWithFullDetailsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPhysicalPlacementForObjectsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPhysicalPlacementForObjectsSpectraS3ResponseParser.java index eb590d40e..18853d020 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPhysicalPlacementForObjectsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPhysicalPlacementForObjectsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3ResponseParser.java index b228f94fa..6927110f0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailureNotificationRegistrationSpectraS3ResponseParser.java index 285ec7d4b..c74ee28b8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailureNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailureNotificationRegistrationsSpectraS3ResponseParser.java index 417c9dc2d..ee8f34a77 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailureNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailureNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailuresSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailuresSpectraS3ResponseParser.java index 8ff2873ca..1a646a170 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailuresSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolFailuresSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolPartitionSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolPartitionSpectraS3ResponseParser.java index 4e55ff9f5..14637e80d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolPartitionSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolPartitionSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolPartitionsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolPartitionsSpectraS3ResponseParser.java index b79eefeb3..f673b230d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolPartitionsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolPartitionsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolSpectraS3ResponseParser.java index ea4d8b27e..105d036f8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolsSpectraS3ResponseParser.java index 2f69757ad..a756ab734 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3DataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3DataReplicationRuleSpectraS3ResponseParser.java index 3aed5c12e..93ac72d0b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3DataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3DataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3DataReplicationRulesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3DataReplicationRulesSpectraS3ResponseParser.java index db51d4263..c9b5f4ec4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3DataReplicationRulesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3DataReplicationRulesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetBucketNamesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetBucketNamesSpectraS3ResponseParser.java index bb80522ff..84e5b614d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetBucketNamesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetBucketNamesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java index 583853b11..b9ee12a5b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailureNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailureNotificationRegistrationsSpectraS3ResponseParser.java index 5e239a476..0b60f01e7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailureNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailureNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailuresSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailuresSpectraS3ResponseParser.java index 373bab392..12f385bea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailuresSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetFailuresSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetReadPreferenceSpectraS3ResponseParser.java index fad4fb420..cbc96030f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetReadPreferencesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetReadPreferencesSpectraS3ResponseParser.java index 5ecf7e831..ccfda4a13 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetReadPreferencesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetReadPreferencesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetSpectraS3ResponseParser.java index 053591ff9..fff554aec 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetsSpectraS3ResponseParser.java index 0975a52a5..63af2a830 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetS3TargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetServiceResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetServiceResponseParser.java index 63a217134..9c1939ab8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetServiceResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetServiceResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainCapacitySummarySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainCapacitySummarySpectraS3ResponseParser.java index 0beb58f35..263bcfbce 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainCapacitySummarySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainCapacitySummarySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java index f5d24aff8..f5795a6ab 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailureNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailureNotificationRegistrationsSpectraS3ResponseParser.java index 591e84073..435d6339a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailureNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailureNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailuresSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailuresSpectraS3ResponseParser.java index 14549fda4..53cd7f065 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailuresSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainFailuresSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainMemberSpectraS3ResponseParser.java index 8139d8d16..dbdedbb50 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainMembersSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainMembersSpectraS3ResponseParser.java index 43f56e09a..f2ff35093 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainMembersSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainMembersSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainSpectraS3ResponseParser.java index fc7bafb53..874f85a60 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainsSpectraS3ResponseParser.java index c543d501a..7775074f5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetStorageDomainsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobAzureTargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobAzureTargetsSpectraS3ResponseParser.java index d8a906419..30f2587ae 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobAzureTargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobAzureTargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobDs3TargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobDs3TargetsSpectraS3ResponseParser.java index d64c63d2f..01c37c305 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobDs3TargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobDs3TargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobPoolsSpectraS3ResponseParser.java index 5f077d6a7..069073db0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobS3TargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobS3TargetsSpectraS3ResponseParser.java index e29d392db..453889eeb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobS3TargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobS3TargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobTapesSpectraS3ResponseParser.java index 6fe2a1917..39e6b600f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBlobTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBucketsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBucketsSpectraS3ResponseParser.java index 5cc196985..dc39a84de 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBucketsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectBucketsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectObjectsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectObjectsSpectraS3ResponseParser.java index 8d7f93961..6e5d66bd9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectObjectsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectObjectsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectObjectsWithFullDetailsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectObjectsWithFullDetailsSpectraS3ResponseParser.java index 6ce4cc863..c18b3c3fd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectObjectsWithFullDetailsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSuspectObjectsWithFullDetailsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemCapacitySummarySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemCapacitySummarySpectraS3ResponseParser.java index fd6dcc106..617bcc662 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemCapacitySummarySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemCapacitySummarySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailureNotificationRegistrationSpectraS3ResponseParser.java index 02d89c997..ebe885dd7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailureNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailureNotificationRegistrationsSpectraS3ResponseParser.java index a5c1c780b..dfda663a4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailureNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailureNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailuresSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailuresSpectraS3ResponseParser.java index 24cdcca19..5862b7695 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailuresSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemFailuresSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemInformationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemInformationSpectraS3ResponseParser.java index 207f9b3ed..2a78626f2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemInformationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetSystemInformationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDensityDirectiveSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDensityDirectiveSpectraS3ResponseParser.java index 2db38f531..0ab9a7810 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDensityDirectiveSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDensityDirectiveSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDensityDirectivesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDensityDirectivesSpectraS3ResponseParser.java index ad8ad3ef9..70052f623 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDensityDirectivesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDensityDirectivesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDriveSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDriveSpectraS3ResponseParser.java index 800d2f582..9b1753be2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDriveSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDriveSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDrivesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDrivesSpectraS3ResponseParser.java index ae9da8e01..bfa493cbf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDrivesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeDrivesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailureNotificationRegistrationSpectraS3ResponseParser.java index cd29fda53..9e1c42aca 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailureNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailureNotificationRegistrationsSpectraS3ResponseParser.java index 0bb4a47b9..8a3603db0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailureNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailureNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailuresSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailuresSpectraS3ResponseParser.java index 2e8990db6..093f09992 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailuresSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeFailuresSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeLibrariesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeLibrariesSpectraS3ResponseParser.java index 42bc299cf..482b28c07 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeLibrariesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeLibrariesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeLibrarySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeLibrarySpectraS3ResponseParser.java index 6a796a6df..cdf683a1b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeLibrarySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeLibrarySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java index ac843f99c..5429783a0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailureNotificationRegistrationsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailureNotificationRegistrationsSpectraS3ResponseParser.java index 98bc0a99c..5363c22c3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailureNotificationRegistrationsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailureNotificationRegistrationsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailuresSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailuresSpectraS3ResponseParser.java index e3ad9d3e5..b60ede6fa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailuresSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionFailuresSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionSpectraS3ResponseParser.java index 859418f76..09102a2ce 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionWithFullDetailsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionWithFullDetailsSpectraS3ResponseParser.java index 9d3e38355..e668db1fe 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionWithFullDetailsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionWithFullDetailsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionsSpectraS3ResponseParser.java index bebd37b91..e9b653c9f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionsWithFullDetailsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionsWithFullDetailsSpectraS3ResponseParser.java index ac72a5654..c10241f59 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionsWithFullDetailsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapePartitionsWithFullDetailsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeSpectraS3ResponseParser.java index 00c18f0ea..de4051999 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapesSpectraS3ResponseParser.java index 59369e668..0c30145f4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetUserSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetUserSpectraS3ResponseParser.java index 24ff37bf5..1dd55903e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetUserSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetUserSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetUsersSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetUsersSpectraS3ResponseParser.java index f6a28fef3..31f964125 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetUsersSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/GetUsersSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/HeadBucketResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/HeadBucketResponseParser.java index a1b4867f2..568bbd996 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/HeadBucketResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/HeadBucketResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/HeadObjectResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/HeadObjectResponseParser.java index 94e887093..ebbdcc21a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/HeadObjectResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/HeadObjectResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAllPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAllPoolsSpectraS3ResponseParser.java index 0c9595e00..dc81fefcf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAllPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAllPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAllTapesSpectraS3ResponseParser.java index 4b046ea7c..6655eb8e2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAzureTargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAzureTargetSpectraS3ResponseParser.java index 761fe2b41..d8521b07c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAzureTargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportAzureTargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportPoolSpectraS3ResponseParser.java index a9252c9ba..752414058 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportS3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportS3TargetSpectraS3ResponseParser.java index 1d505b521..231fd392d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportS3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportS3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportTapeSpectraS3ResponseParser.java index 6c55786d6..b18ffa835 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ImportTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InitiateMultiPartUploadResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InitiateMultiPartUploadResponseParser.java index aeeea2b20..57055cd8e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InitiateMultiPartUploadResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InitiateMultiPartUploadResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InspectAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InspectAllTapesSpectraS3ResponseParser.java index 2df623a35..0522863a6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InspectAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InspectAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InspectTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InspectTapeSpectraS3ResponseParser.java index ae2040d38..733a28ce0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InspectTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/InspectTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ListMultiPartUploadPartsResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ListMultiPartUploadPartsResponseParser.java index f20e0d437..e8da0857c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ListMultiPartUploadPartsResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ListMultiPartUploadPartsResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ListMultiPartUploadsResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ListMultiPartUploadsResponseParser.java index 2448bd554..fb6198198 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ListMultiPartUploadsResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ListMultiPartUploadsResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3ResponseParser.java index d2f465a58..632ff69d0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3ResponseParser.java index 6b5749123..e7d910413 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobPoolsAsDegradedSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobPoolsAsDegradedSpectraS3ResponseParser.java index d78973b2c..7b91dc59f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobPoolsAsDegradedSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobPoolsAsDegradedSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobS3TargetsAsDegradedSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobS3TargetsAsDegradedSpectraS3ResponseParser.java index 554b24aae..516fdcb98 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobS3TargetsAsDegradedSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobS3TargetsAsDegradedSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobTapesAsDegradedSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobTapesAsDegradedSpectraS3ResponseParser.java index b20a8acc6..24975409b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobTapesAsDegradedSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/MarkSuspectBlobTapesAsDegradedSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyActiveJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyActiveJobSpectraS3ResponseParser.java index 9e07c71dc..9f936adf5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyActiveJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyActiveJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllAzureTargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllAzureTargetsSpectraS3ResponseParser.java index 3c7aac12f..7d94461e0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllAzureTargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllAzureTargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllDs3TargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllDs3TargetsSpectraS3ResponseParser.java index b4b0d03df..e6e82115b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllDs3TargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllDs3TargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllPoolsSpectraS3ResponseParser.java index ec03f9897..b305b05e7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllS3TargetsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllS3TargetsSpectraS3ResponseParser.java index 6c22652a9..f52f4bb60 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllS3TargetsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllS3TargetsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllTapePartitionsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllTapePartitionsSpectraS3ResponseParser.java index 299884f54..9f412e405 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllTapePartitionsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAllTapePartitionsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAzureDataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAzureDataReplicationRuleSpectraS3ResponseParser.java index 3e1e567a7..daeeaf00d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAzureDataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAzureDataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAzureTargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAzureTargetSpectraS3ResponseParser.java index bf43559b9..a1a2b603b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAzureTargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyAzureTargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyBucketSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyBucketSpectraS3ResponseParser.java index 02859831a..ead648749 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyBucketSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyBucketSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyCacheFilesystemSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyCacheFilesystemSpectraS3ResponseParser.java index 09cef1dd8..9d6a0f79a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyCacheFilesystemSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyCacheFilesystemSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPathBackendSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPathBackendSpectraS3ResponseParser.java index c61946a9b..6cb774a20 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPathBackendSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPathBackendSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPersistenceRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPersistenceRuleSpectraS3ResponseParser.java index 074019d58..ee67d454e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPersistenceRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPersistenceRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPolicySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPolicySpectraS3ResponseParser.java index 18fcc20ff..02799e7ab 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPolicySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDataPolicySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDs3DataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDs3DataReplicationRuleSpectraS3ResponseParser.java index 160e658b3..eeeb2858d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDs3DataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDs3DataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDs3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDs3TargetSpectraS3ResponseParser.java index b08e59282..99649d638 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDs3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyDs3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyGroupSpectraS3ResponseParser.java index ebc9f9be6..d94d97f26 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyJobSpectraS3ResponseParser.java index d939e8993..9278bf6a9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyNodeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyNodeSpectraS3ResponseParser.java index b73b9ff8a..2488c71ed 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyNodeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyNodeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyPoolPartitionSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyPoolPartitionSpectraS3ResponseParser.java index 6238b5bed..8937eef6d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyPoolPartitionSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyPoolPartitionSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyPoolSpectraS3ResponseParser.java index abc8c7ca1..f1c5d1ad8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyS3DataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyS3DataReplicationRuleSpectraS3ResponseParser.java index 7b54de98e..686f90235 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyS3DataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyS3DataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyS3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyS3TargetSpectraS3ResponseParser.java index 4465579a2..14d475609 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyS3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyS3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyStorageDomainMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyStorageDomainMemberSpectraS3ResponseParser.java index fdf75a492..16a0b5b99 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyStorageDomainMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyStorageDomainMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyStorageDomainSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyStorageDomainSpectraS3ResponseParser.java index 94fa84821..2557105d0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyStorageDomainSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyStorageDomainSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyTapePartitionSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyTapePartitionSpectraS3ResponseParser.java index df62d3106..e05ad8670 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyTapePartitionSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyTapePartitionSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyTapeSpectraS3ResponseParser.java index ef4d77985..cd1914009 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyUserSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyUserSpectraS3ResponseParser.java index 3276180ba..3ded65738 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyUserSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ModifyUserSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/OnlineAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/OnlineAllTapesSpectraS3ResponseParser.java index 48eea5bc6..a33aa68a9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/OnlineAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/OnlineAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/OnlineTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/OnlineTapeSpectraS3ResponseParser.java index 6c81a14a9..ed558f57f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/OnlineTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/OnlineTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PairBackRegisteredDs3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PairBackRegisteredDs3TargetSpectraS3ResponseParser.java index 99fba4fd7..917909f1e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PairBackRegisteredDs3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PairBackRegisteredDs3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureDataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureDataReplicationRuleSpectraS3ResponseParser.java index 4b293c956..adcca1029 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureDataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureDataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetBucketNameSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetBucketNameSpectraS3ResponseParser.java index e96384e50..78cc5e57f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetBucketNameSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetBucketNameSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java index fa2da5ba6..226ab88c5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetReadPreferenceSpectraS3ResponseParser.java index 482e36995..001e28e86 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutAzureTargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketAclForGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketAclForGroupSpectraS3ResponseParser.java index 34d497849..53b2624cf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketAclForGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketAclForGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketAclForUserSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketAclForUserSpectraS3ResponseParser.java index 0802a776a..f0cdfa3f9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketAclForUserSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketAclForUserSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketResponseParser.java index 6be5052bd..a1253a8a7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketSpectraS3ResponseParser.java index 87fe9cbd1..e723e77f7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBucketSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBulkJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBulkJobSpectraS3ResponseParser.java index 05321ffe5..359a5083a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBulkJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutBulkJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPersistenceRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPersistenceRuleSpectraS3ResponseParser.java index 1e128a39b..7ad3d4f4d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPersistenceRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPersistenceRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicyAclForGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicyAclForGroupSpectraS3ResponseParser.java index 2f6e9f089..f0fc97325 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicyAclForGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicyAclForGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicyAclForUserSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicyAclForUserSpectraS3ResponseParser.java index 78287373e..4ce57ff75 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicyAclForUserSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicyAclForUserSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicySpectraS3ResponseParser.java index c6d54e73d..7b737fcc7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDataPolicySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3DataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3DataReplicationRuleSpectraS3ResponseParser.java index 45182f9bd..f8c46e8f6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3DataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3DataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java index f3f29863c..1d55c49d1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3TargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3TargetReadPreferenceSpectraS3ResponseParser.java index a4a4c2b1e..6458f750f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3TargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutDs3TargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalBucketAclForGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalBucketAclForGroupSpectraS3ResponseParser.java index 29c05c46e..7f74b7d76 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalBucketAclForGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalBucketAclForGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalBucketAclForUserSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalBucketAclForUserSpectraS3ResponseParser.java index d8d0a07f9..56e4ce82b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalBucketAclForUserSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalBucketAclForUserSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalDataPolicyAclForGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalDataPolicyAclForGroupSpectraS3ResponseParser.java index 2b5f068c0..52d0b1460 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalDataPolicyAclForGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalDataPolicyAclForGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalDataPolicyAclForUserSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalDataPolicyAclForUserSpectraS3ResponseParser.java index 7c99e5a3f..fc6293c31 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalDataPolicyAclForUserSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGlobalDataPolicyAclForUserSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGroupGroupMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGroupGroupMemberSpectraS3ResponseParser.java index 1ce147811..d8f225465 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGroupGroupMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGroupGroupMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGroupSpectraS3ResponseParser.java index 4cbe46ae3..e41745d72 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCompletedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCompletedNotificationRegistrationSpectraS3ResponseParser.java index c20b16583..a0e9ca5f9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCompletedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCompletedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCreatedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCreatedNotificationRegistrationSpectraS3ResponseParser.java index 0adb8232e..d8f9ec26c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCreatedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCreatedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java index fc3c23a8c..615b361a6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutJobCreationFailedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutMultiPartUploadPartResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutMultiPartUploadPartResponseParser.java index a2606255e..acf0f6a0c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutMultiPartUploadPartResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutMultiPartUploadPartResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectCachedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectCachedNotificationRegistrationSpectraS3ResponseParser.java index afb79000f..e4b201b0b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectCachedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectCachedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectLostNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectLostNotificationRegistrationSpectraS3ResponseParser.java index 99e01c57f..a3bc097e4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectLostNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectLostNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java index f2f50ebe0..afdca5871 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectPersistedNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectResponseParser.java index 51b41e30c..c82f0bc3f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutObjectResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolFailureNotificationRegistrationSpectraS3ResponseParser.java index 37645e7bd..e990d2d20 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolPartitionSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolPartitionSpectraS3ResponseParser.java index 9ce023fd9..a080bbf5d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolPartitionSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolPartitionSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolStorageDomainMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolStorageDomainMemberSpectraS3ResponseParser.java index c82e5fc29..fbf8d021d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolStorageDomainMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutPoolStorageDomainMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3DataReplicationRuleSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3DataReplicationRuleSpectraS3ResponseParser.java index 603bff2af..e0a34efe9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3DataReplicationRuleSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3DataReplicationRuleSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetBucketNameSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetBucketNameSpectraS3ResponseParser.java index c648ba7df..199c93e7c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetBucketNameSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetBucketNameSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java index 32b445f0e..99e7a926d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetReadPreferenceSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetReadPreferenceSpectraS3ResponseParser.java index 96f2b8cad..e89b70f28 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetReadPreferenceSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutS3TargetReadPreferenceSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java index 754b24fcb..f2ee29125 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutStorageDomainFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutStorageDomainSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutStorageDomainSpectraS3ResponseParser.java index 49f0820e6..40cd62efc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutStorageDomainSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutStorageDomainSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutSystemFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutSystemFailureNotificationRegistrationSpectraS3ResponseParser.java index 0a0985a7f..5e5825e9b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutSystemFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutSystemFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeDensityDirectiveSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeDensityDirectiveSpectraS3ResponseParser.java index 1574b86a7..f788435da 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeDensityDirectiveSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeDensityDirectiveSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeFailureNotificationRegistrationSpectraS3ResponseParser.java index 3c974e786..1f34499be 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java index 46be2eb7e..3cba5bfff 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapePartitionFailureNotificationRegistrationSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeStorageDomainMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeStorageDomainMemberSpectraS3ResponseParser.java index a0c14dee6..5d93851f4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeStorageDomainMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutTapeStorageDomainMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutUserGroupMemberSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutUserGroupMemberSpectraS3ResponseParser.java index 37da52c08..05abc1a18 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutUserGroupMemberSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/PutUserGroupMemberSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RawImportAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RawImportAllTapesSpectraS3ResponseParser.java index d7669d863..c76795e22 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RawImportAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RawImportAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RawImportTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RawImportTapeSpectraS3ResponseParser.java index 3b85333b1..1df0f9786 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RawImportTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RawImportTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegenerateUserSecretKeySpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegenerateUserSecretKeySpectraS3ResponseParser.java index 6feaeea06..4978ff1bb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegenerateUserSecretKeySpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegenerateUserSecretKeySpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterAzureTargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterAzureTargetSpectraS3ResponseParser.java index 0e75baf41..7fba9bc02 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterAzureTargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterAzureTargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterDs3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterDs3TargetSpectraS3ResponseParser.java index c91422e95..5223a8d4a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterDs3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterDs3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterS3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterS3TargetSpectraS3ResponseParser.java index 9638df699..1bb97b771 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterS3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/RegisterS3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ReplicatePutJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ReplicatePutJobSpectraS3ResponseParser.java index 9ef54ad18..6961eabc7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ReplicatePutJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ReplicatePutJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ResetInstanceIdentifierSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ResetInstanceIdentifierSpectraS3ResponseParser.java index 7f5635d55..8cd2f0f02 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ResetInstanceIdentifierSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/ResetInstanceIdentifierSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateActiveJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateActiveJobSpectraS3ResponseParser.java index 070f69627..50e955041 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateActiveJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateActiveJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateAllActiveJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateAllActiveJobsSpectraS3ResponseParser.java index 2593e531d..7dfab1d4c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateAllActiveJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateAllActiveJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateAllJobsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateAllJobsSpectraS3ResponseParser.java index ebcdaa645..7e722f1c4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateAllJobsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateAllJobsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateJobSpectraS3ResponseParser.java index b329dc3b0..af3762589 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/TruncateJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAllPoolsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAllPoolsSpectraS3ResponseParser.java index ec71ea882..5d16b2b2f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAllPoolsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAllPoolsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAllTapesSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAllTapesSpectraS3ResponseParser.java index f4b5e4dbd..fa1944658 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAllTapesSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAllTapesSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAzureTargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAzureTargetSpectraS3ResponseParser.java index 10fbfe845..a63a49eb7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAzureTargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyAzureTargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyBulkJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyBulkJobSpectraS3ResponseParser.java index 89b5411c0..fc61ff1e9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyBulkJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyBulkJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyDs3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyDs3TargetSpectraS3ResponseParser.java index 4e1e03c4a..ad2d8c941 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyDs3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyDs3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPhysicalPlacementForObjectsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPhysicalPlacementForObjectsSpectraS3ResponseParser.java index d67ddfd54..432b8dc61 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPhysicalPlacementForObjectsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPhysicalPlacementForObjectsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3ResponseParser.java index 894c3dc81..89066a3a8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPoolSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPoolSpectraS3ResponseParser.java index be5bf8195..def6dc415 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPoolSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyPoolSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyS3TargetSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyS3TargetSpectraS3ResponseParser.java index a98d302c0..61a9c7ddb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyS3TargetSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyS3TargetSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifySafeToCreatePutJobSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifySafeToCreatePutJobSpectraS3ResponseParser.java index 9cc0628bf..5ba0f40a6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifySafeToCreatePutJobSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifySafeToCreatePutJobSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifySystemHealthSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifySystemHealthSpectraS3ResponseParser.java index a8c8daef1..0801fba26 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifySystemHealthSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifySystemHealthSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyTapeSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyTapeSpectraS3ResponseParser.java index 787fd7663..a2c0e9806 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyTapeSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyTapeSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyUserIsMemberOfGroupSpectraS3ResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyUserIsMemberOfGroupSpectraS3ResponseParser.java index df4b8d5ff..98dc3392f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyUserIsMemberOfGroupSpectraS3ResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/VerifyUserIsMemberOfGroupSpectraS3ResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/interfaces/AbstractResponseParser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/interfaces/AbstractResponseParser.java index dd1faa2bf..b5c8eb6a0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/interfaces/AbstractResponseParser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/interfaces/AbstractResponseParser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/interfaces/GetObjectCustomParserParameters.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/interfaces/GetObjectCustomParserParameters.java index 93351e932..33452a695 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/interfaces/GetObjectCustomParserParameters.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/interfaces/GetObjectCustomParserParameters.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/utils/Function.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/utils/Function.java index 81b2ea7ce..77932a213 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/utils/Function.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/utils/Function.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils.java index 58349a1cb..61d0db411 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/AllocateJobChunkSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/AllocateJobChunkSpectraS3Request.java index db7db0702..2126a7fff 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/AllocateJobChunkSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/AllocateJobChunkSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/AllocateJobChunkSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/AllocateJobChunkSpectraS3Response.java index 6a79008f8..5a802b022 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/AllocateJobChunkSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/AllocateJobChunkSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelActiveJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelActiveJobSpectraS3Request.java index bb10d0f36..2b1cf5734 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelActiveJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelActiveJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelActiveJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelActiveJobSpectraS3Response.java index b50f7a8df..9e9b2e1a0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelActiveJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelActiveJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllActiveJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllActiveJobsSpectraS3Request.java index f4af0657c..40088fe84 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllActiveJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllActiveJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllActiveJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllActiveJobsSpectraS3Response.java index cbf9d23ce..9ffd08952 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllActiveJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllActiveJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllJobsSpectraS3Request.java index 98a81700e..4cc68c57d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllJobsSpectraS3Response.java index 4df9d3eba..ef882b658 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelAllJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectOnAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectOnAllTapesSpectraS3Request.java index 541346dea..29d10b167 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectOnAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectOnAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectOnAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectOnAllTapesSpectraS3Response.java index d0fc570fa..0f8449a24 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectOnAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectOnAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectTapeSpectraS3Request.java index db96978aa..c195bccf9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectTapeSpectraS3Response.java index 68b7c6e39..abe96bc4b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelEjectTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatOnAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatOnAllTapesSpectraS3Request.java index 8cff282e5..ed6f4124d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatOnAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatOnAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatOnAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatOnAllTapesSpectraS3Response.java index e82958f8e..60b3d2ee5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatOnAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatOnAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatTapeSpectraS3Request.java index 3e2ebd0d1..0101f21ed 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatTapeSpectraS3Response.java index 728c6c279..240b54b7a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelFormatTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllPoolsSpectraS3Request.java index c64f5346c..28cf31d55 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllPoolsSpectraS3Response.java index fdb9d3a0d..c27f7c0c8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllTapesSpectraS3Request.java index 661f73451..e7f452809 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllTapesSpectraS3Response.java index d256965b6..5ff1a9bac 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportOnAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportPoolSpectraS3Request.java index 8a523911e..3f23e7c94 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportPoolSpectraS3Response.java index e4b70d611..6d2a9a5b9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportTapeSpectraS3Request.java index b48969805..b66b73a04 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportTapeSpectraS3Response.java index 24df9ecca..5895ca614 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelImportTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelJobSpectraS3Request.java index fb0012fdc..536e22cb2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelJobSpectraS3Response.java index 866dcf6ba..009f445c9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineOnAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineOnAllTapesSpectraS3Request.java index 12169c609..2059b1674 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineOnAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineOnAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineOnAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineOnAllTapesSpectraS3Response.java index d44c662c7..189ebe4c0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineOnAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineOnAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineTapeSpectraS3Request.java index f78613863..b8e1257c5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineTapeSpectraS3Response.java index 8461d2393..01f84b0c2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelOnlineTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllPoolsSpectraS3Request.java index 3cdbdddba..41dee4ab8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllPoolsSpectraS3Response.java index 95512e7a3..da6ce139b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllTapesSpectraS3Request.java index eb8625fd7..5a4c4d76d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllTapesSpectraS3Response.java index 740d12429..e57adf245 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyOnAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyPoolSpectraS3Request.java index 2c340197d..c607ec6a6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyPoolSpectraS3Response.java index d028c6fe8..6d2617696 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyTapeSpectraS3Request.java index 53e893c10..aee7c4ad2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyTapeSpectraS3Response.java index 140331356..ab06cdfc7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CancelVerifyTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CleanTapeDriveSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CleanTapeDriveSpectraS3Request.java index aec0ca583..66ba86278 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CleanTapeDriveSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CleanTapeDriveSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CleanTapeDriveSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CleanTapeDriveSpectraS3Response.java index 56a9460b1..9c3513dab 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CleanTapeDriveSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CleanTapeDriveSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCanceledJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCanceledJobsSpectraS3Request.java index 5193ecf5c..4b8aed2d1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCanceledJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCanceledJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCanceledJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCanceledJobsSpectraS3Response.java index d2b8e0b09..52a9c4a2f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCanceledJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCanceledJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCompletedJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCompletedJobsSpectraS3Request.java index b4e238bbe..26ba0a71b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCompletedJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCompletedJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCompletedJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCompletedJobsSpectraS3Response.java index d06682383..7ce8d4798 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCompletedJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearAllCompletedJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobAzureTargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobAzureTargetsSpectraS3Request.java index 58be2d5f7..b850bc3fe 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobAzureTargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobAzureTargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobAzureTargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobAzureTargetsSpectraS3Response.java index 4832777cf..2005e576d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobAzureTargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobAzureTargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobDs3TargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobDs3TargetsSpectraS3Request.java index d310a8436..3743a01d4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobDs3TargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobDs3TargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobDs3TargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobDs3TargetsSpectraS3Response.java index c569ddb75..33838af65 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobDs3TargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobDs3TargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobPoolsSpectraS3Request.java index 3bebff3c7..779e65819 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobPoolsSpectraS3Response.java index 7e4cbb65e..cea38a891 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobS3TargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobS3TargetsSpectraS3Request.java index 8be876acb..fc23502a3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobS3TargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobS3TargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobS3TargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobS3TargetsSpectraS3Response.java index e664fe12f..ed01c160f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobS3TargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobS3TargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobTapesSpectraS3Request.java index 85de3c5c1..da025ad0f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobTapesSpectraS3Response.java index 49036abcb..c4a93ee69 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ClearSuspectBlobTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactAllPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactAllPoolsSpectraS3Request.java index 39a3e0cf5..c0c329e2a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactAllPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactAllPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactAllPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactAllPoolsSpectraS3Response.java index deae731c5..021849282 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactAllPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactAllPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactPoolSpectraS3Request.java index 41925c2d5..c5b4e5676 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactPoolSpectraS3Response.java index 177e08983..24855315b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/CompactPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ConvertStorageDomainToDs3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ConvertStorageDomainToDs3TargetSpectraS3Request.java index 7350b3ac3..ce3b351f9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ConvertStorageDomainToDs3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ConvertStorageDomainToDs3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ConvertStorageDomainToDs3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ConvertStorageDomainToDs3TargetSpectraS3Response.java index fb233924e..4504bbfaa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ConvertStorageDomainToDs3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ConvertStorageDomainToDs3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeallocatePoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeallocatePoolSpectraS3Request.java index 110dc368b..4c97ae1fc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeallocatePoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeallocatePoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeallocatePoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeallocatePoolSpectraS3Response.java index 780f5db6c..078d3c666 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeallocatePoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeallocatePoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateCreateUserSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateCreateUserSpectraS3Request.java index ce582887e..959945887 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateCreateUserSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateCreateUserSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateCreateUserSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateCreateUserSpectraS3Response.java index 676e01dc0..a66c96bd1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateCreateUserSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateCreateUserSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateDeleteUserSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateDeleteUserSpectraS3Request.java index a1cdaae8a..65d9013e7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateDeleteUserSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateDeleteUserSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateDeleteUserSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateDeleteUserSpectraS3Response.java index a5956a86d..e96602139 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateDeleteUserSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DelegateDeleteUserSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureDataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureDataReplicationRuleSpectraS3Request.java index 2a7ce1402..328440a55 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureDataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureDataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureDataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureDataReplicationRuleSpectraS3Response.java index c1e1c62a8..e2c563219 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureDataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureDataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetBucketNameSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetBucketNameSpectraS3Request.java index 4525c243e..c17f1fd0e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetBucketNameSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetBucketNameSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetBucketNameSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetBucketNameSpectraS3Response.java index 7a1cd9de4..68c32df34 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetBucketNameSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetBucketNameSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureNotificationRegistrationSpectraS3Request.java index 3e1ff512b..655390ba4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureNotificationRegistrationSpectraS3Response.java index c1bdbddce..4b39dba8e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureSpectraS3Request.java index c593c9f2b..3fc4e814d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureSpectraS3Response.java index 1c52a3f04..c2010f282 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetFailureSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetReadPreferenceSpectraS3Request.java index 4d19a3264..f97990111 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetReadPreferenceSpectraS3Response.java index 5b1adfb9c..8145747f9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetSpectraS3Request.java index 59291d07f..288fcec93 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetSpectraS3Response.java index ce1e5c410..150bf0cb1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteAzureTargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketAclSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketAclSpectraS3Request.java index 792cbcac1..b2bdebbd0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketAclSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketAclSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketAclSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketAclSpectraS3Response.java index 320524c0c..9e63970c0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketAclSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketAclSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketSpectraS3Request.java index 035cd51a0..08a6c7b12 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketSpectraS3Response.java index 054ce4ae6..60f6844d5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteBucketSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPersistenceRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPersistenceRuleSpectraS3Request.java index 109695f23..f7617ab76 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPersistenceRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPersistenceRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPersistenceRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPersistenceRuleSpectraS3Response.java index cc3f76ccf..a5087200c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPersistenceRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPersistenceRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicyAclSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicyAclSpectraS3Request.java index ff9489850..f85e82e31 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicyAclSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicyAclSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicyAclSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicyAclSpectraS3Response.java index cf8d64205..2508077bd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicyAclSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicyAclSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicySpectraS3Request.java index 99bea1bd9..05da6a00f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicySpectraS3Response.java index 3d2115475..566158aa4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDataPolicySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3DataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3DataReplicationRuleSpectraS3Request.java index 2be0dd1b3..4a8df6890 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3DataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3DataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3DataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3DataReplicationRuleSpectraS3Response.java index 6351e563e..0d2da9fae 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3DataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3DataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetFailureSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetFailureSpectraS3Request.java index f8984e67a..8f838a089 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetFailureSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetFailureSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetFailureSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetFailureSpectraS3Response.java index 9928a6370..46f0bc352 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetFailureSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetFailureSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetReadPreferenceSpectraS3Request.java index e10b82418..6fa14d8d1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetReadPreferenceSpectraS3Response.java index b4b43d83d..92f92e798 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetSpectraS3Request.java index 5727d76af..34c254411 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetSpectraS3Response.java index 8e82eff9c..cbdd0b2ce 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteDs3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteFolderRecursivelySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteFolderRecursivelySpectraS3Request.java index d511ad6ca..602736bcf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteFolderRecursivelySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteFolderRecursivelySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteFolderRecursivelySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteFolderRecursivelySpectraS3Response.java index 8fb4b2f49..ef13deace 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteFolderRecursivelySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteFolderRecursivelySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupMemberSpectraS3Request.java index 0e663feb6..55463868c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupMemberSpectraS3Response.java index 4eb4d67f1..f0ea3ba7e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupSpectraS3Request.java index d6fa6b078..0f2590e69 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupSpectraS3Response.java index ed3e01053..93886dee2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostPoolSpectraS3Request.java index a83803230..5ecdaf3a3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostPoolSpectraS3Response.java index 53ffcbb4b..e28c0a030 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostTapeSpectraS3Request.java index bc6c23644..b4f0bb4f5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostTapeSpectraS3Response.java index ae0fd0f14..c22755ac4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePermanentlyLostTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolFailureSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolFailureSpectraS3Request.java index ee40859aa..7a088a370 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolFailureSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolFailureSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolFailureSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolFailureSpectraS3Response.java index e18757e27..989cab524 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolFailureSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolFailureSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolPartitionSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolPartitionSpectraS3Request.java index e6782b938..e46b58a98 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolPartitionSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolPartitionSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolPartitionSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolPartitionSpectraS3Response.java index 6a637df32..cd69d0fa7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolPartitionSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeletePoolPartitionSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3DataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3DataReplicationRuleSpectraS3Request.java index 3826b8ed0..b87375a2c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3DataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3DataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3DataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3DataReplicationRuleSpectraS3Response.java index 5b4dc035f..0f80258fd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3DataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3DataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetBucketNameSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetBucketNameSpectraS3Request.java index 72930cdfb..c6744a828 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetBucketNameSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetBucketNameSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetBucketNameSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetBucketNameSpectraS3Response.java index d280bb40b..9ae7dd8bc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetBucketNameSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetBucketNameSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureNotificationRegistrationSpectraS3Request.java index fc9512d81..42e1eae10 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureNotificationRegistrationSpectraS3Response.java index 75a97719c..16a02b276 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureSpectraS3Request.java index e76892e0a..258aad844 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureSpectraS3Response.java index b054ae50d..3bde0277d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetFailureSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetReadPreferenceSpectraS3Request.java index 877511499..d28c07ba2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetReadPreferenceSpectraS3Response.java index 337443f55..aa45ba7dc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetSpectraS3Request.java index c17463eb4..09913c4d0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetSpectraS3Response.java index 9fe24fe06..d8ff5820b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteS3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainFailureSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainFailureSpectraS3Request.java index cc4e8c304..8491864fb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainFailureSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainFailureSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainFailureSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainFailureSpectraS3Response.java index 306010f14..ff4804d45 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainFailureSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainFailureSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainMemberSpectraS3Request.java index e4fb4e7de..20dfe46ff 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainMemberSpectraS3Response.java index 921bad876..44ffffa0d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainSpectraS3Request.java index a3c7358da..60700b3d6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainSpectraS3Response.java index 8bf9d7ccd..9be0bb8b3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteStorageDomainSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDensityDirectiveSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDensityDirectiveSpectraS3Request.java index 7117aa234..caf0bdd53 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDensityDirectiveSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDensityDirectiveSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDensityDirectiveSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDensityDirectiveSpectraS3Response.java index bc473207a..c70240382 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDensityDirectiveSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDensityDirectiveSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDriveSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDriveSpectraS3Request.java index d05b89886..22746f1cb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDriveSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDriveSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDriveSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDriveSpectraS3Response.java index 71bc38946..e2c8f0657 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDriveSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeDriveSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeFailureSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeFailureSpectraS3Request.java index 976462b73..ca2c9138e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeFailureSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeFailureSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeFailureSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeFailureSpectraS3Response.java index 410cf8b13..ce24a8b25 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeFailureSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapeFailureSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionFailureSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionFailureSpectraS3Request.java index e6b1fad52..3c7ef49f5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionFailureSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionFailureSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionFailureSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionFailureSpectraS3Response.java index f93a8b01e..c02a4b405 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionFailureSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionFailureSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionSpectraS3Request.java index 7b73db819..3d9255d02 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionSpectraS3Response.java index edfdfd605..dd784cdb3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/DeleteTapePartitionSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectAllTapesSpectraS3Request.java index d7fa0da13..716a0fef1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectAllTapesSpectraS3Response.java index 3f9a74f37..0ee9b28b7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainBlobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainBlobsSpectraS3Request.java index 5e3909fcc..3d8b0795a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainBlobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainBlobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainBlobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainBlobsSpectraS3Response.java index f02e68ae1..a4551e767 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainBlobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainBlobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainSpectraS3Request.java index 5acdc03ab..46e2b348a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainSpectraS3Response.java index 8c000bf9f..8665e6e04 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectStorageDomainSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectTapeSpectraS3Request.java index 75cf0de9f..00fdd05a7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectTapeSpectraS3Response.java index 7e8c9b066..df2ce74db 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/EjectTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFeatureKeyValidationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFeatureKeyValidationSpectraS3Request.java index 127609ab1..01163df13 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFeatureKeyValidationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFeatureKeyValidationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFeatureKeyValidationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFeatureKeyValidationSpectraS3Response.java index f22cd05bc..bdf9a01bc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFeatureKeyValidationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFeatureKeyValidationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFullCacheReclaimSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFullCacheReclaimSpectraS3Request.java index 08ce3d26a..2db3954eb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFullCacheReclaimSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFullCacheReclaimSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFullCacheReclaimSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFullCacheReclaimSpectraS3Response.java index fdb28cf9e..0cb0e9f29 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFullCacheReclaimSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceFullCacheReclaimSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForcePoolEnvironmentRefreshSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForcePoolEnvironmentRefreshSpectraS3Request.java index b3015481b..f9d2ce6e5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForcePoolEnvironmentRefreshSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForcePoolEnvironmentRefreshSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForcePoolEnvironmentRefreshSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForcePoolEnvironmentRefreshSpectraS3Response.java index 07443b6ff..7e775a969 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForcePoolEnvironmentRefreshSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForcePoolEnvironmentRefreshSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTapeEnvironmentRefreshSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTapeEnvironmentRefreshSpectraS3Request.java index f5d4fa619..b9d1e1f47 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTapeEnvironmentRefreshSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTapeEnvironmentRefreshSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTapeEnvironmentRefreshSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTapeEnvironmentRefreshSpectraS3Response.java index 20ab9e2c7..792dc8644 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTapeEnvironmentRefreshSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTapeEnvironmentRefreshSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTargetEnvironmentRefreshSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTargetEnvironmentRefreshSpectraS3Request.java index 764aeae84..1c9628ea3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTargetEnvironmentRefreshSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTargetEnvironmentRefreshSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTargetEnvironmentRefreshSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTargetEnvironmentRefreshSpectraS3Response.java index e3c42b79b..6d7fd4a13 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTargetEnvironmentRefreshSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ForceTargetEnvironmentRefreshSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllForeignPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllForeignPoolsSpectraS3Request.java index a815b7572..9adc41a3a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllForeignPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllForeignPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllForeignPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllForeignPoolsSpectraS3Response.java index 18434b5a5..7b7e6ffab 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllForeignPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllForeignPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllTapesSpectraS3Request.java index fc893ff10..6de67c5bc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllTapesSpectraS3Response.java index cf5d72294..2f6c5006d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatForeignPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatForeignPoolSpectraS3Request.java index 1a4b92bab..946e86101 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatForeignPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatForeignPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatForeignPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatForeignPoolSpectraS3Response.java index 9d97f32ee..eb0b998af 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatForeignPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatForeignPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatTapeSpectraS3Request.java index 58713fe8c..5f8f98624 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatTapeSpectraS3Response.java index 65042e7ca..760326622 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/FormatTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobSpectraS3Request.java index 48f90f7ad..25a62f729 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobSpectraS3Response.java index 31a45a660..157dfd581 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobsSpectraS3Request.java index 290af54a8..78cd49a2e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobsSpectraS3Response.java index 10c961473..8e7d02ed9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetActiveJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRuleSpectraS3Request.java index ba4380977..239660b91 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRuleSpectraS3Response.java index bf4b910f1..bc0edf173 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRulesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRulesSpectraS3Request.java index d87bf4760..ad38b5021 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRulesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRulesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRulesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRulesSpectraS3Response.java index b6f9f2047..c33f29ffe 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRulesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureDataReplicationRulesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetBucketNamesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetBucketNamesSpectraS3Request.java index bb2b302e0..916481961 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetBucketNamesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetBucketNamesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetBucketNamesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetBucketNamesSpectraS3Response.java index 6a44ea4fa..eea33db36 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetBucketNamesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetBucketNamesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationSpectraS3Request.java index c3bb79878..ba863fa4a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationSpectraS3Response.java index 7ba2e2310..9cbc075e1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationsSpectraS3Request.java index 75e50302f..0a7fa3018 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationsSpectraS3Response.java index 800a7df02..e082a707a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailureNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailuresSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailuresSpectraS3Request.java index 8c1268248..fff6fb4cc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailuresSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailuresSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailuresSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailuresSpectraS3Response.java index 6bdd9b8d4..bb13f38c3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailuresSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetFailuresSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferenceSpectraS3Request.java index f74df5299..704d0242d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferenceSpectraS3Response.java index 30d72509f..09f43ad29 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferencesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferencesSpectraS3Request.java index 0e5f79cf3..1b6fa66bc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferencesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferencesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferencesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferencesSpectraS3Response.java index ce5e6ebca..e465f763a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferencesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetReadPreferencesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetSpectraS3Request.java index 7f5e82c1f..8f214fe8b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetSpectraS3Response.java index 2a78a0f1d..2280e1ce3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetsSpectraS3Request.java index 1c54822c9..7f87498c2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetsSpectraS3Response.java index 0940693a9..d3804b470 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetAzureTargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobPersistenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobPersistenceSpectraS3Request.java index 4cb06b735..04ebabdf0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobPersistenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobPersistenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobPersistenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobPersistenceSpectraS3Response.java index dde154595..5316aecf2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobPersistenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobPersistenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnAzureTargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnAzureTargetSpectraS3Request.java index 88de54734..22dabea8a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnAzureTargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnAzureTargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnAzureTargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnAzureTargetSpectraS3Response.java index 1c14f3cb4..8d7faa266 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnAzureTargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnAzureTargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnDs3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnDs3TargetSpectraS3Request.java index 23c37d74f..1829b53d1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnDs3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnDs3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnDs3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnDs3TargetSpectraS3Response.java index 0dfedc828..c400853bb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnDs3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnDs3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnPoolSpectraS3Request.java index 8d21607b8..e10533d3d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnPoolSpectraS3Response.java index cad05cfde..5b81e71b5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnS3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnS3TargetSpectraS3Request.java index 0ba390808..09391ecf5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnS3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnS3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnS3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnS3TargetSpectraS3Response.java index 95ad60028..e838c3ba2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnS3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnS3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnTapeSpectraS3Request.java index 09d3aa238..8d246dae4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnTapeSpectraS3Response.java index e20f6dcf3..4a5611232 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBlobsOnTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclSpectraS3Request.java index 069bd5998..54262688d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclSpectraS3Response.java index 159f68fa7..4e7581193 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclsSpectraS3Request.java index 4a6252740..7c7ed5abb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclsSpectraS3Response.java index 5a03d4065..349c03eaf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketAclsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Request.java index 295065e9e..a77e981b9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Response.java index 603470447..85ef3000c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketCapacitySummarySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketSpectraS3Request.java index 22f4f639c..8f891e304 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketSpectraS3Response.java index 40d53fef7..178fdd177 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketsSpectraS3Request.java index acfc829bb..d7f1d33de 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketsSpectraS3Response.java index e0bfc0c0a..c3afa0cc9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBucketsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBulkJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBulkJobSpectraS3Request.java index 10f20fec2..b5ff739f1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBulkJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBulkJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBulkJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBulkJobSpectraS3Response.java index 552b34d95..8fe7d1c5f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBulkJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetBulkJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemSpectraS3Request.java index bad047937..6d9c0d2f0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemSpectraS3Response.java index 41fc0ebfd..1c747780e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemsSpectraS3Request.java index caa0d9ff2..77352cb7a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemsSpectraS3Response.java index ce89d8ee2..a485b632d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheFilesystemsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheStateSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheStateSpectraS3Request.java index 56398dca0..e899389fc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheStateSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheStateSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheStateSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheStateSpectraS3Response.java index 31965c028..a9d5cd6ef 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheStateSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCacheStateSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobSpectraS3Request.java index 2ea961b6a..90f7de8be 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobSpectraS3Response.java index ea6d08666..7bae774d4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobsSpectraS3Request.java index 76c1f6206..d898fb54f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobsSpectraS3Response.java index 40c514f9c..8bf691387 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCanceledJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobSpectraS3Request.java index 7eea21603..c59202855 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobSpectraS3Response.java index 4bfb12f5a..d01655423 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobsSpectraS3Request.java index 37ff601ac..0afbe50e8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobsSpectraS3Response.java index 077c0c9c5..e5016c0ad 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetCompletedJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPathBackendSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPathBackendSpectraS3Request.java index 28b417e62..9e307a0ee 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPathBackendSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPathBackendSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPathBackendSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPathBackendSpectraS3Response.java index 105a32d70..4adb90b08 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPathBackendSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPathBackendSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRuleSpectraS3Request.java index fdc3fd364..c2aca66af 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRuleSpectraS3Response.java index b17f2c726..6707da6da 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRulesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRulesSpectraS3Request.java index 2c2886a36..3f82095f1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRulesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRulesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRulesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRulesSpectraS3Response.java index a57a10b3f..1674095f7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRulesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPersistenceRulesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPlannerBlobStoreTasksSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPlannerBlobStoreTasksSpectraS3Request.java index af9c08996..65a18c12f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPlannerBlobStoreTasksSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPlannerBlobStoreTasksSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPlannerBlobStoreTasksSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPlannerBlobStoreTasksSpectraS3Response.java index e5a737bd5..93496f33b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPlannerBlobStoreTasksSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPlannerBlobStoreTasksSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPoliciesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPoliciesSpectraS3Request.java index 45049dad7..d6255a196 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPoliciesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPoliciesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPoliciesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPoliciesSpectraS3Response.java index c49fbb206..c789ae3a6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPoliciesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPoliciesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclSpectraS3Request.java index 4255f7860..9fc9524cf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclSpectraS3Response.java index 0654c4892..2172469a3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclsSpectraS3Request.java index df0637fef..79ffa539a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclsSpectraS3Response.java index f988ba938..a281d9bb0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicyAclsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicySpectraS3Request.java index a2b2d2f52..082207a6c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicySpectraS3Response.java index 8e163f8b9..3eaabe989 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDataPolicySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedAzureDataReplicationRulesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedAzureDataReplicationRulesSpectraS3Request.java index 4f880c35b..4fcb2eae9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedAzureDataReplicationRulesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedAzureDataReplicationRulesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedAzureDataReplicationRulesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedAzureDataReplicationRulesSpectraS3Response.java index c535340aa..141930884 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedAzureDataReplicationRulesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedAzureDataReplicationRulesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBlobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBlobsSpectraS3Request.java index ea756ba50..3715c7984 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBlobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBlobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBlobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBlobsSpectraS3Response.java index 21e5da316..429a24250 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBlobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBlobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBucketsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBucketsSpectraS3Request.java index 1fcbb7ac6..fdeae6cd9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBucketsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBucketsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBucketsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBucketsSpectraS3Response.java index be10baf02..2f85c8ed9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBucketsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedBucketsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDataPersistenceRulesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDataPersistenceRulesSpectraS3Request.java index 7ac267b77..479483f81 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDataPersistenceRulesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDataPersistenceRulesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDataPersistenceRulesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDataPersistenceRulesSpectraS3Response.java index 8e6f847b9..d240dfc9b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDataPersistenceRulesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDataPersistenceRulesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDs3DataReplicationRulesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDs3DataReplicationRulesSpectraS3Request.java index 67c615246..0ba61982f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDs3DataReplicationRulesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDs3DataReplicationRulesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDs3DataReplicationRulesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDs3DataReplicationRulesSpectraS3Response.java index 4091b6fea..9782c9d2c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDs3DataReplicationRulesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedDs3DataReplicationRulesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedS3DataReplicationRulesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedS3DataReplicationRulesSpectraS3Request.java index 10428a6d1..96854c94e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedS3DataReplicationRulesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedS3DataReplicationRulesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedS3DataReplicationRulesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedS3DataReplicationRulesSpectraS3Response.java index 178411e3e..0c05e49b0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedS3DataReplicationRulesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDegradedS3DataReplicationRulesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRuleSpectraS3Request.java index ad5e7fb7e..8a7663e51 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRuleSpectraS3Response.java index 9163066ae..634421d83 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRulesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRulesSpectraS3Request.java index c24e53b60..20e416868 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRulesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRulesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRulesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRulesSpectraS3Response.java index eacac3d34..9828ecbca 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRulesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3DataReplicationRulesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetDataPoliciesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetDataPoliciesSpectraS3Request.java index 344f6d670..33acb3feb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetDataPoliciesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetDataPoliciesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetDataPoliciesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetDataPoliciesSpectraS3Response.java index ace792507..388ab09c9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetDataPoliciesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetDataPoliciesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetFailuresSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetFailuresSpectraS3Request.java index afe266f66..21c63ead2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetFailuresSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetFailuresSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetFailuresSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetFailuresSpectraS3Response.java index 1066e90f1..1ff25dada 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetFailuresSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetFailuresSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferenceSpectraS3Request.java index 659829437..08686b9a9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferenceSpectraS3Response.java index be667d1cd..644d2fec5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferencesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferencesSpectraS3Request.java index dcb01c7f7..3077e1546 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferencesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferencesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferencesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferencesSpectraS3Response.java index d979a944d..48d29082e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferencesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetReadPreferencesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetSpectraS3Request.java index 519f0e946..123853810 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetSpectraS3Response.java index b86f5e145..512b11ea4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetsSpectraS3Request.java index 86c96e036..5a77a9e02 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetsSpectraS3Response.java index 008dc3888..948db3e1f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetDs3TargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetFeatureKeysSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetFeatureKeysSpectraS3Request.java index d44b824e4..fa08296fd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetFeatureKeysSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetFeatureKeysSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetFeatureKeysSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetFeatureKeysSpectraS3Response.java index 613c04de1..5cdeb7a72 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetFeatureKeysSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetFeatureKeysSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMemberSpectraS3Request.java index 050a12f6b..b55157c3a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMemberSpectraS3Response.java index 1c6865ece..e82eef95b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMembersSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMembersSpectraS3Request.java index 60dca5055..6a60d5c38 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMembersSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMembersSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMembersSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMembersSpectraS3Response.java index e0423228f..d8c2d15c6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMembersSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupMembersSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupSpectraS3Request.java index d5c30e4e9..7baa59392 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupSpectraS3Response.java index a48d69b38..695747a9a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupsSpectraS3Request.java index 13e9d5530..b4e9dc42a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupsSpectraS3Response.java index 3bea17a61..556a2de53 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetGroupsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkDaoSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkDaoSpectraS3Request.java index 12e29e392..8f638d3fc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkDaoSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkDaoSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkDaoSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkDaoSpectraS3Response.java index 25a187369..4b5b30666 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkDaoSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkDaoSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkSpectraS3Request.java index 69a1237d1..184ef96f7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkSpectraS3Response.java index 7e44e974b..5b083785f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunkSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunksReadyForClientProcessingSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunksReadyForClientProcessingSpectraS3Request.java index a88098379..78e525906 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunksReadyForClientProcessingSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunksReadyForClientProcessingSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunksReadyForClientProcessingSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunksReadyForClientProcessingSpectraS3Response.java index f9962ecab..d817fec7f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunksReadyForClientProcessingSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobChunksReadyForClientProcessingSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobSpectraS3Request.java index dc13af2d0..304fc251d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobSpectraS3Response.java index c85a91b4b..f0238f391 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobToReplicateSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobToReplicateSpectraS3Request.java index 82ccc1656..f50339c70 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobToReplicateSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobToReplicateSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobToReplicateSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobToReplicateSpectraS3Response.java index e889811b2..9a3d18294 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobToReplicateSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobToReplicateSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobsSpectraS3Request.java index 6230aed02..e47cd6c3e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobsSpectraS3Response.java index 8cd408c34..4ef79d9a4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodeSpectraS3Request.java index 23325b228..9c3ab5c86 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodeSpectraS3Response.java index c39e43d8b..822a3312f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodesSpectraS3Request.java index 20be4e82c..8590465b7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodesSpectraS3Response.java index a5a12a6e4..4814c2cf3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetNodesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectDetailsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectDetailsSpectraS3Request.java index 5f4b25716..bc3a9c8b9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectDetailsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectDetailsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectDetailsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectDetailsSpectraS3Response.java index 216672e0d..e73fff57b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectDetailsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectDetailsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsDetailsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsDetailsSpectraS3Request.java index 69d00b6f7..1468cae78 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsDetailsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsDetailsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsDetailsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsDetailsSpectraS3Response.java index 9e49904b4..b9c2508d6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsDetailsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsDetailsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsWithFullDetailsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsWithFullDetailsSpectraS3Request.java index 45ea25e44..164476c1c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsWithFullDetailsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsWithFullDetailsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsWithFullDetailsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsWithFullDetailsSpectraS3Response.java index 5b48db778..768bc1722 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsWithFullDetailsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetObjectsWithFullDetailsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsSpectraS3Request.java index 0e0ae220c..36725fd98 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsSpectraS3Response.java index 197bc236f..8c38b53c1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3Request.java index 891dd21f5..b788dd8b0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3Response.java index 87b0416a2..fb6611617 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPhysicalPlacementForObjectsWithFullDetailsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolFailuresSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolFailuresSpectraS3Request.java index f290c8ac8..20e26fd3c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolFailuresSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolFailuresSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolFailuresSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolFailuresSpectraS3Response.java index 1109e51df..9df65eb07 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolFailuresSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolFailuresSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionSpectraS3Request.java index 6b27d56fe..97bae8a80 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionSpectraS3Response.java index 8ba7424ed..d745809b3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionsSpectraS3Request.java index 16d42dedb..123cf0d53 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionsSpectraS3Response.java index ccb4b2a8c..3edd77749 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolPartitionsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolSpectraS3Request.java index 1a486c626..c76b1dca1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolSpectraS3Response.java index 03fcae0b4..7a1f6ab57 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolsSpectraS3Request.java index 730e861c3..2d7862fdc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolsSpectraS3Response.java index 6e4b612db..c57df23fd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRuleSpectraS3Request.java index f359dfca8..f19af6881 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRuleSpectraS3Response.java index d7b8af749..969edd594 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRulesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRulesSpectraS3Request.java index 1d64c8ed6..0a377d72a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRulesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRulesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRulesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRulesSpectraS3Response.java index f1a3382e8..12e0c2dfb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRulesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3DataReplicationRulesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetBucketNamesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetBucketNamesSpectraS3Request.java index 18bae1d93..3c91fbb13 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetBucketNamesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetBucketNamesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetBucketNamesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetBucketNamesSpectraS3Response.java index b5b775c8b..932f5e0d5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetBucketNamesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetBucketNamesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationSpectraS3Request.java index ea67fe9c9..880fc9555 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationSpectraS3Response.java index 32743c831..ce25088c9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationsSpectraS3Request.java index 3c4cf7566..831498e62 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationsSpectraS3Response.java index 4d5b82515..012e71b46 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailureNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailuresSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailuresSpectraS3Request.java index ae151b50b..bda239f0f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailuresSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailuresSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailuresSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailuresSpectraS3Response.java index 1e9ff0ecd..a2526ac11 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailuresSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetFailuresSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferenceSpectraS3Request.java index 26d78f6d0..65d7129b7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferenceSpectraS3Response.java index bd594a752..d95dc6190 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferencesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferencesSpectraS3Request.java index e854a2195..cfb149338 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferencesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferencesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferencesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferencesSpectraS3Response.java index 89a72b586..c0b7edcee 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferencesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetReadPreferencesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetSpectraS3Request.java index ada1c2fe6..873236b73 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetSpectraS3Response.java index 46cb5c54b..82e28b479 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetsSpectraS3Request.java index 3b9312f25..b7e157527 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetsSpectraS3Response.java index e139dd4bc..5838851ef 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetS3TargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Request.java index fae8aa5fa..629b80c47 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Response.java index 8ac5f8c11..9659ee573 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainCapacitySummarySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainFailuresSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainFailuresSpectraS3Request.java index 6058e6009..ea2cfca8c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainFailuresSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainFailuresSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainFailuresSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainFailuresSpectraS3Response.java index 802c06e6c..76d649926 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainFailuresSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainFailuresSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMemberSpectraS3Request.java index 19e83b6bd..bb5ae220b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMemberSpectraS3Response.java index 04253a679..4dd4832db 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Request.java index 4cf77f4a9..5fc1a9399 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Response.java index cd7f093af..cc34bb825 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainMembersSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainSpectraS3Request.java index 746583850..ee4eed9ef 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainSpectraS3Response.java index cf7144722..0a7129ad2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainsSpectraS3Request.java index c5675c95f..f6a3faf18 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainsSpectraS3Response.java index 02bcc279f..44a159668 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetStorageDomainsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobAzureTargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobAzureTargetsSpectraS3Request.java index f9a1b85fe..66de9faca 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobAzureTargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobAzureTargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobAzureTargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobAzureTargetsSpectraS3Response.java index d05384119..a06e0ae51 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobAzureTargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobAzureTargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobDs3TargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobDs3TargetsSpectraS3Request.java index d508dbe2b..25039b325 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobDs3TargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobDs3TargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobDs3TargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobDs3TargetsSpectraS3Response.java index 12d34c922..242156a22 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobDs3TargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobDs3TargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobPoolsSpectraS3Request.java index 5d129daf6..37c8e9767 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobPoolsSpectraS3Response.java index 19cfe12c4..880566944 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobS3TargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobS3TargetsSpectraS3Request.java index 3979baf18..dda644d85 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobS3TargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobS3TargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobS3TargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobS3TargetsSpectraS3Response.java index 390a41f3f..facafecd8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobS3TargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobS3TargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobTapesSpectraS3Request.java index fd56916fc..f00418a01 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobTapesSpectraS3Response.java index 15b39ce85..40afbd3b4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBlobTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBucketsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBucketsSpectraS3Request.java index a6579fcf3..68a53bc0e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBucketsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBucketsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBucketsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBucketsSpectraS3Response.java index b9c6edc0c..28b9fcebb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBucketsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectBucketsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsSpectraS3Request.java index 7f3b53a97..787be990e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsSpectraS3Response.java index 41c2ebcc1..0f734d491 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsWithFullDetailsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsWithFullDetailsSpectraS3Request.java index 3622a162a..73b0735d5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsWithFullDetailsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsWithFullDetailsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsWithFullDetailsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsWithFullDetailsSpectraS3Response.java index a0cd2c576..1f056ef0c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsWithFullDetailsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSuspectObjectsWithFullDetailsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Request.java index ead04f093..37a9766d6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Response.java index ff5a66118..609f23e49 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemCapacitySummarySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemFailuresSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemFailuresSpectraS3Request.java index a4e3fa6c3..ceb44e34b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemFailuresSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemFailuresSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemFailuresSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemFailuresSpectraS3Response.java index 244c1f790..36b006bc7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemFailuresSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemFailuresSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemInformationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemInformationSpectraS3Request.java index a7be5c7e6..2d3c5e741 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemInformationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemInformationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemInformationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemInformationSpectraS3Response.java index d984eab78..b3837e160 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemInformationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetSystemInformationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectiveSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectiveSpectraS3Request.java index d247f23d3..7b2614317 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectiveSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectiveSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectiveSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectiveSpectraS3Response.java index 248e3ee01..06fe6477d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectiveSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectiveSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Request.java index a272c07ba..208b7c200 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Response.java index 89f70a9ad..72a9da9fe 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDensityDirectivesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDriveSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDriveSpectraS3Request.java index 62784f620..67d2eaa80 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDriveSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDriveSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDriveSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDriveSpectraS3Response.java index 4feb35168..256ea13d8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDriveSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDriveSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDrivesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDrivesSpectraS3Request.java index 3480caaa4..61007f76d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDrivesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDrivesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDrivesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDrivesSpectraS3Response.java index 6d8a6301d..430360e28 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDrivesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeDrivesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeFailuresSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeFailuresSpectraS3Request.java index da5b7f294..e8f898f28 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeFailuresSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeFailuresSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeFailuresSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeFailuresSpectraS3Response.java index 97d326e2b..3dc6bd0f8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeFailuresSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeFailuresSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrariesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrariesSpectraS3Request.java index e248c1eaa..b05787664 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrariesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrariesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrariesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrariesSpectraS3Response.java index a994994b1..03175555e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrariesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrariesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrarySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrarySpectraS3Request.java index 2d1df5beb..38abf87ba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrarySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrarySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrarySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrarySpectraS3Response.java index 2e393edae..5519b8f29 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrarySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeLibrarySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionFailuresSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionFailuresSpectraS3Request.java index 26d68532f..3304cea13 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionFailuresSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionFailuresSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionFailuresSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionFailuresSpectraS3Response.java index c5df5d071..21beb3497 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionFailuresSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionFailuresSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionSpectraS3Request.java index 0cdd21c5d..38c7cbce7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionSpectraS3Response.java index 4bf5f1a18..a60b87f90 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionWithFullDetailsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionWithFullDetailsSpectraS3Request.java index bbfbc6711..7acf5c337 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionWithFullDetailsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionWithFullDetailsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionWithFullDetailsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionWithFullDetailsSpectraS3Response.java index 025c98074..02f010e9b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionWithFullDetailsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionWithFullDetailsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsSpectraS3Request.java index d79ecdd6c..2b2cd92bd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsSpectraS3Response.java index e471f814e..edf1ea990 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsWithFullDetailsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsWithFullDetailsSpectraS3Request.java index cfe0207c6..aa86dee97 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsWithFullDetailsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsWithFullDetailsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsWithFullDetailsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsWithFullDetailsSpectraS3Response.java index a2ad1703b..c63594510 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsWithFullDetailsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapePartitionsWithFullDetailsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeSpectraS3Request.java index 9e9da94f1..68048e782 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeSpectraS3Response.java index 36d7f24bb..d78377c06 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Request.java index d192c288f..9dacde437 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Response.java index 26dd6f3f0..24dfa2c81 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUserSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUserSpectraS3Request.java index 47fe03510..d2eba6ee3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUserSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUserSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUserSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUserSpectraS3Response.java index 82612e9ea..e9393bc87 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUserSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUserSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUsersSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUsersSpectraS3Request.java index 5ab5166f8..beeb1a0bc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUsersSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUsersSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUsersSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUsersSpectraS3Response.java index eb37c6536..22165820c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUsersSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/GetUsersSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllPoolsSpectraS3Request.java index d9e13c021..200e4c1f3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllPoolsSpectraS3Response.java index c544c2aa8..376d3cbb2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllTapesSpectraS3Request.java index d7c174b90..6e424268f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllTapesSpectraS3Response.java index 308905461..f86773818 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAzureTargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAzureTargetSpectraS3Request.java index 55c99503d..b24a7e341 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAzureTargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAzureTargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAzureTargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAzureTargetSpectraS3Response.java index 8911bf469..1425d9ee0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAzureTargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportAzureTargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportPoolSpectraS3Request.java index 4adf8a55b..5cf4ff01c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportPoolSpectraS3Response.java index 0ef8493dd..23d775f98 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportS3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportS3TargetSpectraS3Request.java index 8cdf9878e..1357d13ca 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportS3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportS3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportS3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportS3TargetSpectraS3Response.java index 484311bed..5493176cc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportS3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportS3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportTapeSpectraS3Request.java index dc8bfd7f7..8367a387f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportTapeSpectraS3Response.java index 29a9bbceb..09796222e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ImportTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectAllTapesSpectraS3Request.java index 8b4a4eeef..d7c73e021 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectAllTapesSpectraS3Response.java index c7fc6972a..c9dc73ee6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectTapeSpectraS3Request.java index f5cdb1c85..cd2c92b46 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectTapeSpectraS3Response.java index 4c9cb59ae..eeabb167a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/InspectTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3Request.java index 6bf269469..dc39d142e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3Response.java index 0c207312d..1069dabea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobAzureTargetsAsDegradedSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3Request.java index be8b21f0e..a65206784 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3Response.java index 417d83b3d..d54fecccf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobDs3TargetsAsDegradedSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobPoolsAsDegradedSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobPoolsAsDegradedSpectraS3Request.java index 24754359e..a38a1de13 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobPoolsAsDegradedSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobPoolsAsDegradedSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobPoolsAsDegradedSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobPoolsAsDegradedSpectraS3Response.java index 4decd6d81..7413ba02c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobPoolsAsDegradedSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobPoolsAsDegradedSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobS3TargetsAsDegradedSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobS3TargetsAsDegradedSpectraS3Request.java index 8410e7b2e..1c3d903f3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobS3TargetsAsDegradedSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobS3TargetsAsDegradedSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobS3TargetsAsDegradedSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobS3TargetsAsDegradedSpectraS3Response.java index b12d79664..6ddd2c59f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobS3TargetsAsDegradedSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobS3TargetsAsDegradedSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobTapesAsDegradedSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobTapesAsDegradedSpectraS3Request.java index f6687cc3a..4d07ce9de 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobTapesAsDegradedSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobTapesAsDegradedSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobTapesAsDegradedSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobTapesAsDegradedSpectraS3Response.java index 95c3d7b1e..745171b83 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobTapesAsDegradedSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/MarkSuspectBlobTapesAsDegradedSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyActiveJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyActiveJobSpectraS3Request.java index f1c9bbe3f..cc5402df4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyActiveJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyActiveJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyActiveJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyActiveJobSpectraS3Response.java index 6acf0182f..d454194ed 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyActiveJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyActiveJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllAzureTargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllAzureTargetsSpectraS3Request.java index c24cc0499..decd81d73 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllAzureTargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllAzureTargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllAzureTargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllAzureTargetsSpectraS3Response.java index 142c331db..e92c49fdf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllAzureTargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllAzureTargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllDs3TargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllDs3TargetsSpectraS3Request.java index 896363c3c..08c72a3b9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllDs3TargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllDs3TargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllDs3TargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllDs3TargetsSpectraS3Response.java index 1f0275c94..7b3be09aa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllDs3TargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllDs3TargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllPoolsSpectraS3Request.java index 6d3987470..52ad90d3e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllPoolsSpectraS3Response.java index a8bbeaf8a..bc2c3092f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllS3TargetsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllS3TargetsSpectraS3Request.java index 6f96ab761..9e0f6688e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllS3TargetsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllS3TargetsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllS3TargetsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllS3TargetsSpectraS3Response.java index 3e2339710..36239f833 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllS3TargetsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllS3TargetsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllTapePartitionsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllTapePartitionsSpectraS3Request.java index 2c654a86c..e006d8555 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllTapePartitionsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllTapePartitionsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllTapePartitionsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllTapePartitionsSpectraS3Response.java index 29a7c3c7e..7ffa1e9e9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllTapePartitionsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAllTapePartitionsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureDataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureDataReplicationRuleSpectraS3Request.java index 6cf8ce767..52f5ee3fe 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureDataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureDataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureDataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureDataReplicationRuleSpectraS3Response.java index 2224c2dae..66736e4b9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureDataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureDataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureTargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureTargetSpectraS3Request.java index 72f6ac3ad..26ca9ffa8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureTargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureTargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureTargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureTargetSpectraS3Response.java index 583793be9..f99257038 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureTargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyAzureTargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyBucketSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyBucketSpectraS3Request.java index 14aaab17d..0b05419ed 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyBucketSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyBucketSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyBucketSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyBucketSpectraS3Response.java index 115c2e525..ce15ddbbb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyBucketSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyBucketSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyCacheFilesystemSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyCacheFilesystemSpectraS3Request.java index 6b46bd6fe..2160330e7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyCacheFilesystemSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyCacheFilesystemSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyCacheFilesystemSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyCacheFilesystemSpectraS3Response.java index e10957725..ddcba2ea9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyCacheFilesystemSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyCacheFilesystemSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Request.java index c6fb0ff64..6835a4525 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Response.java index 8ee2766a9..8332773e8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPersistenceRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPersistenceRuleSpectraS3Request.java index 920d1bc14..6024360dd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPersistenceRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPersistenceRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPersistenceRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPersistenceRuleSpectraS3Response.java index e4e6ea059..19b3c4515 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPersistenceRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPersistenceRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPolicySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPolicySpectraS3Request.java index 945506790..e94c7e990 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPolicySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPolicySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPolicySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPolicySpectraS3Response.java index 36d1e2c27..b0a3eaf2f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPolicySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPolicySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3DataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3DataReplicationRuleSpectraS3Request.java index a4b5060bc..2d9755b43 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3DataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3DataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3DataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3DataReplicationRuleSpectraS3Response.java index adb2a334c..e3b245e65 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3DataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3DataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3TargetSpectraS3Request.java index 0c00d61d9..a37c058ed 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3TargetSpectraS3Response.java index 357862dac..83a61b848 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDs3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyGroupSpectraS3Request.java index 6e263d612..8e5db9a8b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyGroupSpectraS3Response.java index 0165d7ecc..b4ed50558 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyJobSpectraS3Request.java index d700a5914..172504970 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyJobSpectraS3Response.java index 4292d1961..9debd32b5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyNodeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyNodeSpectraS3Request.java index 50391f471..604f48e9e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyNodeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyNodeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyNodeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyNodeSpectraS3Response.java index 1715f937b..57de74253 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyNodeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyNodeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolPartitionSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolPartitionSpectraS3Request.java index 957bf5ea0..4969a529e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolPartitionSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolPartitionSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolPartitionSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolPartitionSpectraS3Response.java index a4eded32f..d51359fce 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolPartitionSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolPartitionSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolSpectraS3Request.java index a0e5162f3..363c7ca1e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolSpectraS3Response.java index 337cf6d68..a8b9c8455 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3DataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3DataReplicationRuleSpectraS3Request.java index d965786c4..11b7f9367 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3DataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3DataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3DataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3DataReplicationRuleSpectraS3Response.java index 5021d5701..e52b603f2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3DataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3DataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3TargetSpectraS3Request.java index 4024ff2fb..12de2b208 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3TargetSpectraS3Response.java index e568c8953..766587461 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyS3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainMemberSpectraS3Request.java index 5fe3583a4..485a3b07f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainMemberSpectraS3Response.java index 00d8666e3..fd64be2dc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainSpectraS3Request.java index 78374ac43..529bd2301 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainSpectraS3Response.java index 9a5750727..74c723c12 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyStorageDomainSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapePartitionSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapePartitionSpectraS3Request.java index efc6b9149..c5dc02149 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapePartitionSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapePartitionSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapePartitionSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapePartitionSpectraS3Response.java index c6aa2e75c..a5ec952db 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapePartitionSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapePartitionSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapeSpectraS3Request.java index 2c3a350c1..b8470dcb6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapeSpectraS3Response.java index 5187ed75b..d4d9c8d35 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyUserSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyUserSpectraS3Request.java index a4350dd3d..79bb27635 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyUserSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyUserSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyUserSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyUserSpectraS3Response.java index 5f30d8efe..fcff0a4e6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyUserSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyUserSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineAllTapesSpectraS3Request.java index 7100d19d3..54ee3b0f6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineAllTapesSpectraS3Response.java index 0244d237d..634f7fd20 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineTapeSpectraS3Request.java index b375f9fae..e208d7791 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineTapeSpectraS3Response.java index ffba82784..e74d01c07 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/OnlineTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PairBackRegisteredDs3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PairBackRegisteredDs3TargetSpectraS3Request.java index 6d0cbcd80..fb9854dda 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PairBackRegisteredDs3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PairBackRegisteredDs3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PairBackRegisteredDs3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PairBackRegisteredDs3TargetSpectraS3Response.java index 81705e130..aae2f097e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PairBackRegisteredDs3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PairBackRegisteredDs3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureDataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureDataReplicationRuleSpectraS3Request.java index 2c514b463..9315f048f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureDataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureDataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureDataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureDataReplicationRuleSpectraS3Response.java index 5271109db..9921384eb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureDataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureDataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetBucketNameSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetBucketNameSpectraS3Request.java index f6f30a3e9..0b1d255e8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetBucketNameSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetBucketNameSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetBucketNameSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetBucketNameSpectraS3Response.java index c57ddce1f..78836b8cc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetBucketNameSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetBucketNameSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetFailureNotificationRegistrationSpectraS3Request.java index d0d501d26..f349da0f0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetFailureNotificationRegistrationSpectraS3Response.java index 612eefe5a..e6dda3f09 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetReadPreferenceSpectraS3Request.java index 34eb768cc..a1a198318 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetReadPreferenceSpectraS3Response.java index 61a164410..5efd29959 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutAzureTargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForGroupSpectraS3Request.java index 26b39f0b0..fd73028ea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForGroupSpectraS3Response.java index 24d21d416..07205e72f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForUserSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForUserSpectraS3Request.java index 7200a3238..54c56c34b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForUserSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForUserSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForUserSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForUserSpectraS3Response.java index 301a43d19..5217f8628 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForUserSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketAclForUserSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketSpectraS3Request.java index d90e8c47b..895a3c63a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketSpectraS3Response.java index 3fd44c256..c53b7a96b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBucketSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Request.java index 2407395a2..7db39fbdb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Response.java index 3afb4d212..b14d2aefd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutBulkJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPersistenceRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPersistenceRuleSpectraS3Request.java index 3af704350..b7d76358c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPersistenceRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPersistenceRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPersistenceRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPersistenceRuleSpectraS3Response.java index 3fe99b50d..1e5859873 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPersistenceRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPersistenceRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForGroupSpectraS3Request.java index 571d567ee..a40dc1206 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForGroupSpectraS3Response.java index 58727c706..ed5008f61 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForUserSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForUserSpectraS3Request.java index 5c5f309a4..881c3c588 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForUserSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForUserSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForUserSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForUserSpectraS3Response.java index 14fbcff5b..443a563f4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForUserSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicyAclForUserSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicySpectraS3Request.java index 0626a9a40..590e616ca 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicySpectraS3Response.java index e2be91d3e..7e4ce6d5e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDataPolicySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3DataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3DataReplicationRuleSpectraS3Request.java index 7e269c9f8..1ad231dcb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3DataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3DataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3DataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3DataReplicationRuleSpectraS3Response.java index e4ee402b0..3c09ac89d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3DataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3DataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3TargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3TargetReadPreferenceSpectraS3Request.java index 3e20b4a97..4cf796250 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3TargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3TargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3TargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3TargetReadPreferenceSpectraS3Response.java index 6d54ddb3e..6fd4d32ec 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3TargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutDs3TargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForGroupSpectraS3Request.java index 2b3618f32..6c7dfc998 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForGroupSpectraS3Response.java index d04daef64..25a59e955 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForUserSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForUserSpectraS3Request.java index 5bb0e15b9..328cc8005 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForUserSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForUserSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForUserSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForUserSpectraS3Response.java index 1422fecee..c9839652f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForUserSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalBucketAclForUserSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForGroupSpectraS3Request.java index 119dd5168..810574f18 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForGroupSpectraS3Response.java index 402e1fce1..3e839751a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForUserSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForUserSpectraS3Request.java index a2cee3499..6794d5119 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForUserSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForUserSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForUserSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForUserSpectraS3Response.java index 65398ae7b..651ffd7ea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForUserSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGlobalDataPolicyAclForUserSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupGroupMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupGroupMemberSpectraS3Request.java index 6ab497d95..224a3dd49 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupGroupMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupGroupMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupGroupMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupGroupMemberSpectraS3Response.java index d36e4404d..ed56c1315 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupGroupMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupGroupMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupSpectraS3Request.java index a716f9cec..7daf04468 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupSpectraS3Response.java index 9132f9300..9a4524097 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolPartitionSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolPartitionSpectraS3Request.java index bc4b9dcb5..4215a7534 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolPartitionSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolPartitionSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolPartitionSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolPartitionSpectraS3Response.java index 51bd87b21..e703e4847 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolPartitionSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolPartitionSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolStorageDomainMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolStorageDomainMemberSpectraS3Request.java index c22d6115f..283385943 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolStorageDomainMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolStorageDomainMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolStorageDomainMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolStorageDomainMemberSpectraS3Response.java index 28d3ac759..151decec6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolStorageDomainMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutPoolStorageDomainMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3DataReplicationRuleSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3DataReplicationRuleSpectraS3Request.java index f6812f6aa..a7aa0012b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3DataReplicationRuleSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3DataReplicationRuleSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3DataReplicationRuleSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3DataReplicationRuleSpectraS3Response.java index d5eea0b2c..284ed58c8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3DataReplicationRuleSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3DataReplicationRuleSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetBucketNameSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetBucketNameSpectraS3Request.java index b7709c570..29f366399 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetBucketNameSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetBucketNameSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetBucketNameSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetBucketNameSpectraS3Response.java index d3715f991..c660a3366 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetBucketNameSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetBucketNameSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetFailureNotificationRegistrationSpectraS3Request.java index cb9dba85c..eeceab201 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetFailureNotificationRegistrationSpectraS3Response.java index 4f898f602..2f819f91f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetReadPreferenceSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetReadPreferenceSpectraS3Request.java index 000c698d7..23fce5ca4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetReadPreferenceSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetReadPreferenceSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetReadPreferenceSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetReadPreferenceSpectraS3Response.java index 19182c768..12ad09914 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetReadPreferenceSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutS3TargetReadPreferenceSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutStorageDomainSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutStorageDomainSpectraS3Request.java index faf7b1e2b..5ed3b98fb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutStorageDomainSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutStorageDomainSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutStorageDomainSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutStorageDomainSpectraS3Response.java index 9fe3e5ff8..b5285075a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutStorageDomainSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutStorageDomainSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Request.java index 1e1a33b01..d25e7f66d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Response.java index b7385b626..ab33d841c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeDensityDirectiveSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Request.java index c74c01fd6..4cde7ac71 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Response.java index 6cd6e7ec9..5b8805774 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutTapeStorageDomainMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutUserGroupMemberSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutUserGroupMemberSpectraS3Request.java index 7c839df3d..37c66c298 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutUserGroupMemberSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutUserGroupMemberSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutUserGroupMemberSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutUserGroupMemberSpectraS3Response.java index 436441ae1..f65dec7c0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutUserGroupMemberSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/PutUserGroupMemberSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportAllTapesSpectraS3Request.java index f085e131b..257727c61 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportAllTapesSpectraS3Response.java index 63e9001ab..674f9862f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportTapeSpectraS3Request.java index 6100bf34b..092a9915b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportTapeSpectraS3Response.java index c15f9a7ce..2b90b63b1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RawImportTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegenerateUserSecretKeySpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegenerateUserSecretKeySpectraS3Request.java index 14168cb54..70fdb2429 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegenerateUserSecretKeySpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegenerateUserSecretKeySpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegenerateUserSecretKeySpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegenerateUserSecretKeySpectraS3Response.java index dd6ef43c2..caf26edd4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegenerateUserSecretKeySpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegenerateUserSecretKeySpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterAzureTargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterAzureTargetSpectraS3Request.java index a1ee0594e..272d6a1fc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterAzureTargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterAzureTargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterAzureTargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterAzureTargetSpectraS3Response.java index ee4179640..fec0c3ef7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterAzureTargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterAzureTargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterDs3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterDs3TargetSpectraS3Request.java index b1cf9646b..62bc65fd4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterDs3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterDs3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterDs3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterDs3TargetSpectraS3Response.java index 27af0c77a..a1ca24da3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterDs3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterDs3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterS3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterS3TargetSpectraS3Request.java index b4d0fefd6..68a495dd5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterS3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterS3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterS3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterS3TargetSpectraS3Response.java index fb104e4c7..7a1f5939c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterS3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/RegisterS3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ReplicatePutJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ReplicatePutJobSpectraS3Request.java index abf15f841..84317559a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ReplicatePutJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ReplicatePutJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ReplicatePutJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ReplicatePutJobSpectraS3Response.java index 8356906e1..d1b632f5b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ReplicatePutJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ReplicatePutJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ResetInstanceIdentifierSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ResetInstanceIdentifierSpectraS3Request.java index bf7e006c9..1916a0baa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ResetInstanceIdentifierSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ResetInstanceIdentifierSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ResetInstanceIdentifierSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ResetInstanceIdentifierSpectraS3Response.java index c717e84e1..31204fdc8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ResetInstanceIdentifierSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ResetInstanceIdentifierSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateActiveJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateActiveJobSpectraS3Request.java index e01c9fe88..9aeb196d0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateActiveJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateActiveJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateActiveJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateActiveJobSpectraS3Response.java index 452a988e7..71a02771c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateActiveJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateActiveJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllActiveJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllActiveJobsSpectraS3Request.java index e34bc8131..3c882f5e2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllActiveJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllActiveJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllActiveJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllActiveJobsSpectraS3Response.java index f36b4d284..1fb3ee6fc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllActiveJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllActiveJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllJobsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllJobsSpectraS3Request.java index 562e9db27..51e619dc0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllJobsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllJobsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllJobsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllJobsSpectraS3Response.java index 4ae9455e2..7f95d1b21 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllJobsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateAllJobsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateJobSpectraS3Request.java index d7837cee0..f04c5153e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateJobSpectraS3Response.java index dbfcf9e9e..02816d1ae 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/TruncateJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllPoolsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllPoolsSpectraS3Request.java index 01ed03236..b93392715 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllPoolsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllPoolsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllPoolsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllPoolsSpectraS3Response.java index 7963bbcc9..9180330a6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllPoolsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllPoolsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllTapesSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllTapesSpectraS3Request.java index 8d48ba46b..36120c446 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllTapesSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllTapesSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllTapesSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllTapesSpectraS3Response.java index 7a48373da..9c2d6d1b1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllTapesSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAllTapesSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAzureTargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAzureTargetSpectraS3Request.java index 8872aeefe..6214e51e9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAzureTargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAzureTargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAzureTargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAzureTargetSpectraS3Response.java index f53bef49e..da6301bb7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAzureTargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyAzureTargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyBulkJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyBulkJobSpectraS3Request.java index 28def3be9..37f07d5af 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyBulkJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyBulkJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyBulkJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyBulkJobSpectraS3Response.java index 7fcee3d4c..a78ebde09 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyBulkJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyBulkJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyDs3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyDs3TargetSpectraS3Request.java index f9247e64a..e0287d487 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyDs3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyDs3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyDs3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyDs3TargetSpectraS3Response.java index f02b4897f..43bdbe922 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyDs3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyDs3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsSpectraS3Request.java index 6a1f7f72c..087d7adb6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsSpectraS3Response.java index 1f60dcf14..20d52b7ea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3Request.java index 98b0597fb..7953e32a9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3Response.java index 7680e7cd5..e066b0b57 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPhysicalPlacementForObjectsWithFullDetailsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPoolSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPoolSpectraS3Request.java index 093ad109c..83e6685d8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPoolSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPoolSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPoolSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPoolSpectraS3Response.java index 29e1bb325..5d325990b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPoolSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyPoolSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyS3TargetSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyS3TargetSpectraS3Request.java index 830dc5e4b..1d0111e71 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyS3TargetSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyS3TargetSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyS3TargetSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyS3TargetSpectraS3Response.java index 3087c073c..c77113e18 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyS3TargetSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyS3TargetSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySafeToCreatePutJobSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySafeToCreatePutJobSpectraS3Request.java index 4ce553bd4..8a19bc359 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySafeToCreatePutJobSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySafeToCreatePutJobSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySafeToCreatePutJobSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySafeToCreatePutJobSpectraS3Response.java index 6ca2c2a50..a22a8ae8f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySafeToCreatePutJobSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySafeToCreatePutJobSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySystemHealthSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySystemHealthSpectraS3Request.java index 030b18f65..b0d76cbaf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySystemHealthSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySystemHealthSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySystemHealthSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySystemHealthSpectraS3Response.java index e0e72d5ba..05c676100 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySystemHealthSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifySystemHealthSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyTapeSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyTapeSpectraS3Request.java index 7d07ad53d..f7376f9f6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyTapeSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyTapeSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyTapeSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyTapeSpectraS3Response.java index e1b45a995..4f97f7161 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyTapeSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyTapeSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyUserIsMemberOfGroupSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyUserIsMemberOfGroupSpectraS3Request.java index f0c7a57c4..78c2fa745 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyUserIsMemberOfGroupSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyUserIsMemberOfGroupSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyUserIsMemberOfGroupSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyUserIsMemberOfGroupSpectraS3Response.java index 94009b5b4..99aa9614f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyUserIsMemberOfGroupSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/VerifyUserIsMemberOfGroupSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteDs3TargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteDs3TargetFailureNotificationRegistrationSpectraS3Request.java index 239b2eb54..5cfc559aa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteDs3TargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteDs3TargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteDs3TargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteDs3TargetFailureNotificationRegistrationSpectraS3Response.java index e0f75f5f3..8bdbd1f49 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteDs3TargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteDs3TargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCompletedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCompletedNotificationRegistrationSpectraS3Request.java index e84345193..ac4d313b6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCompletedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCompletedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCompletedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCompletedNotificationRegistrationSpectraS3Response.java index a1403a859..e1e31b800 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCompletedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCompletedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreatedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreatedNotificationRegistrationSpectraS3Request.java index 10045c576..e9f6cf6c8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreatedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreatedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreatedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreatedNotificationRegistrationSpectraS3Response.java index f27c36d9b..535a56b95 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreatedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreatedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreationFailedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreationFailedNotificationRegistrationSpectraS3Request.java index 9a06fb366..51b2cd139 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreationFailedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreationFailedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreationFailedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreationFailedNotificationRegistrationSpectraS3Response.java index 564ebf469..c9e1b2df8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreationFailedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteJobCreationFailedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectCachedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectCachedNotificationRegistrationSpectraS3Request.java index 35f63f505..1911403e0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectCachedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectCachedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectCachedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectCachedNotificationRegistrationSpectraS3Response.java index f61ca277e..c18a53289 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectCachedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectCachedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectLostNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectLostNotificationRegistrationSpectraS3Request.java index b92511a09..490208a06 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectLostNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectLostNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectLostNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectLostNotificationRegistrationSpectraS3Response.java index 5221f2e1b..1705afe49 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectLostNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectLostNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectPersistedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectPersistedNotificationRegistrationSpectraS3Request.java index d75a92e97..8080041b1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectPersistedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectPersistedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectPersistedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectPersistedNotificationRegistrationSpectraS3Response.java index fff194657..a08aa5133 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectPersistedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteObjectPersistedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeletePoolFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeletePoolFailureNotificationRegistrationSpectraS3Request.java index 045c4be63..717757b2b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeletePoolFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeletePoolFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeletePoolFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeletePoolFailureNotificationRegistrationSpectraS3Response.java index 4174721db..bf06599b7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeletePoolFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeletePoolFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteStorageDomainFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteStorageDomainFailureNotificationRegistrationSpectraS3Request.java index 8350fc75c..f2bf735e0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteStorageDomainFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteStorageDomainFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteStorageDomainFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteStorageDomainFailureNotificationRegistrationSpectraS3Response.java index b035958e3..aebbe6857 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteStorageDomainFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteStorageDomainFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteSystemFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteSystemFailureNotificationRegistrationSpectraS3Request.java index 91a3c30a7..f261b8cfc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteSystemFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteSystemFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteSystemFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteSystemFailureNotificationRegistrationSpectraS3Response.java index 183f5069e..bd64d26ab 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteSystemFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteSystemFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapeFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapeFailureNotificationRegistrationSpectraS3Request.java index f98445e3e..85ea9fa74 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapeFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapeFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapeFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapeFailureNotificationRegistrationSpectraS3Response.java index 50aa1fb94..721bad389 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapeFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapeFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapePartitionFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapePartitionFailureNotificationRegistrationSpectraS3Request.java index ad2b4d91f..698bb5e62 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapePartitionFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapePartitionFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapePartitionFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapePartitionFailureNotificationRegistrationSpectraS3Response.java index 8a9f74686..2a9b44f3d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapePartitionFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/DeleteTapePartitionFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationSpectraS3Request.java index 9e80d7101..f6802fb70 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationSpectraS3Response.java index 9b7c3cf38..407dbbdc3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationsSpectraS3Request.java index f1bb46cc2..faca0405d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationsSpectraS3Response.java index 53b74ab21..caf56f166 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetDs3TargetFailureNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationSpectraS3Request.java index 21a9adbd6..ffdeaae2e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationSpectraS3Response.java index cbfdc201b..4268657db 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationsSpectraS3Request.java index f2b3d9ced..22b5afe2b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationsSpectraS3Response.java index 756b50d9b..4db276b5e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCompletedNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationSpectraS3Request.java index 646f0e605..12f2a39d8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationSpectraS3Response.java index 934a0314f..94927fa8d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationsSpectraS3Request.java index 5c8bad1a8..eceeb1e70 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationsSpectraS3Response.java index 278783673..7811c97d7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreatedNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationSpectraS3Request.java index 20e7cd585..a384b968b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationSpectraS3Response.java index af1b502cb..01797ea3c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationsSpectraS3Request.java index 6be541650..319c69ce8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationsSpectraS3Response.java index 850b774eb..05d3e759b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetJobCreationFailedNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationSpectraS3Request.java index d8b426309..7d3ebf76e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationSpectraS3Response.java index 731180a25..691a690f6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationsSpectraS3Request.java index 02ce173eb..bbe360f3c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationsSpectraS3Response.java index bb7c598df..a0ef3a529 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectCachedNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationSpectraS3Request.java index a41e27161..1d8bb3eb9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationSpectraS3Response.java index 21312e784..7b1c096b5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationsSpectraS3Request.java index 85083d677..d6787585f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationsSpectraS3Response.java index a032d4cb0..5bb71aede 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectLostNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationSpectraS3Request.java index a89ee7b34..ee452f3f6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationSpectraS3Response.java index 6772cc4e5..b3f1f6a0a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationsSpectraS3Request.java index 55c8d1e9b..5cc593b34 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationsSpectraS3Response.java index 31ac328f4..aa183ac52 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetObjectPersistedNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationSpectraS3Request.java index 17e3d0e4e..153d98088 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationSpectraS3Response.java index ea6b89b81..a880d8541 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationsSpectraS3Request.java index 952fef6ed..acb6a1968 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationsSpectraS3Response.java index 116453b38..fcefa44ba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetPoolFailureNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationSpectraS3Request.java index be4637f17..2465349ee 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationSpectraS3Response.java index 9a9933222..e268bfa6b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationsSpectraS3Request.java index 3e9836221..fcec8988c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationsSpectraS3Response.java index cf0d0a603..b5eea2d60 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetStorageDomainFailureNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationSpectraS3Request.java index 2289782b3..f1d6d9c1d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationSpectraS3Response.java index 0ade5dd96..6e4e72c40 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationsSpectraS3Request.java index a018835c1..33e10e410 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationsSpectraS3Response.java index 04564a93c..b1c11422e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetSystemFailureNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationSpectraS3Request.java index 744f14a38..0644a09d5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationSpectraS3Response.java index 4852037ef..e23f371f2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationsSpectraS3Request.java index 68207df54..7ffe145f3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationsSpectraS3Response.java index a48adb0a0..ff1295e9b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapeFailureNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationSpectraS3Request.java index 4b0390c3c..def26fc64 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationSpectraS3Response.java index 54f1e0b03..5da977780 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationsSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationsSpectraS3Request.java index 077fb3362..92dd166f6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationsSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationsSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationsSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationsSpectraS3Response.java index 12e896229..6e6d05b81 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationsSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/GetTapePartitionFailureNotificationRegistrationsSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutDs3TargetFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutDs3TargetFailureNotificationRegistrationSpectraS3Request.java index 548c7faf3..b8a1f4c2e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutDs3TargetFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutDs3TargetFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutDs3TargetFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutDs3TargetFailureNotificationRegistrationSpectraS3Response.java index 931df29d4..8be3a0d9e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutDs3TargetFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutDs3TargetFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCompletedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCompletedNotificationRegistrationSpectraS3Request.java index b4dcdb438..d9ce87e99 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCompletedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCompletedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCompletedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCompletedNotificationRegistrationSpectraS3Response.java index cd589e443..c7c3d69e9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCompletedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCompletedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreatedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreatedNotificationRegistrationSpectraS3Request.java index 5782cc444..b3c97782e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreatedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreatedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreatedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreatedNotificationRegistrationSpectraS3Response.java index 569dcee13..75a9e1160 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreatedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreatedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreationFailedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreationFailedNotificationRegistrationSpectraS3Request.java index 08285353d..eff12cc59 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreationFailedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreationFailedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreationFailedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreationFailedNotificationRegistrationSpectraS3Response.java index 9af036861..c82359c79 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreationFailedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutJobCreationFailedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectCachedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectCachedNotificationRegistrationSpectraS3Request.java index 7bf3a9d94..14b48dcc8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectCachedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectCachedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectCachedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectCachedNotificationRegistrationSpectraS3Response.java index a02d08761..6bbe9cc48 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectCachedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectCachedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectLostNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectLostNotificationRegistrationSpectraS3Request.java index bef37e1e2..728b8d6c2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectLostNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectLostNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectLostNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectLostNotificationRegistrationSpectraS3Response.java index 7949f5cd7..2703052a0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectLostNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectLostNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectPersistedNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectPersistedNotificationRegistrationSpectraS3Request.java index d94928346..613e184e4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectPersistedNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectPersistedNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectPersistedNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectPersistedNotificationRegistrationSpectraS3Response.java index 585a1db1b..f8f03492c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectPersistedNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutObjectPersistedNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutPoolFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutPoolFailureNotificationRegistrationSpectraS3Request.java index e9be01db0..b21cd3777 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutPoolFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutPoolFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutPoolFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutPoolFailureNotificationRegistrationSpectraS3Response.java index c32b037ec..f8acc7762 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutPoolFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutPoolFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutStorageDomainFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutStorageDomainFailureNotificationRegistrationSpectraS3Request.java index 571a01fd8..4771e0a92 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutStorageDomainFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutStorageDomainFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutStorageDomainFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutStorageDomainFailureNotificationRegistrationSpectraS3Response.java index a9e9278f4..7b3054a82 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutStorageDomainFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutStorageDomainFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutSystemFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutSystemFailureNotificationRegistrationSpectraS3Request.java index b6e71d63d..72d356135 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutSystemFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutSystemFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutSystemFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutSystemFailureNotificationRegistrationSpectraS3Response.java index ce258e9b0..4322b340c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutSystemFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutSystemFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapeFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapeFailureNotificationRegistrationSpectraS3Request.java index 121dbc3c4..9b4fa261b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapeFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapeFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapeFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapeFailureNotificationRegistrationSpectraS3Response.java index e53601094..55c17c2c5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapeFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapeFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapePartitionFailureNotificationRegistrationSpectraS3Request.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapePartitionFailureNotificationRegistrationSpectraS3Request.java index cb4d67fee..4b26e584c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapePartitionFailureNotificationRegistrationSpectraS3Request.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapePartitionFailureNotificationRegistrationSpectraS3Request.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapePartitionFailureNotificationRegistrationSpectraS3Response.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapePartitionFailureNotificationRegistrationSpectraS3Response.java index bceeb2f86..61e135637 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapePartitionFailureNotificationRegistrationSpectraS3Response.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/notifications/PutTapePartitionFailureNotificationRegistrationSpectraS3Response.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/ContentLengthNotMatchException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/ContentLengthNotMatchException.java index 6d3e0e932..950b474b8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/ContentLengthNotMatchException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/ContentLengthNotMatchException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/Ds3NoMoreRetriesException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/Ds3NoMoreRetriesException.java index 745facbb8..1622496ea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/Ds3NoMoreRetriesException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/Ds3NoMoreRetriesException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/FolderNameMissingTrailingForwardSlash.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/FolderNameMissingTrailingForwardSlash.java index 25614be28..3bba12767 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/FolderNameMissingTrailingForwardSlash.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/FolderNameMissingTrailingForwardSlash.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/InvalidCertificate.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/InvalidCertificate.java index 4207a3175..377b66dfb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/InvalidCertificate.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/InvalidCertificate.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/RetryAfterExpectedException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/RetryAfterExpectedException.java index 197b34576..e810de2b0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/RetryAfterExpectedException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/RetryAfterExpectedException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/UnableToConvertToCommonPrefixesException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/UnableToConvertToCommonPrefixesException.java index 7fa52ec8b..ab24a7e06 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/UnableToConvertToCommonPrefixesException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/UnableToConvertToCommonPrefixesException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/UnableToConvertToContentsException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/UnableToConvertToContentsException.java index 37f69694c..a2f932efd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/UnableToConvertToContentsException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/exceptions/UnableToConvertToContentsException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ChecksumFunction.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ChecksumFunction.java index b9abe24c6..7dcae58d0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ChecksumFunction.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ChecksumFunction.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ChecksumListener.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ChecksumListener.java index 07c5d134f..45567f856 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ChecksumListener.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ChecksumListener.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/DataTransferredListener.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/DataTransferredListener.java index 90c11f9fd..6de45730c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/DataTransferredListener.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/DataTransferredListener.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java index 4ca191438..5665a2a5e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java index 0d562443b..a4a2890cb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpersImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java index e21ba26b7..09f7250db 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java index 4f99d36ee..a556163e5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectPutter.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectPutter.java index f9f568e3b..a519d608f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectPutter.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectPutter.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileSystemHelper.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileSystemHelper.java index 027978e4d..bf353702a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileSystemHelper.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileSystemHelper.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileSystemHelperImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileSystemHelperImpl.java index e36e55983..16ecbc61b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileSystemHelperImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileSystemHelperImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FolderNameFilter.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FolderNameFilter.java index f20832470..d4d896a72 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FolderNameFilter.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FolderNameFilter.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobImpl.java index eb94742db..c59d923ce 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPart.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPart.java index 0096b698a..e9d62227f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPart.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPart.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTracker.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTracker.java index 4cc675bbc..6280a29fa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTracker.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTracker.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTrackerFactory.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTrackerFactory.java index 79b40ef6c..3d18a1918 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTrackerFactory.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTrackerFactory.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTrackerImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTrackerImpl.java index df4a78128..7ce67b7b7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTrackerImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobPartTrackerImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryException.java index 877ab6a8d..4f9751703 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryNotActiveException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryNotActiveException.java index 386d055bf..10f87c167 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryNotActiveException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryNotActiveException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryTypeException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryTypeException.java index f897cec38..645a35421 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryTypeException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobRecoveryTypeException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobState.java index f4abf11d7..3a2e6add6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/JobState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectChannelBuilderLogger.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectChannelBuilderLogger.java index 2d7e49a71..9f8e7a32d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectChannelBuilderLogger.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectChannelBuilderLogger.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectCompletedListener.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectCompletedListener.java index 2984c010f..426b6ca3e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectCompletedListener.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectCompletedListener.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPart.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPart.java index 6ae3fa771..4b0376d15 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPart.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPart.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartComparator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartComparator.java index 2e1a978da..c737eade9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartComparator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartComparator.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTracker.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTracker.java index deb09490d..3ba543720 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTracker.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTracker.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl.java index a5f585898..e046dcb41 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectStorageSpaceVerificationResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectStorageSpaceVerificationResult.java index cc1f02491..a55cb6a97 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectStorageSpaceVerificationResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectStorageSpaceVerificationResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ReadJobImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ReadJobImpl.java index 394e43369..a1789cbfd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ReadJobImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ReadJobImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/RecoverableIOException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/RecoverableIOException.java index 7cabee522..126624ce4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/RecoverableIOException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/RecoverableIOException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/TruncateNotAllowedException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/TruncateNotAllowedException.java index fe10d2491..2f601079b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/TruncateNotAllowedException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/TruncateNotAllowedException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/UnrecoverableIOException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/UnrecoverableIOException.java index fec5a69b2..4b3ad5cdd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/UnrecoverableIOException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/UnrecoverableIOException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/WaitingForChunksListener.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/WaitingForChunksListener.java index 46b73111b..6a151c5ba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/WaitingForChunksListener.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/WaitingForChunksListener.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/WriteJobImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/WriteJobImpl.java index e1b394162..7e2cca9fa 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/WriteJobImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/WriteJobImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/IoLoggingChannelBuilder.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/IoLoggingChannelBuilder.java index b032abe62..6559be0ef 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/IoLoggingChannelBuilder.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/IoLoggingChannelBuilder.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectInputStreamBuilder.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectInputStreamBuilder.java index 84de84953..ccb900ae9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectInputStreamBuilder.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectInputStreamBuilder.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectOutputStreamBuilder.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectOutputStreamBuilder.java index 2c196ea40..8ef139ba6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectOutputStreamBuilder.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectOutputStreamBuilder.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/PrefixAdderObjectChannelBuilder.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/PrefixAdderObjectChannelBuilder.java index c8f7a2997..5d79197e8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/PrefixAdderObjectChannelBuilder.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/PrefixAdderObjectChannelBuilder.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/PrefixRemoverObjectChannelBuilder.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/PrefixRemoverObjectChannelBuilder.java index 382862dc1..2114c0cb4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/PrefixRemoverObjectChannelBuilder.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/PrefixRemoverObjectChannelBuilder.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ReadOnlySeekableByteChannel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ReadOnlySeekableByteChannel.java index a50e1df50..02b7cb9cf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ReadOnlySeekableByteChannel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/ReadOnlySeekableByteChannel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/WriteOnlySeekableByteChannel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/WriteOnlySeekableByteChannel.java index 73b12303c..3bb85b305 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/WriteOnlySeekableByteChannel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channelbuilders/WriteOnlySeekableByteChannel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/BlobComparator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/BlobComparator.java index a6833ff77..106fd7b1d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/BlobComparator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/BlobComparator.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/RangedSeekableByteChannel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/RangedSeekableByteChannel.java index 24f303646..68f24bd43 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/RangedSeekableByteChannel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/RangedSeekableByteChannel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/WindowedChannelFactory.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/WindowedChannelFactory.java index 7455b2203..c75a4a997 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/WindowedChannelFactory.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/WindowedChannelFactory.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/WindowedSeekableByteChannel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/WindowedSeekableByteChannel.java index afe4600fb..8e3ec5b22 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/WindowedSeekableByteChannel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/channels/WindowedSeekableByteChannel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/ConcurrentEventRunner.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/ConcurrentEventRunner.java index 37dd60a20..edbde6d9e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/ConcurrentEventRunner.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/ConcurrentEventRunner.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/EventRunner.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/EventRunner.java index 2a0f0003a..c6a94fac7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/EventRunner.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/EventRunner.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/MetadataEvent.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/MetadataEvent.java index cbe89fef2..c97a340cd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/MetadataEvent.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/MetadataEvent.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.events; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/SameThreadEventRunner.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/SameThreadEventRunner.java index 003d028fa..296a9d0e5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/SameThreadEventRunner.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/events/SameThreadEventRunner.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/options/ReadJobOptions.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/options/ReadJobOptions.java index acaeeba97..244134de1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/options/ReadJobOptions.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/options/ReadJobOptions.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/options/WriteJobOptions.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/options/WriteJobOptions.java index 2c5080fe7..cad30f35c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/options/WriteJobOptions.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/options/WriteJobOptions.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/package-info.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/package-info.java index bbbab5441..8f0d92711 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/package-info.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/package-info.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/FileSystemKey.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/FileSystemKey.java index d388f711d..a2d21b9ec 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/FileSystemKey.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/FileSystemKey.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoader.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoader.java index ddabea3c3..f237c413a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoader.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoader.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoaderFactory.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoaderFactory.java index 7fb40d110..b2766794a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoaderFactory.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketKeyLoaderFactory.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java index 48a1d6d4c..cd01265a1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetBucketLoaderFactory.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetObjectsFullDetailsLoader.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetObjectsFullDetailsLoader.java index 0ea2b7701..d8063054c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetObjectsFullDetailsLoader.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetObjectsFullDetailsLoader.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetObjectsFullDetailsLoaderFactory.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetObjectsFullDetailsLoaderFactory.java index 3371e72e1..e63e66961 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetObjectsFullDetailsLoaderFactory.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/GetObjectsFullDetailsLoaderFactory.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/PaginatingCommand.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/PaginatingCommand.java index 56b6d1f26..089c6c8f8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/PaginatingCommand.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/PaginatingCommand.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/SpectraS3PaginationLoader.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/SpectraS3PaginationLoader.java index df99b484b..9b205cfcb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/SpectraS3PaginationLoader.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/SpectraS3PaginationLoader.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/commands/GetObjectsFullDetailsPaginatingCommand.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/commands/GetObjectsFullDetailsPaginatingCommand.java index bb594e06e..2fc05ad50 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/commands/GetObjectsFullDetailsPaginatingCommand.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/commands/GetObjectsFullDetailsPaginatingCommand.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/package-info.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/package-info.java index 48cc21db2..18f3ffc1b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/package-info.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/pagination/package-info.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java index 4d7ee0386..746662441 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/AbstractBlobStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/AbstractBlobStrategy.java index e9d9d4a3f..7fbb883ff 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/AbstractBlobStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/AbstractBlobStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlackPearlChunkAttemptRetryDelayBehavior.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlackPearlChunkAttemptRetryDelayBehavior.java index 46ba540b8..1481ef3f8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlackPearlChunkAttemptRetryDelayBehavior.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlackPearlChunkAttemptRetryDelayBehavior.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlobStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlobStrategy.java index 6b94c20e9..ded60b5bb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlobStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlobStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlobStrategyMaker.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlobStrategyMaker.java index 40d254142..99aa87029 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlobStrategyMaker.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/BlobStrategyMaker.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ChunkAttemptRetryBehavior.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ChunkAttemptRetryBehavior.java index dc379524b..40b3906c8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ChunkAttemptRetryBehavior.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ChunkAttemptRetryBehavior.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ChunkAttemptRetryDelayBehavior.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ChunkAttemptRetryDelayBehavior.java index 9ab58ce01..409c4ea1b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ChunkAttemptRetryDelayBehavior.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ChunkAttemptRetryDelayBehavior.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ClientDefinedChunkAttemptRetryDelayBehavior.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ClientDefinedChunkAttemptRetryDelayBehavior.java index 167e60bfd..c1f53273d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ClientDefinedChunkAttemptRetryDelayBehavior.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ClientDefinedChunkAttemptRetryDelayBehavior.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ContinueForeverChunkAttemptsRetryBehavior.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ContinueForeverChunkAttemptsRetryBehavior.java index 6a32bc084..fb2a5135c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ContinueForeverChunkAttemptsRetryBehavior.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/ContinueForeverChunkAttemptsRetryBehavior.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/GetSequentialBlobStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/GetSequentialBlobStrategy.java index 9501f2220..3b5b82c7b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/GetSequentialBlobStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/GetSequentialBlobStrategy.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/MaxChunkAttemptsRetryBehavior.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/MaxChunkAttemptsRetryBehavior.java index 4fbc70507..ff69856d6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/MaxChunkAttemptsRetryBehavior.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/MaxChunkAttemptsRetryBehavior.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.blobstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/PutSequentialBlobStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/PutSequentialBlobStrategy.java index 35478a302..647586f6b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/PutSequentialBlobStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/blobstrategy/PutSequentialBlobStrategy.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/ChannelPreparable.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/ChannelPreparable.java index 4f61319d2..0bb7224cf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/ChannelPreparable.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/ChannelPreparable.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/ChannelStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/ChannelStrategy.java index 0cae311e1..6fac0a50f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/ChannelStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/ChannelStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/NullChannelPreparable.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/NullChannelPreparable.java index f152ce3a5..4a50b4c4f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/NullChannelPreparable.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/NullChannelPreparable.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/RandomAccessChannelStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/RandomAccessChannelStrategy.java index 11a837db8..f268c0e60 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/RandomAccessChannelStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/RandomAccessChannelStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SeekableByteChannelDecorator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SeekableByteChannelDecorator.java index 9196caff4..5a498caf5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SeekableByteChannelDecorator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SeekableByteChannelDecorator.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialChannelStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialChannelStrategy.java index d3b7974f0..4d6163dbe 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialChannelStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialChannelStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialFileReaderChannelStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialFileReaderChannelStrategy.java index fe12359f2..2f7270fdc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialFileReaderChannelStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialFileReaderChannelStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialFileWriterChannelStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialFileWriterChannelStrategy.java index 7126e82d6..998fd6c71 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialFileWriterChannelStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/SequentialFileWriterChannelStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/TruncatingChannelPreparable.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/TruncatingChannelPreparable.java index 932fe7990..f806608ec 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/TruncatingChannelPreparable.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/channelstrategy/TruncatingChannelPreparable.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.channelstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/AbstractObserver.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/AbstractObserver.java index 69fac1560..a02b3ab87 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/AbstractObserver.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/AbstractObserver.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/AbstractTransferStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/AbstractTransferStrategy.java index f42a195a4..13d842b0d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/AbstractTransferStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/AbstractTransferStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/BlobTransferredEventObserver.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/BlobTransferredEventObserver.java index fc0c38655..0b6835b4d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/BlobTransferredEventObserver.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/BlobTransferredEventObserver.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ChecksumEvent.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ChecksumEvent.java index 6011b0815..39cadcb64 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ChecksumEvent.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ChecksumEvent.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ChecksumObserver.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ChecksumObserver.java index 68310bcd8..ab1e902f0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ChecksumObserver.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ChecksumObserver.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ContinueForeverTransferRetryDecorator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ContinueForeverTransferRetryDecorator.java index c2a4954ed..d3fb5518b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ContinueForeverTransferRetryDecorator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ContinueForeverTransferRetryDecorator.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/DataTransferredObserver.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/DataTransferredObserver.java index d25191cac..853b951e2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/DataTransferredObserver.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/DataTransferredObserver.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/EventDispatcher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/EventDispatcher.java index 0810ac7bb..cfb7623ac 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/EventDispatcher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/EventDispatcher.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/EventDispatcherImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/EventDispatcherImpl.java index 946648f78..8569e03cc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/EventDispatcherImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/EventDispatcherImpl.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/FailureEventObserver.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/FailureEventObserver.java index b273b27bf..c527ddbaf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/FailureEventObserver.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/FailureEventObserver.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobNetworkFailureRetryDecorator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobNetworkFailureRetryDecorator.java index 737151477..8475b33de 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobNetworkFailureRetryDecorator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobNetworkFailureRetryDecorator.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobPartialBlobTransferMethod.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobPartialBlobTransferMethod.java index dc8bc3b56..408525eba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobPartialBlobTransferMethod.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobPartialBlobTransferMethod.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobTransferMethod.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobTransferMethod.java index 3a174145d..c407285e3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobTransferMethod.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/GetJobTransferMethod.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MaxNumObjectTransferAttemptsDecorator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MaxNumObjectTransferAttemptsDecorator.java index 436e42f91..534f53831 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MaxNumObjectTransferAttemptsDecorator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MaxNumObjectTransferAttemptsDecorator.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MetaDataReceivedObserver.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MetaDataReceivedObserver.java index 80b7af56d..1ddf8f356 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MetaDataReceivedObserver.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MetaDataReceivedObserver.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MultiThreadedTransferStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MultiThreadedTransferStrategy.java index bc79af4e9..343267b6c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MultiThreadedTransferStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/MultiThreadedTransferStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ObjectCompletedObserver.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ObjectCompletedObserver.java index 5524194d7..a67bdc351 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ObjectCompletedObserver.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/ObjectCompletedObserver.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/Observer.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/Observer.java index 8d777a7dc..abaf599bf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/Observer.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/Observer.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/PutJobTransferMethod.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/PutJobTransferMethod.java index f7eb5eb63..eaad77fd3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/PutJobTransferMethod.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/PutJobTransferMethod.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/RangeHelper.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/RangeHelper.java index c06264ea7..b4d62c203 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/RangeHelper.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/RangeHelper.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/SingleThreadedTransferStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/SingleThreadedTransferStrategy.java index f64afb5c5..175f03041 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/SingleThreadedTransferStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/SingleThreadedTransferStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferMethod.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferMethod.java index 8be16f802..3d301efe9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferMethod.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferMethod.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferMethodMaker.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferMethodMaker.java index f0231aeea..f00e1c0d2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferMethodMaker.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferMethodMaker.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferRetryDecorator.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferRetryDecorator.java index b2853d747..5d89b6701 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferRetryDecorator.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferRetryDecorator.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategy.java index f67ccf349..009122741 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategyBuilder.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategyBuilder.java index a6c2678dc..ee62ebb70 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategyBuilder.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategyBuilder.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/UpdateStrategy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/UpdateStrategy.java index f5271276a..31f754ce0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/UpdateStrategy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/UpdateStrategy.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/WaitingForChunksObserver.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/WaitingForChunksObserver.java index 6fecc1db7..f350dfc1a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/WaitingForChunksObserver.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/WaitingForChunksObserver.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.helpers.strategy.transferstrategy; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers.java index 6296dd04a..b3b9b5082 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ActiveJob.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ActiveJob.java index 72c7af5b8..bdd40366e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ActiveJob.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ActiveJob.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ActiveJobList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ActiveJobList.java index 732d6de78..7bc8a6757 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ActiveJobList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ActiveJobList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AutoInspectMode.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AutoInspectMode.java index cf77551fd..d9151249a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AutoInspectMode.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AutoInspectMode.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureDataReplicationRule.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureDataReplicationRule.java index 4639845af..622e10327 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureDataReplicationRule.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureDataReplicationRule.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureDataReplicationRuleList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureDataReplicationRuleList.java index 8c44877b6..c7f148721 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureDataReplicationRuleList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureDataReplicationRuleList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTarget.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTarget.java index f9069a666..d90809842 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTarget.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTarget.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetBucketName.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetBucketName.java index 8ab1de76f..d93be6014 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetBucketName.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetBucketName.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetBucketNameList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetBucketNameList.java index c2635c9e9..e251b5ead 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetBucketNameList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetBucketNameList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailure.java index 7bd738b55..e2e119b34 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureList.java index bb270428d..5f90f43a5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureNotificationRegistration.java index 6b1b93558..fda37a7f7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureNotificationRegistrationList.java index 991c9be88..97a65f8a5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetFailureNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetList.java index 2ac82b9a4..f98bf3abd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetReadPreference.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetReadPreference.java index e72b05ba5..1c7e42a46 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetReadPreference.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetReadPreference.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetReadPreferenceList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetReadPreferenceList.java index bca7220dd..5bba65175 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetReadPreferenceList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/AzureTargetReadPreferenceList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Blob.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Blob.java index 722dd01ed..7a47b0bff 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Blob.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Blob.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTaskInformation.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTaskInformation.java index 0b261ff0c..e77b3310e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTaskInformation.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTaskInformation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTaskState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTaskState.java index baca9f2a5..4d9bff87a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTaskState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTaskState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTasksInformation.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTasksInformation.java index 178e0d19b..8fa7c1e53 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTasksInformation.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BlobStoreTasksInformation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Bucket.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Bucket.java index 24b00336c..358d31173 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Bucket.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Bucket.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAcl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAcl.java index 5f4af6b32..387265182 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAcl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAcl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAclList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAclList.java index e9793fe9a..7d007540b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAclList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAclList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAclPermission.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAclPermission.java index 185175856..a89ed65e5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAclPermission.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketAclPermission.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketDetails.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketDetails.java index 00d731b6c..6ce745bc2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketDetails.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketDetails.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketList.java index bc12fb5a4..6b39df96b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BucketList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BuildInformation.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BuildInformation.java index e2bace3b9..871e3e665 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BuildInformation.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BuildInformation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BulkObject.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BulkObject.java index 17d77e3bf..3e41d72c8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BulkObject.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BulkObject.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BulkObjectList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BulkObjectList.java index b1780261c..9cc175aec 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BulkObjectList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/BulkObjectList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheEntryInformation.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheEntryInformation.java index 03cdc597a..9c7640abf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheEntryInformation.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheEntryInformation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheEntryState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheEntryState.java index b428b5284..71cdb7b35 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheEntryState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheEntryState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystem.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystem.java index 5658acc11..a68d79209 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystem.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystem.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystemInformation.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystemInformation.java index d58ba2ef4..9f1bc5e16 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystemInformation.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystemInformation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystemList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystemList.java index 42f0f5809..1b8f467ad 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystemList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheFilesystemList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheInformation.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheInformation.java index 9c3ec743e..b74981a6f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheInformation.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CacheInformation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CanceledJob.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CanceledJob.java index eb3735415..c64fbbaf3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CanceledJob.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CanceledJob.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CanceledJobList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CanceledJobList.java index c97ace764..84cda2469 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CanceledJobList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CanceledJobList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CapacitySummaryContainer.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CapacitySummaryContainer.java index eda4f1273..a9397ae09 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CapacitySummaryContainer.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CapacitySummaryContainer.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ChecksumType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ChecksumType.java index 2d5abb058..e4e8e0e16 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ChecksumType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ChecksumType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompleteMultipartUploadResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompleteMultipartUploadResult.java index a9ca5e847..bd54f7530 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompleteMultipartUploadResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompleteMultipartUploadResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompletedJob.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompletedJob.java index 6ba3e045a..f796ecc37 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompletedJob.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompletedJob.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompletedJobList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompletedJobList.java index c9da0afd0..d8e154d6f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompletedJobList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/CompletedJobList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Contents.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Contents.java index 20cdd84be..5f2204dad 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Contents.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Contents.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataIsolationLevel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataIsolationLevel.java index 51f927537..330ddef49 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataIsolationLevel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataIsolationLevel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPathBackend.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPathBackend.java index 4af0ee42b..09c91281e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPathBackend.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPathBackend.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRule.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRule.java index 637c85794..97f32bb2d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRule.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRule.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRuleList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRuleList.java index ec9df25e9..52dd630b7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRuleList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRuleList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRuleType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRuleType.java index 45e867ea8..9b045fec3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRuleType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPersistenceRuleType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPlacementRuleState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPlacementRuleState.java index 88e0e33da..48ca8cb3e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPlacementRuleState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPlacementRuleState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicy.java index 2ede6aa7d..98e167192 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicy.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyAcl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyAcl.java index ba4286fe4..697b9ea10 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyAcl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyAcl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyAclList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyAclList.java index c97d81132..68d7f936c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyAclList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyAclList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyList.java index c3aabbdf2..4e3b3b801 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataPolicyList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataReplicationRuleType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataReplicationRuleType.java index 804800e68..0291e676c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataReplicationRuleType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DataReplicationRuleType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DatabasePhysicalSpaceState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DatabasePhysicalSpaceState.java index 9afefbc28..dd52a6f79 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DatabasePhysicalSpaceState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DatabasePhysicalSpaceState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DegradedBlob.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DegradedBlob.java index 0f0b410c3..27de12b05 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DegradedBlob.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DegradedBlob.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DegradedBlobList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DegradedBlobList.java index c4365ad21..0eb27f0e4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DegradedBlobList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DegradedBlobList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DeleteObjectError.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DeleteObjectError.java index c9baec5c0..5b316f012 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DeleteObjectError.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DeleteObjectError.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DeleteResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DeleteResult.java index 1c36576c2..db30a630e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DeleteResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DeleteResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedS3Object.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedS3Object.java index 87d0706d0..3c75f9c9a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedS3Object.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedS3Object.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedS3ObjectList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedS3ObjectList.java index 3c07f9e07..a440fd0bb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedS3ObjectList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedS3ObjectList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapeFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapeFailure.java index 1e33d6a32..639f520b9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapeFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapeFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapeFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapeFailureList.java index 4da30f76e..6411d85fd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapeFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapeFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapePartition.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapePartition.java index 98fe08bc4..542686de7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapePartition.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/DetailedTapePartition.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3DataReplicationRule.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3DataReplicationRule.java index f28feaf64..535bcd155 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3DataReplicationRule.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3DataReplicationRule.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3DataReplicationRuleList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3DataReplicationRuleList.java index d397158e2..743f55931 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3DataReplicationRuleList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3DataReplicationRuleList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3Target.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3Target.java index 8a95adaae..8f27fde08 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3Target.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3Target.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetAccessControlReplication.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetAccessControlReplication.java index 8ac3123b6..f038f08e6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetAccessControlReplication.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetAccessControlReplication.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailure.java index 86fb07d63..7047fbd87 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureList.java index d45342360..e34a3181d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureNotificationRegistration.java index 2bebff42d..61170a22d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureNotificationRegistrationList.java index 2207e4862..303eacd38 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetFailureNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetList.java index c05bdbdfc..e1ba56735 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetReadPreference.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetReadPreference.java index 29d453796..08a55e32f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetReadPreference.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetReadPreference.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetReadPreferenceList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetReadPreferenceList.java index 9ee24a8c9..8a678687f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetReadPreferenceList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Ds3TargetReadPreferenceList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Error.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Error.java index 45a6727b2..4d9f5e245 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Error.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Error.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKey.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKey.java index 9c52da106..d4619ed77 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKey.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKey.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKeyList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKeyList.java index a452d5934..e146f350c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKeyList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKeyList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKeyType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKeyType.java index a9a609134..585211355 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKeyType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/FeatureKeyType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Group.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Group.java index f36f19008..193f08fe2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Group.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Group.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupList.java index 4da3091e9..701a3a38b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupMember.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupMember.java index dd457b392..e1b9c60c4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupMember.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupMember.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupMemberList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupMemberList.java index 576f86a31..fe3f69fb2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupMemberList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/GroupMemberList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/HealthVerificationResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/HealthVerificationResult.java index 8607a0f21..3edb61a9f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/HealthVerificationResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/HealthVerificationResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/HttpResponseFormatType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/HttpResponseFormatType.java index 13bfb9fbe..9e8b48347 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/HttpResponseFormatType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/HttpResponseFormatType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ImportConflictResolutionMode.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ImportConflictResolutionMode.java index bcd4bc4db..743f600be 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ImportConflictResolutionMode.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ImportConflictResolutionMode.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ImportExportConfiguration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ImportExportConfiguration.java index 3537ff51d..e9e190cb0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ImportExportConfiguration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ImportExportConfiguration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/InitiateMultipartUploadResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/InitiateMultipartUploadResult.java index 73c8f772e..e8c35f854 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/InitiateMultipartUploadResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/InitiateMultipartUploadResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Job.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Job.java index 16ba8ffe3..acb76468c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Job.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Job.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunk.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunk.java index db79330c2..ae2f71eef 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunk.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunk.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunkBlobStoreState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunkBlobStoreState.java index f75177856..47ff72ff8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunkBlobStoreState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunkBlobStoreState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunkClientProcessingOrderGuarantee.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunkClientProcessingOrderGuarantee.java index f4727d77b..d40e63eb9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunkClientProcessingOrderGuarantee.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobChunkClientProcessingOrderGuarantee.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCompletedNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCompletedNotificationRegistration.java index 8e5277f2d..a86d14f13 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCompletedNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCompletedNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCompletedNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCompletedNotificationRegistrationList.java index 89ea37e83..063e72c44 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCompletedNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCompletedNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreatedNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreatedNotificationRegistration.java index 17386fcf3..541329e8a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreatedNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreatedNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreatedNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreatedNotificationRegistrationList.java index a157c0e85..9be21104d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreatedNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreatedNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreationFailedNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreationFailedNotificationRegistration.java index 613eac38f..011ad9333 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreationFailedNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreationFailedNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreationFailedNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreationFailedNotificationRegistrationList.java index 4dfe528e3..923544bc4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreationFailedNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobCreationFailedNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobList.java index e873c19d7..8b4b0daef 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobNode.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobNode.java index 6e21b0c76..56b2f9b1c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobNode.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobNode.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobRequestType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobRequestType.java index b8a479c72..f0ba99063 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobRequestType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobRequestType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobStatus.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobStatus.java index 80a17fcb5..964f7eb50 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobStatus.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/JobStatus.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListAllMyBucketsResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListAllMyBucketsResult.java index 893fae37b..7f15834e5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListAllMyBucketsResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListAllMyBucketsResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListBucketResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListBucketResult.java index d74203176..93e5335f1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListBucketResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListBucketResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListMultiPartUploadsResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListMultiPartUploadsResult.java index 2dcd4a937..c7dfac192 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListMultiPartUploadsResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListMultiPartUploadsResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListPartsResult.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListPartsResult.java index 481bc03f3..cd4b3fa00 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListPartsResult.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/ListPartsResult.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/LtfsFileNamingMode.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/LtfsFileNamingMode.java index 3e1fd6860..e324aa39d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/LtfsFileNamingMode.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/LtfsFileNamingMode.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MasterObjectList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MasterObjectList.java index 42c2bde32..2cf81a045 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MasterObjectList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MasterObjectList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MultiPartUpload.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MultiPartUpload.java index 78d94c508..4b402271e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MultiPartUpload.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MultiPartUpload.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MultiPartUploadPart.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MultiPartUploadPart.java index f0ed0052f..7d857fd16 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MultiPartUploadPart.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/MultiPartUploadPart.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartition.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartition.java index e87db9ef7..a7ae47f44 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartition.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartition.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartitionList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartitionList.java index 16e6bef5d..2105a4221 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartitionList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamedDetailedTapePartitionList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamingConventionType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamingConventionType.java index b3cc9f6a9..2b788789a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamingConventionType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NamingConventionType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Node.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Node.java index 9320b4b67..eb15649c6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Node.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Node.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NodeList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NodeList.java index b3447cdc1..22acae571 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NodeList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/NodeList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Objects.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Objects.java index c13930b02..4dbe35b53 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Objects.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Objects.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PhysicalPlacement.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PhysicalPlacement.java index ada4a286b..a9bddda03 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PhysicalPlacement.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PhysicalPlacement.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Pool.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Pool.java index fe7a29b60..aa9200f64 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Pool.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Pool.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailure.java index 31e05bc8d..fef635946 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureList.java index 8d9e3d607..8e56c5f87 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureNotificationRegistration.java index b7b9a3d4c..f91a54007 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureNotificationRegistrationList.java index 553a0e6bc..90b58c7ba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureType.java index 5f7a87d81..04120fb6f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolFailureType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolHealth.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolHealth.java index bb862732b..e380b0462 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolHealth.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolHealth.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolList.java index e07a27620..ea10a2e47 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolPartition.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolPartition.java index 26537b4f0..4a24950ea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolPartition.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolPartition.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolPartitionList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolPartitionList.java index 2d43a0ba5..9abd7cce5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolPartitionList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolPartitionList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolState.java index 766bfa2b9..c13527861 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolType.java index 968c967f2..bbe306771 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/PoolType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Priority.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Priority.java index feaaf6684..ced11b836 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Priority.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Priority.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Quiesced.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Quiesced.java index 076ff1cdd..7299a856c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Quiesced.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Quiesced.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/RequestType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/RequestType.java index cb8e8552e..a7d3eb31f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/RequestType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/RequestType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/RestOperationType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/RestOperationType.java index 9f951979b..8c185377e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/RestOperationType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/RestOperationType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3DataReplicationRule.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3DataReplicationRule.java index 5198a07da..33b1cc27b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3DataReplicationRule.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3DataReplicationRule.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3DataReplicationRuleList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3DataReplicationRuleList.java index febd57477..dbb81c8fb 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3DataReplicationRuleList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3DataReplicationRuleList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3InitialDataPlacementPolicy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3InitialDataPlacementPolicy.java index f704acf0c..29efd9860 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3InitialDataPlacementPolicy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3InitialDataPlacementPolicy.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Object.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Object.java index 6de63d90b..8ddf356b4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Object.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Object.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectCachedNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectCachedNotificationRegistration.java index f94ca3adc..5094cc591 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectCachedNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectCachedNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectCachedNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectCachedNotificationRegistrationList.java index ff91c5cbf..5e03d6317 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectCachedNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectCachedNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectList.java index 7ad03981e..c48c0e9a2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectLostNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectLostNotificationRegistration.java index b3beee4c5..af4d5b032 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectLostNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectLostNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectLostNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectLostNotificationRegistrationList.java index 76305bb18..b8525d214 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectLostNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectLostNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectPersistedNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectPersistedNotificationRegistration.java index 6894c1066..a8c093261 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectPersistedNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectPersistedNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectPersistedNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectPersistedNotificationRegistrationList.java index 96837d2a4..06c892453 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectPersistedNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectPersistedNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectToDelete.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectToDelete.java index b4621e603..6c1ec08f8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectToDelete.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectToDelete.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectType.java index 077ec222d..9c34f434e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3ObjectType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Region.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Region.java index 7c5c9d0f3..12c558684 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Region.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Region.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Target.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Target.java index c2519b706..1d3f67ed4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Target.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3Target.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetBucketName.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetBucketName.java index 97e633c49..3a3c70c39 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetBucketName.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetBucketName.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetBucketNameList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetBucketNameList.java index f66ead64c..ce6f648cd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetBucketNameList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetBucketNameList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailure.java index 7d3601597..f16e6bc57 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureList.java index 2a0b2fa1f..4828b0446 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureNotificationRegistration.java index 27ffaac6d..4077efce4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureNotificationRegistrationList.java index 6cf16bbdd..7d01d042e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetFailureNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetList.java index e3206f9f8..b86fc303b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetReadPreference.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetReadPreference.java index 9564be357..34b921b07 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetReadPreference.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetReadPreference.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetReadPreferenceList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetReadPreferenceList.java index 25e5b0cbb..a7cf1acbe 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetReadPreferenceList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/S3TargetReadPreferenceList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SpectraUser.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SpectraUser.java index eb238b089..034d9205b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SpectraUser.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SpectraUser.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SpectraUserList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SpectraUserList.java index 9b63e45aa..f1890c076 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SpectraUserList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SpectraUserList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomain.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomain.java index c11ac5384..f94fc44c9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomain.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomain.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainCapacitySummary.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainCapacitySummary.java index 8e5772175..ed20b1d5f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainCapacitySummary.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainCapacitySummary.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailure.java index c8ccabf56..a564dbf21 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureList.java index bc114d935..9a707f69d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureNotificationRegistration.java index c4819a161..a774c424e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureNotificationRegistrationList.java index 2d3857d80..6f92bd7f2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureType.java index 7254027e2..a7c816373 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainFailureType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainList.java index d9c3f01d1..9a7df1597 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMember.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMember.java index d1a835ca7..be00d27cd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMember.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMember.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMemberList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMemberList.java index 48eabbdd1..010738647 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMemberList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMemberList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMemberState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMemberState.java index d17549370..88da39c5f 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMemberState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/StorageDomainMemberState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobAzureTarget.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobAzureTarget.java index def8f9389..765faffda 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobAzureTarget.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobAzureTarget.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobAzureTargetList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobAzureTargetList.java index c28d4004a..ccb8aeaae 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobAzureTargetList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobAzureTargetList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobDs3Target.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobDs3Target.java index ea721d1c5..aba2a8d4b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobDs3Target.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobDs3Target.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobDs3TargetList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobDs3TargetList.java index 9996d1ead..02b6a4d7c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobDs3TargetList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobDs3TargetList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobPool.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobPool.java index 4a304e644..50fc2c9fe 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobPool.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobPool.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobPoolList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobPoolList.java index 5d976d052..a39f24cac 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobPoolList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobPoolList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobS3Target.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobS3Target.java index 79b3e14d6..dafe99717 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobS3Target.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobS3Target.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobS3TargetList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobS3TargetList.java index 2d4af175f..ae3d3c727 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobS3TargetList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobS3TargetList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobTape.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobTape.java index 1f628d2ba..073a2121d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobTape.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobTape.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobTapeList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobTapeList.java index 641d66941..f6c7d2f82 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobTapeList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SuspectBlobTapeList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailure.java index 569b5cb3c..b4bf07352 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureList.java index 32f7c51ac..e222aaea2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureNotificationRegistration.java index 7a5d02f58..75c9039b0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureNotificationRegistrationList.java index 8fb3aae7b..3e375adb4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureType.java index 3b267164f..f0f793d20 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemFailureType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemInformation.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemInformation.java index f516a01a6..ba405f34c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemInformation.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/SystemInformation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Tape.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Tape.java index 19a62d58b..c4c8c5ba7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Tape.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/Tape.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirective.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirective.java index 3a4ed6ff6..5867592cf 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirective.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirective.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirectiveList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirectiveList.java index 4f4b135e9..d9c45d80e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirectiveList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDensityDirectiveList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDrive.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDrive.java index 74911ed31..f3aeb0c4d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDrive.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDrive.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveList.java index 2c4f59629..801a1d70a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveState.java index 5527753c3..fa6452c75 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveType.java index 47d182b85..e8f73ed57 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeDriveType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailure.java index d1190ffcb..5fbb40232 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureList.java index 9532f4a17..0f3292d78 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureNotificationRegistration.java index 4a8b5f95e..1876f8989 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureNotificationRegistrationList.java index a87982b0a..7be871434 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureType.java index 69459c360..591585f47 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeFailureType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeLibrary.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeLibrary.java index 65a72e6f3..36320a6ee 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeLibrary.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeLibrary.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeLibraryList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeLibraryList.java index 7b773985a..edd638515 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeLibraryList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeLibraryList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeList.java index cd7937900..fd29567ea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartition.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartition.java index c86173810..58467c469 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartition.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartition.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailure.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailure.java index 87f83ef0c..5303c4077 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailure.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailure.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureList.java index d22dac15c..8c2358a51 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureNotificationRegistration.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureNotificationRegistration.java index d52b5144e..64ed42528 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureNotificationRegistration.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureNotificationRegistration.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureNotificationRegistrationList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureNotificationRegistrationList.java index 33b0dee32..118e8dae4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureNotificationRegistrationList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureNotificationRegistrationList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureType.java index c13e09db0..f4954ec3a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionFailureType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionList.java index e5f429e67..e0d207cf0 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionState.java index 1d21ea106..8e968f1d5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapePartitionState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeState.java index d943bd7ab..9acd0ae10 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TapeState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetFailureType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetFailureType.java index d75f3df99..e168d52e9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetFailureType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetFailureType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetReadPreferenceType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetReadPreferenceType.java index cf1087345..e17b84d2c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetReadPreferenceType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetReadPreferenceType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetState.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetState.java index 7a1fff709..58d27772a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetState.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/TargetState.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/UnavailableMediaUsagePolicy.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/UnavailableMediaUsagePolicy.java index 6a1019d99..c472d6d34 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/UnavailableMediaUsagePolicy.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/UnavailableMediaUsagePolicy.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/User.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/User.java index a7e68fb9d..fcbf0d2fd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/User.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/User.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/VersioningLevel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/VersioningLevel.java index 46ee8e863..dd27d82d4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/VersioningLevel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/VersioningLevel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/WriteOptimization.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/WriteOptimization.java index 6778b4f1b..51baeba17 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/WriteOptimization.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/WriteOptimization.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/WritePreferenceLevel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/WritePreferenceLevel.java index 1e47ad31b..074c9263c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/WritePreferenceLevel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/WritePreferenceLevel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3Object.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3Object.java index ce860a7bf..d443bae3a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3Object.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3Object.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java index e6f5d6565..1c9ec6f40 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/PartialDs3Object.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/PartialDs3Object.java index 1ed151d08..37925bbce 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/PartialDs3Object.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/PartialDs3Object.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/RequestType.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/RequestType.java index a40a687a4..47c0a3ca6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/RequestType.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/bulk/RequestType.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/CommonPrefixes.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/CommonPrefixes.java index ac88ef2af..109fc55e8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/CommonPrefixes.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/CommonPrefixes.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/Credentials.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/Credentials.java index 6dbe8c1be..5c07abb54 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/Credentials.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/Credentials.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/Range.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/Range.java index f66466eb5..34f9d6db3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/Range.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/Range.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/SignatureDetails.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/SignatureDetails.java index 04697c900..0b2418585 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/SignatureDetails.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/common/SignatureDetails.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/delete/Delete.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/delete/Delete.java index 31761c49f..e25f263ea 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/delete/Delete.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/delete/Delete.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/delete/DeleteObject.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/delete/DeleteObject.java index 067992e2b..feb6ffe2c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/delete/DeleteObject.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/delete/DeleteObject.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/multipart/CompleteMultipartUpload.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/multipart/CompleteMultipartUpload.java index e7366eb67..8619457f7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/multipart/CompleteMultipartUpload.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/multipart/CompleteMultipartUpload.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/multipart/Part.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/multipart/Part.java index 6bfe38252..a93b813a1 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/multipart/Part.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/multipart/Part.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/package-info.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/package-info.java index 67eac6ae8..46a654772 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/package-info.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/models/package-info.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/ConnectionDetails.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/ConnectionDetails.java index c1c241751..4dbd57bae 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/ConnectionDetails.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/ConnectionDetails.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedRequestException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedRequestException.java index 67f930375..029f33ab3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedRequestException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedRequestException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedRequestUsingMgmtPortException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedRequestUsingMgmtPortException.java index fce4485ac..b70db862c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedRequestUsingMgmtPortException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedRequestUsingMgmtPortException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedToGetBucketException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedToGetBucketException.java index 27f13edef..d346913f6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedToGetBucketException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/FailedToGetBucketException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HashGeneratingMatchHandler.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HashGeneratingMatchHandler.java index 689216476..e5f0f7e8d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HashGeneratingMatchHandler.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HashGeneratingMatchHandler.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HeadersImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HeadersImpl.java index 713c61878..e395d64db 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HeadersImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HeadersImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HttpVerb.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HttpVerb.java index 12ae3ec50..04218026a 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HttpVerb.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/HttpVerb.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetUtils.java index df8d44e01..2a6e6f6e7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClient.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClient.java index b9cca5e8d..cae884151 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClient.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClient.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java index 938be7c24..755ddd6ee 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/RequiresMarkSupportedException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/RequiresMarkSupportedException.java index 25862d725..66a081935 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/RequiresMarkSupportedException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/RequiresMarkSupportedException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/ResponseProcessingException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/ResponseProcessingException.java index 961088acc..da4d7a214 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/ResponseProcessingException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/ResponseProcessingException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/TooManyRedirectsException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/TooManyRedirectsException.java index a5e7a489e..34623f22c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/TooManyRedirectsException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/TooManyRedirectsException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/TooManyRetriesException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/TooManyRetriesException.java index 356811d2d..a9cd56396 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/TooManyRetriesException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/TooManyRetriesException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/WebResponse.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/WebResponse.java index 60b571c22..9829421c4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/WebResponse.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/WebResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/WebResponseImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/WebResponseImpl.java index facdc8ae7..ddb0882d6 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/WebResponseImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/WebResponseImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/package-info.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/package-info.java index 78a25e335..e33ffb557 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/package-info.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/package-info.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/package-info.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/package-info.java index 2436e0902..ce5c6b7f7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/package-info.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/package-info.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlOutput.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlOutput.java index ab2f78f90..f3c636519 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlOutput.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlOutput.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlProcessingException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlProcessingException.java index 5a0e6be8d..01b81a55c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlProcessingException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/XmlProcessingException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/package-info.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/package-info.java index d0867b3e0..59b3a2010 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/package-info.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/serializer/package-info.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Builder.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Builder.java index fbf5d6e1f..b87549fb3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Builder.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Builder.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/ByteArraySeekableByteChannel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/ByteArraySeekableByteChannel.java index 29afaf7dc..c1f401be9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/ByteArraySeekableByteChannel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/ByteArraySeekableByteChannel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/DateFormatter.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/DateFormatter.java index f39c15132..c9e6f2c89 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/DateFormatter.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/DateFormatter.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/EmptySeekableByteChannel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/EmptySeekableByteChannel.java index 49ba01f00..ddfe787c4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/EmptySeekableByteChannel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/EmptySeekableByteChannel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/IOUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/IOUtils.java index 60b01e4de..e611660a5 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/IOUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/IOUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/InvalidMd5Exception.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/InvalidMd5Exception.java index 3ef4c9be5..c953e666c 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/InvalidMd5Exception.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/InvalidMd5Exception.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/JobUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/JobUtils.java index 3c3d6f19b..e949f11fd 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/JobUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/JobUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/LoggingSeekableByteChannel.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/LoggingSeekableByteChannel.java index 6fdb47d33..7736d02ae 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/LoggingSeekableByteChannel.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/LoggingSeekableByteChannel.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/MultiMap.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/MultiMap.java index eff7cfe13..6a8843376 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/MultiMap.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/MultiMap.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/MultiMapImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/MultiMapImpl.java index 58594c026..61025ca6b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/MultiMapImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/MultiMapImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/NotImplementedException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/NotImplementedException.java index 67b7140c3..14929f468 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/NotImplementedException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/NotImplementedException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PerformanceUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PerformanceUtils.java index 613c45b53..7009697c7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PerformanceUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PerformanceUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Predicate.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Predicate.java index 7991027be..98eca61d8 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Predicate.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Predicate.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java index 93fbf58e9..e3f5980f2 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/PropertyUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/ResponseUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/ResponseUtils.java index af199ec9e..a76712138 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/ResponseUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/ResponseUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SSLSetupException.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SSLSetupException.java index 805daf16e..ed23c17fc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SSLSetupException.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SSLSetupException.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SafeStringManipulation.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SafeStringManipulation.java index 3ea1f68b8..735393ccc 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SafeStringManipulation.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SafeStringManipulation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SeekableByteChannelInputStream.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SeekableByteChannelInputStream.java index 13db18148..1214a1625 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SeekableByteChannelInputStream.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/SeekableByteChannelInputStream.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Signature.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Signature.java index 89b24e39c..4d2ff3cba 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Signature.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/Signature.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/LazyIterable.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/LazyIterable.java index 3eb6565dd..6da79bb4e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/LazyIterable.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/LazyIterable.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/StreamWrapper.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/StreamWrapper.java index 8fdb7adf1..c40faaba9 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/StreamWrapper.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/collections/StreamWrapper.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/CRC32CHasher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/CRC32CHasher.java index cf3d29d9f..047814af3 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/CRC32CHasher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/CRC32CHasher.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/CRC32Hasher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/CRC32Hasher.java index 20cbfb7f9..42cf3b84e 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/CRC32Hasher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/CRC32Hasher.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/ChecksumHasher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/ChecksumHasher.java index b188a3f82..dd4189b18 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/ChecksumHasher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/ChecksumHasher.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/ChecksumUtils.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/ChecksumUtils.java index 198f0db38..6a6523b3b 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/ChecksumUtils.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/ChecksumUtils.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.utils.hashing; diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Crc32c.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Crc32c.java index 7fe13fedd..ff2b293ad 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Crc32c.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Crc32c.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/DigestHasher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/DigestHasher.java index 116961ef6..7447ce38d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/DigestHasher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/DigestHasher.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Hasher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Hasher.java index 67303d1f6..91663bfa7 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Hasher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Hasher.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/MD5Hasher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/MD5Hasher.java index 59147bc28..8e1d67a54 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/MD5Hasher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/MD5Hasher.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Md5Hash.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Md5Hash.java index 116f152ac..55b6aeba4 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Md5Hash.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/Md5Hash.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/SHA256Hasher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/SHA256Hasher.java index a250bcc08..cc5a34f68 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/SHA256Hasher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/SHA256Hasher.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/SHA512Hasher.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/SHA512Hasher.java index 56accbd45..a0d7a4b32 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/SHA512Hasher.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/hashing/SHA512Hasher.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/package-info.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/package-info.java index 8796730da..e05361648 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/package-info.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/utils/package-info.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/DeleteBucket.kt b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/DeleteBucket.kt index 8d03ff69e..3848b2e90 100644 --- a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/DeleteBucket.kt +++ b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/DeleteBucket.kt @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker.kt b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker.kt index 18b1d4270..d21b75185 100644 --- a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker.kt +++ b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker.kt @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/IterableExtensions.kt b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/IterableExtensions.kt index 223dc15d7..fc975714b 100644 --- a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/IterableExtensions.kt +++ b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/IterableExtensions.kt @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator.kt b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator.kt index 5b570c89e..f450376a6 100644 --- a/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator.kt +++ b/ds3-sdk/src/main/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator.kt @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/ConnectionFixture.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/ConnectionFixture.java index 6f1dfc6c2..5c412dca6 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/ConnectionFixture.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/ConnectionFixture.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3ClientBuilder_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3ClientBuilder_Test.java index 52b4b67d5..882d33fd3 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3ClientBuilder_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3ClientBuilder_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java index ba0bb5608..3a1a7ce7e 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/Ds3Client_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockNetwork.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockNetwork.java index ec6e384da..5c887d4e8 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockNetwork.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockNetwork.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockedHeaders.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockedHeaders.java index 9563fe716..fe4853d79 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockedHeaders.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockedHeaders.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockedWebResponse.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockedWebResponse.java index 091fc95af..fe7fc3817 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockedWebResponse.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/MockedWebResponse.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/GetObjectRequest_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/GetObjectRequest_Test.java index 3163096f2..3513ef4fc 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/GetObjectRequest_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/GetObjectRequest_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/MetadataImpl_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/MetadataImpl_Test.java index 053ec0444..d6655f02d 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/MetadataImpl_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/MetadataImpl_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/SeekableByteChannelInputStream_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/SeekableByteChannelInputStream_Test.java index 9ed9e4e43..1c107c571 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/SeekableByteChannelInputStream_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/SeekableByteChannelInputStream_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl_Test.java index ed60eeb2a..657da87a2 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/interfaces/RequestHeadersImpl_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java index e36ac82c2..7b7503cd3 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/parsers/utils/ResponseParserUtils_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/spectrads3/GetPutJobToReplicate_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/spectrads3/GetPutJobToReplicate_Test.java index bf2801851..03bf6a6a1 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/spectrads3/GetPutJobToReplicate_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/commands/spectrads3/GetPutJobToReplicate_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers_Test.java index 3181f7302..f8b6c94b8 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ExceptionClassifier_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ExceptionClassifier_Test.java index 911add3d4..619a6b291 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ExceptionClassifier_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ExceptionClassifier_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java index 423d7d891..4a89a6366 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectGetter_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectPutter_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectPutter_Test.java index bc457f138..da894e7b9 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectPutter_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FileObjectPutter_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FolderNameFilter_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FolderNameFilter_Test.java index 552f6927a..2650ae03a 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FolderNameFilter_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/FolderNameFilter_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTrackerFactory_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTrackerFactory_Test.java index 7bbfc7eb0..5c746accb 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTrackerFactory_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTrackerFactory_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTracker_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTracker_Test.java index 804aadffa..b0c1b182e 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTracker_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/JobPartTracker_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartComparator_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartComparator_Test.java index 8142942c3..e0d2659f3 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartComparator_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartComparator_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl_CompletePart_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl_CompletePart_Test.java index 916904da9..e56bd8351 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl_CompletePart_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl_CompletePart_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl_Test.java index 9d9982a07..eaf25af0b 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPart_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPart_Test.java index 54829f403..7d1c1939c 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPart_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ObjectPart_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/RequestMatchers.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/RequestMatchers.java index 2e449cd00..b96015a48 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/RequestMatchers.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/RequestMatchers.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ResponseBuilders.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ResponseBuilders.java index b542b599f..8f9d63c74 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ResponseBuilders.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/ResponseBuilders.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectInputStreamBuilder_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectInputStreamBuilder_Test.java index d211c1370..c3ac72730 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectInputStreamBuilder_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectInputStreamBuilder_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectOutputStreamBuilder_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectOutputStreamBuilder_Test.java index f90c8e4dc..32f392bd2 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectOutputStreamBuilder_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/ObjectOutputStreamBuilder_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectGetter.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectGetter.java index 59cf193eb..8d90f8a63 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectGetter.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectGetter.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectPutter.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectPutter.java index eb242aae6..2dc6e620f 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectPutter.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channelbuilders/StreamObjectPutter.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/RangedSeekableByteChannel_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/RangedSeekableByteChannel_Test.java index b6fa2c7d2..007f10101 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/RangedSeekableByteChannel_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/RangedSeekableByteChannel_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/WindowedChannelFactory_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/WindowedChannelFactory_Test.java index 3794a39e2..5fcd757ae 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/WindowedChannelFactory_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/WindowedChannelFactory_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/WindowedSeekableByteChannel_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/WindowedSeekableByteChannel_Test.java index a84b3ec1a..dc5e98fe1 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/WindowedSeekableByteChannel_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/channels/WindowedSeekableByteChannel_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/pagination/SpectraS3PaginationLoader_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/pagination/SpectraS3PaginationLoader_Test.java index 92d090b09..febc87bcd 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/pagination/SpectraS3PaginationLoader_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/pagination/SpectraS3PaginationLoader_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/pagination/StubbedRequest.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/pagination/StubbedRequest.java index 48c30e569..69ffd5de5 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/pagination/StubbedRequest.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/pagination/StubbedRequest.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/RangeHelperImpl_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/RangeHelperImpl_Test.java index 9b67890db..07f73be72 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/RangeHelperImpl_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/RangeHelperImpl_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategy_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategy_Test.java index 4580f9bac..c8911a1e0 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategy_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/strategy/transferstrategy/TransferStrategy_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers_Test.java index e301bf683..362c3c7d6 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/helpers/util/PartialObjectHelpers_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelFunctionality_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelFunctionality_Test.java index 3b2d5d056..636a2b169 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelFunctionality_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelFunctionality_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelParsing_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelParsing_Test.java index 82392a8d4..265eed692 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelParsing_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ModelParsing_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ServiceList_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ServiceList_Test.java index a177235af..e8e7b7d34 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ServiceList_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/ServiceList_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/common/Credential_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/common/Credential_Test.java index c6185b956..0828f71d0 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/common/Credential_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/models/common/Credential_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/FailedRequestException_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/FailedRequestException_Test.java index d06866810..982c242d2 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/FailedRequestException_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/FailedRequestException_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/HeadersImpl_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/HeadersImpl_Test.java index 9ab4cce4c..912c51855 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/HeadersImpl_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/networking/HeadersImpl_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/serializer/XmlOutput_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/serializer/XmlOutput_Test.java index 395570f7d..084585083 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/serializer/XmlOutput_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/serializer/XmlOutput_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/ByteArraySeekableByteChannel_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/ByteArraySeekableByteChannel_Test.java index ae9d36543..9da6cb9df 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/ByteArraySeekableByteChannel_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/ByteArraySeekableByteChannel_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/DateFormatter_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/DateFormatter_Test.java index 93506a694..8b6832d9f 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/DateFormatter_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/DateFormatter_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Guard_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Guard_Test.java index 6e3ebae07..feb113d3d 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Guard_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Guard_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/JobUtils_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/JobUtils_Test.java index 47edd2615..19529779e 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/JobUtils_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/JobUtils_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java index 1dfbbdbde..9d5d1bfb0 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/SafeString_Manipulation_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/SafeString_Manipulation_Test.java index 0441372c6..d6c307f28 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/SafeString_Manipulation_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/SafeString_Manipulation_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Signature_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Signature_Test.java index 6e3ff31d0..85d2e1551 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Signature_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/Signature_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Md5Hash_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Md5Hash_Test.java index 89d1bee82..57cac58f4 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Md5Hash_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Md5Hash_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Sha256Hash_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Sha256Hash_Test.java index b1fde85e3..7d846c0e9 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Sha256Hash_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Sha256Hash_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Sha512Hash_Test.java b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Sha512Hash_Test.java index 0cbce97d9..d9969444b 100644 --- a/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Sha512Hash_Test.java +++ b/ds3-sdk/src/test/java/com/spectralogic/ds3client/utils/hashing/Sha512Hash_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker_Test.kt b/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker_Test.kt index ac1d0d7c6..2150ad6e9 100644 --- a/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker_Test.kt +++ b/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/helpers/FileTreeWalker_Test.kt @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator_Test.kt b/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator_Test.kt index 3a0951ac0..28e5217ee 100644 --- a/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator_Test.kt +++ b/ds3-sdk/src/test/kotlin/com/spectralogic/ds3client/utils/collections/WindowedIterator_Test.kt @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/build.gradle b/ds3-utils/build.gradle index 219664d5c..6e0bc4083 100644 --- a/ds3-utils/build.gradle +++ b/ds3-utils/build.gradle @@ -1,12 +1,12 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * or in the "license" file accompanying this file. * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java index 373cf181f..2c9200050 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/commands/interfaces/MetadataImpl.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java index a351b3af7..352bcabae 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/exceptions/AggregateException.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.exceptions; diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/helpers/FailureEventListener.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/helpers/FailureEventListener.java index 059f5abc8..5626f428e 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/helpers/FailureEventListener.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/helpers/FailureEventListener.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/helpers/events/FailureEvent.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/helpers/events/FailureEvent.java index 15cf96890..8707940b7 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/helpers/events/FailureEvent.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/helpers/events/FailureEvent.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/FileUtils.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/FileUtils.java index 00e9f88bb..ba814c670 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/FileUtils.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/FileUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/Guard.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/Guard.java index 81d60e669..7e98c5d96 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/Guard.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/Guard.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/MetadataStringManipulation.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/MetadataStringManipulation.java index adca9706d..8a9e68370 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/MetadataStringManipulation.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/MetadataStringManipulation.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/Platform.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/Platform.java index 9872b50de..86528e902 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/Platform.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/Platform.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/ResourceUtils.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/ResourceUtils.java index 9568581d6..d52926786 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/ResourceUtils.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/ResourceUtils.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/StringExtensions.java b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/StringExtensions.java index 10d5bf576..db19eef97 100644 --- a/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/StringExtensions.java +++ b/ds3-utils/src/main/java/com/spectralogic/ds3client/utils/StringExtensions.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.utils; diff --git a/ds3-utils/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java b/ds3-utils/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java index 857372dec..7b743cb6d 100644 --- a/ds3-utils/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java +++ b/ds3-utils/src/test/java/com/spectralogic/ds3client/exceptions/AggregateException_Test.java @@ -1,16 +1,16 @@ /* - * **************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** */ package com.spectralogic.ds3client.exceptions; diff --git a/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java b/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java index 5c24443c3..4be688e34 100644 --- a/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java +++ b/ds3-utils/src/test/java/com/spectralogic/ds3client/utils/MetadataStringManipulation_Test.java @@ -1,6 +1,6 @@ /* * ****************************************************************************** - * Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved. + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at * diff --git a/gradle.properties b/gradle.properties index 8bee35caa..81eac5e78 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,18 @@ +# +# ******************************************************************************* +# Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. +# Licensed under the Apache License, Version 2.0 (the "License"). You may not use +# this file except in compliance with the License. A copy of the License is located at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# or in the "license" file accompanying this file. +# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. See the License for the +# specific language governing permissions and limitations under the License. +# ***************************************************************************** +# + commonscodecVersion=1.10 commonsioVersion=2.4 commonslangVersion=3.6 diff --git a/gradle/scripts/publish.gradle b/gradle/scripts/publish.gradle index 833862f54..c8c2fbb79 100644 --- a/gradle/scripts/publish.gradle +++ b/gradle/scripts/publish.gradle @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + * **************************************************************************** + */ + apply plugin: 'com.jfrog.bintray' bintray { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index be280bec0..ae9305b21 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,3 +1,18 @@ +# +# ******************************************************************************* +# Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. +# Licensed under the Apache License, Version 2.0 (the "License"). You may not use +# this file except in compliance with the License. A copy of the License is located at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# or in the "license" file accompanying this file. +# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +# CONDITIONS OF ANY KIND, either express or implied. See the License for the +# specific language governing permissions and limitations under the License. +# ***************************************************************************** +# + distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle b/settings.gradle index 5e0c648b0..bee4eea49 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,16 +1,16 @@ /* + * ****************************************************************************** + * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use + * this file except in compliance with the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. + * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + * CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. * **************************************************************************** - * Copyright 2014-2016 Spectra Logic Corporation. All Rights Reserved. - * Licensed under the Apache License, Version 2.0 (the "License"). You may not use - * this file except in compliance with the License. A copy of the License is located at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * or in the "license" file accompanying this file. - * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - * CONDITIONS OF ANY KIND, either express or implied. See the License for the - * specific language governing permissions and limitations under the License. - * **************************************************************************** */ include 'ds3-sdk-integration', 'ds3-sdk', 'ds3-sdk-samples', 'ds3-interfaces', 'ds3-metadata', 'ds3-utils' From 06c8b65be2ce96027c5bbe00b4ab564083bcae02 Mon Sep 17 00:00:00 2001 From: Eric <192110+scribe@users.noreply.github.com> Date: Tue, 23 Apr 2019 18:51:46 +0000 Subject: [PATCH 36/38] This still needs testing but this is the sparse fix (#566) (#573) * This still needs testing but this is the sparse fix * using slices * removing extra get for slice --- .../ds3client/helpers/FileObjectGetter.java | 27 ++++++++++++++++--- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java index a556163e5..97b289f89 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/FileObjectGetter.java @@ -15,6 +15,7 @@ package com.spectralogic.ds3client.helpers; +import com.google.common.util.concurrent.Striped; import com.spectralogic.ds3client.helpers.Ds3ClientHelpers.ObjectChannelBuilder; import com.spectralogic.ds3client.utils.FileUtils; @@ -24,19 +25,23 @@ import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.StandardOpenOption; +import java.util.concurrent.locks.Lock; /** * Writes files to the local file system preserving the path. */ public class FileObjectGetter implements ObjectChannelBuilder { private final Path root; + private final Striped striped; /** * Creates a new FileObjectGetter to retrieve files from a remote DS3 system to the local file system. + * * @param root The {@code root} directory of the local file system for all files being transferred. */ public FileObjectGetter(final Path root) { this.root = root; + this.striped = Striped.lazyWeakLock(10); } @Override @@ -47,14 +52,28 @@ public SeekableByteChannel buildChannel(final String key) throws IOException { Files.createDirectories(FileUtils.resolveForSymbolic(parentPath)); } - if ( ! FileUtils.isTransferablePath(objectPath)) { + if (!FileUtils.isTransferablePath(objectPath)) { throw new UnrecoverableIOException(objectPath + " is not a regular file."); } + final Lock lock = striped.get(key); + try { + lock.lock(); + if (Files.notExists(objectPath)) { + Files.createDirectories(objectPath.getParent()); + return FileChannel.open( + objectPath, + StandardOpenOption.SPARSE, + StandardOpenOption.WRITE, + StandardOpenOption.CREATE_NEW + ); + } + } finally { + lock.unlock(); + } return FileChannel.open( objectPath, - StandardOpenOption.WRITE, - StandardOpenOption.CREATE + StandardOpenOption.WRITE ); } -} +} \ No newline at end of file From 6d4f5ac6b31d8ddcc22c64e382dea44fe65a3e6e Mon Sep 17 00:00:00 2001 From: Ryan Moore Date: Tue, 23 Apr 2019 16:59:33 -0600 Subject: [PATCH 37/38] Updating build for 3.5.5 and updated the version --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 465eaf62c..a8d549d9a 100644 --- a/build.gradle +++ b/build.gradle @@ -3,9 +3,9 @@ * Copyright 2014-2019 Spectra Logic Corporation. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use * this file except in compliance with the License. A copy of the License is located at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * or in the "license" file accompanying this file. * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the @@ -23,8 +23,8 @@ buildscript { dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' - classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2' + classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' + classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.2' } } @@ -35,7 +35,7 @@ plugins { allprojects { group = 'com.spectralogic.ds3' - version = '3.5.4' + version = '3.5.5' } subprojects { From e191ca4a0cbd4ed47ecbe4da1cd53d2753c3534a Mon Sep 17 00:00:00 2001 From: kyleh Date: Wed, 7 Oct 2020 15:21:10 -0500 Subject: [PATCH 38/38] -added a counting semaphore to network client impl to avoid taking more connections that allowed and causing time skew errors -incremented version --- build.gradle | 2 +- .../ds3client/networking/NetworkClientImpl.java | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index a8d549d9a..e4ed109e0 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ plugins { allprojects { group = 'com.spectralogic.ds3' - version = '3.5.5' + version = '3.5.6' } subprojects { diff --git a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java index 755ddd6ee..25c16195d 100644 --- a/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java +++ b/ds3-sdk/src/main/java/com/spectralogic/ds3client/networking/NetworkClientImpl.java @@ -62,6 +62,7 @@ import java.security.cert.CertificateException; import java.security.cert.X509Certificate; import java.util.Map; +import java.util.concurrent.Semaphore; import static com.spectralogic.ds3client.utils.Signature.canonicalizeAmzHeaders; import static com.spectralogic.ds3client.utils.Signature.canonicalizeResource; @@ -88,6 +89,7 @@ public class NetworkClientImpl implements NetworkClient { final private CloseableHttpClient client; final private HttpHost host; + final private Semaphore clientLock; public NetworkClientImpl(final ConnectionDetails connectionDetails) { this(connectionDetails, createDefaultClient(connectionDetails)); @@ -100,6 +102,7 @@ public NetworkClientImpl(final ConnectionDetails connectionDetails, final Closea this.connectionDetails = connectionDetails; this.host = buildHost(connectionDetails); this.client = client; + this.clientLock = new Semaphore(MAX_CONNECTION_PER_ROUTE); } catch (final MalformedURLException e) { throw new RuntimeException(e); } @@ -236,11 +239,16 @@ public CloseableHttpResponse execute() throws IOException { } final HttpRequest httpRequest = this.buildHttpRequest(); - this.addHeaders(httpRequest); + clientLock.acquireUninterruptibly(); try { - return client.execute(this.host, httpRequest, this.getContext()); - } catch (final javax.net.ssl.SSLHandshakeException e) { - throw new InvalidCertificate("The certificate on black pearl is not a strong certificate and the request is being aborted. Configure with the insecure option to perform the request.", e); + this.addHeaders(httpRequest); + try { + return client.execute(this.host, httpRequest, this.getContext()); + } catch (final javax.net.ssl.SSLHandshakeException e) { + throw new InvalidCertificate("The certificate on black pearl is not a strong certificate and the request is being aborted. Configure with the insecure option to perform the request.", e); + } + } finally { + clientLock.release(); } }