diff --git a/integration/src/main/java/com/spectralogic/ds3client/integration/ResourceObjectPutter.java b/integration/src/main/java/com/spectralogic/ds3client/integration/ResourceObjectPutter.java index e2cd29562..58f49742b 100644 --- a/integration/src/main/java/com/spectralogic/ds3client/integration/ResourceObjectPutter.java +++ b/integration/src/main/java/com/spectralogic/ds3client/integration/ResourceObjectPutter.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.integration; import com.spectralogic.ds3client.helpers.Ds3ClientHelpers; diff --git a/integration/src/main/java/com/spectralogic/ds3client/integration/Util.java b/integration/src/main/java/com/spectralogic/ds3client/integration/Util.java index 03ced8c03..812c4cd4f 100644 --- a/integration/src/main/java/com/spectralogic/ds3client/integration/Util.java +++ b/integration/src/main/java/com/spectralogic/ds3client/integration/Util.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.integration; import com.spectralogic.ds3client.Ds3Client; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientBuilder.java b/sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientBuilder.java index 20ee46749..a4356b91f 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientBuilder.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/Ds3ClientBuilder.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; import com.spectralogic.ds3client.models.Credentials; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/HeadersImpl.java b/sdk/src/main/java/com/spectralogic/ds3client/HeadersImpl.java index 02094c888..c20c35e6a 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/HeadersImpl.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/HeadersImpl.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; import com.spectralogic.ds3client.networking.Headers; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/WebResponseImpl.java b/sdk/src/main/java/com/spectralogic/ds3client/WebResponseImpl.java index fb21b05da..277a6d44b 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/WebResponseImpl.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/WebResponseImpl.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; import com.spectralogic.ds3client.networking.Headers; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl.java b/sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl.java index c6bc5789c..1b20a8365 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/helpers/ObjectPartTrackerImpl.java @@ -28,7 +28,7 @@ class ObjectPartTrackerImpl implements ObjectPartTracker { public ObjectPartTrackerImpl(final String name, final Collection parts) { this.name = name; - this.parts = new TreeSet(ObjectPartComparator.instance()); + this.parts = new TreeSet<>(ObjectPartComparator.instance()); this.parts.addAll(parts); validateParts(); } diff --git a/sdk/src/main/java/com/spectralogic/ds3client/helpers/options/ReadJobOptions.java b/sdk/src/main/java/com/spectralogic/ds3client/helpers/options/ReadJobOptions.java index 6b55a9414..b73f89b76 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/helpers/options/ReadJobOptions.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/helpers/options/ReadJobOptions.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.options; import com.spectralogic.ds3client.models.bulk.Priority; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/helpers/options/WriteJobOptions.java b/sdk/src/main/java/com/spectralogic/ds3client/helpers/options/WriteJobOptions.java index ff4b297e4..1b2304bf6 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/helpers/options/WriteJobOptions.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/helpers/options/WriteJobOptions.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.options; import com.spectralogic.ds3client.models.bulk.Priority; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/models/CommonPrefixes.java b/sdk/src/main/java/com/spectralogic/ds3client/models/CommonPrefixes.java index 6a987123b..3138e5391 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/models/CommonPrefixes.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/models/CommonPrefixes.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.models; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/BulkObject.java b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/BulkObject.java index b59efd7f9..108c0a1f1 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/BulkObject.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/BulkObject.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.models.bulk; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/ChunkClientProcessingOrderGuarantee.java b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/ChunkClientProcessingOrderGuarantee.java index 840f7c4d6..5f0f8fa16 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/ChunkClientProcessingOrderGuarantee.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/ChunkClientProcessingOrderGuarantee.java @@ -1,8 +1,20 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.models.bulk; -/** - * Created by ryanmo on 8/8/2014. - */ public enum ChunkClientProcessingOrderGuarantee { IN_ORDER, NONE } diff --git a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java index 170936e8d..37892a6bc 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Ds3ObjectList.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.models.bulk; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Node.java b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Node.java index 1dab92dc3..334df74a9 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Node.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Node.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.models.bulk; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Priority.java b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Priority.java index 6d93718bb..f69f7244f 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Priority.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/Priority.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.models.bulk; import com.google.common.base.Function; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/RequestType.java b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/RequestType.java index cadb47eeb..f7b0aadd7 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/RequestType.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/RequestType.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.models.bulk; public enum RequestType { diff --git a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/WriteOptimization.java b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/WriteOptimization.java index ebfee2332..59d48738e 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/WriteOptimization.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/models/bulk/WriteOptimization.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.models.bulk; import com.google.common.base.Function; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/networking/Headers.java b/sdk/src/main/java/com/spectralogic/ds3client/networking/Headers.java index 234c17bd8..32072e9ca 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/networking/Headers.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/networking/Headers.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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.networking; public interface Headers { diff --git a/sdk/src/main/java/com/spectralogic/ds3client/utils/InvalidMd5Exception.java b/sdk/src/main/java/com/spectralogic/ds3client/utils/InvalidMd5Exception.java index 8a5946c50..31885fa1f 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/utils/InvalidMd5Exception.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/utils/InvalidMd5Exception.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; public class InvalidMd5Exception extends Exception { diff --git a/sdk/src/main/java/com/spectralogic/ds3client/utils/Md5Hash.java b/sdk/src/main/java/com/spectralogic/ds3client/utils/Md5Hash.java index 8ee2f6e91..59699c152 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/utils/Md5Hash.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/utils/Md5Hash.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; import org.apache.commons.codec.DecoderException; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/utils/ResourceUtils.java b/sdk/src/main/java/com/spectralogic/ds3client/utils/ResourceUtils.java index a2696daed..737090c0d 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/utils/ResourceUtils.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/utils/ResourceUtils.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; import java.io.File; diff --git a/sdk/src/main/java/com/spectralogic/ds3client/utils/SSLSetupException.java b/sdk/src/main/java/com/spectralogic/ds3client/utils/SSLSetupException.java index f67525e46..b6e20af40 100644 --- a/sdk/src/main/java/com/spectralogic/ds3client/utils/SSLSetupException.java +++ b/sdk/src/main/java/com/spectralogic/ds3client/utils/SSLSetupException.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; public class SSLSetupException extends RuntimeException { diff --git a/sdk/src/test/java/com/spectralogic/ds3client/HeadersImpl_Test.java b/sdk/src/test/java/com/spectralogic/ds3client/HeadersImpl_Test.java index ec277df26..8ea77b7d9 100644 --- a/sdk/src/test/java/com/spectralogic/ds3client/HeadersImpl_Test.java +++ b/sdk/src/test/java/com/spectralogic/ds3client/HeadersImpl_Test.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; import com.spectralogic.ds3client.networking.Headers; diff --git a/sdk/src/test/java/com/spectralogic/ds3client/utils/Md5Hash_Test.java b/sdk/src/test/java/com/spectralogic/ds3client/utils/Md5Hash_Test.java index feba6bc60..cffc99072 100644 --- a/sdk/src/test/java/com/spectralogic/ds3client/utils/Md5Hash_Test.java +++ b/sdk/src/test/java/com/spectralogic/ds3client/utils/Md5Hash_Test.java @@ -1,3 +1,18 @@ +/* + * ****************************************************************************** + * Copyright 2014 Spectra Logic Corporation. All Rights Reserved. + * Licensed under the Apache License, Version 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; import org.junit.Test; diff --git a/sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java b/sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java index eef4c22ae..10dbd7a63 100644 --- a/sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java +++ b/sdk/src/test/java/com/spectralogic/ds3client/utils/NetUtils_Test.java @@ -17,7 +17,6 @@ import com.spectralogic.ds3client.BulkCommand; import com.spectralogic.ds3client.ConnectionFixture; -import com.spectralogic.ds3client.networking.ConnectionDetails; import com.spectralogic.ds3client.networking.NetUtils; import org.junit.Test;