1 | |
package org.kuali.maven.mojo.s3; |
2 | |
|
3 | |
import java.text.SimpleDateFormat; |
4 | |
|
5 | |
import com.amazonaws.services.s3.AmazonS3Client; |
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | 0 | public class S3BucketContext { |
11 | |
AmazonS3Client client; |
12 | |
String bucket; |
13 | |
String delimiter; |
14 | |
String fileImage; |
15 | |
String directoryImage; |
16 | |
String css; |
17 | |
String defaultObject; |
18 | |
SimpleDateFormat lastModifiedDateFormatter; |
19 | |
String about; |
20 | |
|
21 | |
public AmazonS3Client getClient() { |
22 | 0 | return client; |
23 | |
} |
24 | |
|
25 | |
public void setClient(final AmazonS3Client client) { |
26 | 0 | this.client = client; |
27 | 0 | } |
28 | |
|
29 | |
public String getBucket() { |
30 | 0 | return bucket; |
31 | |
} |
32 | |
|
33 | |
public void setBucket(final String bucket) { |
34 | 0 | this.bucket = bucket; |
35 | 0 | } |
36 | |
|
37 | |
public String getDelimiter() { |
38 | 0 | return delimiter; |
39 | |
} |
40 | |
|
41 | |
public void setDelimiter(final String delimiter) { |
42 | 0 | this.delimiter = delimiter; |
43 | 0 | } |
44 | |
|
45 | |
public String getFileImage() { |
46 | 0 | return fileImage; |
47 | |
} |
48 | |
|
49 | |
public void setFileImage(final String fileImage) { |
50 | 0 | this.fileImage = fileImage; |
51 | 0 | } |
52 | |
|
53 | |
public String getDirectoryImage() { |
54 | 0 | return directoryImage; |
55 | |
} |
56 | |
|
57 | |
public void setDirectoryImage(final String directoryImage) { |
58 | 0 | this.directoryImage = directoryImage; |
59 | 0 | } |
60 | |
|
61 | |
public String getCss() { |
62 | 0 | return css; |
63 | |
} |
64 | |
|
65 | |
public void setCss(final String css) { |
66 | 0 | this.css = css; |
67 | 0 | } |
68 | |
|
69 | |
public String getDefaultObject() { |
70 | 0 | return defaultObject; |
71 | |
} |
72 | |
|
73 | |
public void setDefaultObject(final String defaultObject) { |
74 | 0 | this.defaultObject = defaultObject; |
75 | 0 | } |
76 | |
|
77 | |
public SimpleDateFormat getLastModifiedDateFormatter() { |
78 | 0 | return lastModifiedDateFormatter; |
79 | |
} |
80 | |
|
81 | |
public void setLastModifiedDateFormatter(final SimpleDateFormat dateFormatter) { |
82 | 0 | this.lastModifiedDateFormatter = dateFormatter; |
83 | 0 | } |
84 | |
|
85 | |
public String getAbout() { |
86 | 0 | return about; |
87 | |
} |
88 | |
|
89 | |
public void setAbout(final String about) { |
90 | 0 | this.about = about; |
91 | 0 | } |
92 | |
} |