File tree Expand file tree Collapse file tree 22 files changed +301
-5
lines changed
main/java/com/spectralogic/ds3client
test/java/com/spectralogic/ds3client Expand file tree Collapse file tree 22 files changed +301
-5
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client ;
2
17
3
18
import com .spectralogic .ds3client .models .Credentials ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client ;
2
17
3
18
import com .spectralogic .ds3client .networking .Headers ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client ;
2
17
3
18
import com .spectralogic .ds3client .networking .Headers ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class ObjectPartTrackerImpl implements ObjectPartTracker {
28
28
29
29
public ObjectPartTrackerImpl (final String name , final Collection <ObjectPart > parts ) {
30
30
this .name = name ;
31
- this .parts = new TreeSet <ObjectPart >(ObjectPartComparator .instance ());
31
+ this .parts = new TreeSet <>(ObjectPartComparator .instance ());
32
32
this .parts .addAll (parts );
33
33
validateParts ();
34
34
}
Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client .helpers .options ;
2
17
3
18
import com .spectralogic .ds3client .models .bulk .Priority ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client .helpers .options ;
2
17
3
18
import com .spectralogic .ds3client .models .bulk .Priority ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client .models ;
2
17
3
18
import com .fasterxml .jackson .annotation .JsonProperty ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client .models .bulk ;
2
17
3
18
import com .fasterxml .jackson .dataformat .xml .annotation .JacksonXmlProperty ;
Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client .models .bulk ;
2
17
3
- /**
4
- * Created by ryanmo on 8/8/2014.
5
- */
6
18
public enum ChunkClientProcessingOrderGuarantee {
7
19
IN_ORDER , NONE
8
20
}
Original file line number Diff line number Diff line change
1
+ /*
2
+ * ******************************************************************************
3
+ * Copyright 2014 Spectra Logic Corporation. All Rights Reserved.
4
+ * Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5
+ * this file except in compliance with the License. A copy of the License is located at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * or in the "license" file accompanying this file.
10
+ * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11
+ * CONDITIONS OF ANY KIND, either express or implied. See the License for the
12
+ * specific language governing permissions and limitations under the License.
13
+ * ****************************************************************************
14
+ */
15
+
1
16
package com .spectralogic .ds3client .models .bulk ;
2
17
3
18
import com .fasterxml .jackson .annotation .JsonProperty ;
You can’t perform that action at this time.
0 commit comments