View Javadoc

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