1 | |
package org.kuali.maven.wagon; |
2 | |
|
3 | |
import java.util.List; |
4 | |
|
5 | |
import com.amazonaws.services.s3.AmazonS3Client; |
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | 0 | public class PutThreadContext { |
11 | |
ThreadHandler handler; |
12 | |
List<PutContext> contexts; |
13 | |
AmazonS3Client client; |
14 | |
RequestFactory factory; |
15 | |
int length; |
16 | |
int offset; |
17 | |
|
18 | |
public ThreadHandler getHandler() { |
19 | 0 | return handler; |
20 | |
} |
21 | |
|
22 | |
public void setHandler(ThreadHandler handler) { |
23 | 0 | this.handler = handler; |
24 | 0 | } |
25 | |
|
26 | |
public List<PutContext> getContexts() { |
27 | 0 | return contexts; |
28 | |
} |
29 | |
|
30 | |
public void setContexts(List<PutContext> contexts) { |
31 | 0 | this.contexts = contexts; |
32 | 0 | } |
33 | |
|
34 | |
public AmazonS3Client getClient() { |
35 | 0 | return client; |
36 | |
} |
37 | |
|
38 | |
public void setClient(AmazonS3Client client) { |
39 | 0 | this.client = client; |
40 | 0 | } |
41 | |
|
42 | |
public RequestFactory getFactory() { |
43 | 0 | return factory; |
44 | |
} |
45 | |
|
46 | |
public void setFactory(RequestFactory factory) { |
47 | 0 | this.factory = factory; |
48 | 0 | } |
49 | |
|
50 | |
public int getLength() { |
51 | 0 | return length; |
52 | |
} |
53 | |
|
54 | |
public void setLength(int length) { |
55 | 0 | this.length = length; |
56 | 0 | } |
57 | |
|
58 | |
public int getOffset() { |
59 | 0 | return offset; |
60 | |
} |
61 | |
|
62 | |
public void setOffset(int offset) { |
63 | 0 | this.offset = offset; |
64 | 0 | } |
65 | |
} |