| 1 | |
package org.kuali.maven.mojo.s3; |
| 2 | |
|
| 3 | |
import com.amazonaws.services.s3.model.ObjectListing; |
| 4 | |
|
| 5 | 0 | public class S3PrefixContext { |
| 6 | |
boolean isRoot; |
| 7 | |
String defaultObjectKey; |
| 8 | |
ObjectListing objectListing; |
| 9 | |
String prefix; |
| 10 | |
String html; |
| 11 | |
S3BucketContext bucketContext; |
| 12 | |
String browseHtmlKey; |
| 13 | |
|
| 14 | |
public boolean isRoot() { |
| 15 | 0 | return isRoot; |
| 16 | |
} |
| 17 | |
|
| 18 | |
public void setRoot(final boolean isRoot) { |
| 19 | 0 | this.isRoot = isRoot; |
| 20 | 0 | } |
| 21 | |
|
| 22 | |
public String getDefaultObjectKey() { |
| 23 | 0 | return defaultObjectKey; |
| 24 | |
} |
| 25 | |
|
| 26 | |
public void setDefaultObjectKey(final String defaultObjectKey) { |
| 27 | 0 | this.defaultObjectKey = defaultObjectKey; |
| 28 | 0 | } |
| 29 | |
|
| 30 | |
public ObjectListing getObjectListing() { |
| 31 | 0 | return objectListing; |
| 32 | |
} |
| 33 | |
|
| 34 | |
public void setObjectListing(final ObjectListing objectListing) { |
| 35 | 0 | this.objectListing = objectListing; |
| 36 | 0 | } |
| 37 | |
|
| 38 | |
public String getPrefix() { |
| 39 | 0 | return prefix; |
| 40 | |
} |
| 41 | |
|
| 42 | |
public void setPrefix(final String prefix) { |
| 43 | 0 | this.prefix = prefix; |
| 44 | 0 | } |
| 45 | |
|
| 46 | |
public String getHtml() { |
| 47 | 0 | return html; |
| 48 | |
} |
| 49 | |
|
| 50 | |
public void setHtml(final String html) { |
| 51 | 0 | this.html = html; |
| 52 | 0 | } |
| 53 | |
|
| 54 | |
public S3BucketContext getBucketContext() { |
| 55 | 0 | return bucketContext; |
| 56 | |
} |
| 57 | |
|
| 58 | |
public void setBucketContext(final S3BucketContext context) { |
| 59 | 0 | this.bucketContext = context; |
| 60 | 0 | } |
| 61 | |
|
| 62 | |
public String getBrowseHtmlKey() { |
| 63 | 0 | return browseHtmlKey; |
| 64 | |
} |
| 65 | |
|
| 66 | |
public void setBrowseHtmlKey(final String browseHtmlKey) { |
| 67 | 0 | this.browseHtmlKey = browseHtmlKey; |
| 68 | 0 | } |
| 69 | |
} |