1 |
|
package org.kuali.maven.wagon; |
2 |
|
|
3 |
|
import java.util.List; |
4 |
|
|
5 |
|
import com.amazonaws.services.s3.AmazonS3Client; |
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
|
|
| 0% |
Uncovered Elements: 32 (32) |
Complexity: 16 |
Complexity Density: 1 |
|
10 |
|
public class PutThreadContext { |
11 |
|
|
12 |
|
int id; |
13 |
|
ThreadHandler handler; |
14 |
|
List<PutFileContext> contexts; |
15 |
|
AmazonS3Client client; |
16 |
|
RequestFactory factory; |
17 |
|
int length; |
18 |
|
int offset; |
19 |
|
ProgressTracker tracker; |
20 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
21 |
0
|
public ThreadHandler getHandler() {... |
22 |
0
|
return handler; |
23 |
|
} |
24 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
25 |
0
|
public void setHandler(ThreadHandler handler) {... |
26 |
0
|
this.handler = handler; |
27 |
|
} |
28 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
0
|
public List<PutFileContext> getContexts() {... |
30 |
0
|
return contexts; |
31 |
|
} |
32 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
33 |
0
|
public void setContexts(List<PutFileContext> contexts) {... |
34 |
0
|
this.contexts = contexts; |
35 |
|
} |
36 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
37 |
0
|
public AmazonS3Client getClient() {... |
38 |
0
|
return client; |
39 |
|
} |
40 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
0
|
public void setClient(AmazonS3Client client) {... |
42 |
0
|
this.client = client; |
43 |
|
} |
44 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
45 |
0
|
public RequestFactory getFactory() {... |
46 |
0
|
return factory; |
47 |
|
} |
48 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
49 |
0
|
public void setFactory(RequestFactory factory) {... |
50 |
0
|
this.factory = factory; |
51 |
|
} |
52 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
53 |
0
|
public int getLength() {... |
54 |
0
|
return length; |
55 |
|
} |
56 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
57 |
0
|
public void setLength(int length) {... |
58 |
0
|
this.length = length; |
59 |
|
} |
60 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
61 |
0
|
public int getOffset() {... |
62 |
0
|
return offset; |
63 |
|
} |
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0
|
public void setOffset(int offset) {... |
66 |
0
|
this.offset = offset; |
67 |
|
} |
68 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
69 |
0
|
public int getId() {... |
70 |
0
|
return id; |
71 |
|
} |
72 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
73 |
0
|
public void setId(int id) {... |
74 |
0
|
this.id = id; |
75 |
|
} |
76 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
77 |
0
|
public ProgressTracker getTracker() {... |
78 |
0
|
return tracker; |
79 |
|
} |
80 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
81 |
0
|
public void setTracker(ProgressTracker tracker) {... |
82 |
0
|
this.tracker = tracker; |
83 |
|
} |
84 |
|
} |