1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.aws.cloudfront;
17
18 import org.kuali.common.aws.s3.old.BucketContext;
19
20 public class DirectoryListingContext {
21
22 HtmlGeneratorContext generatorContext;
23 BucketContext bucketContext;
24 String about;
25 IndexContext indexContext;
26
27 public DirectoryListingContext() {
28 this(null, null, null, null);
29 }
30
31 public DirectoryListingContext(HtmlGeneratorContext generatorContext, BucketContext bucketContext, String about, IndexContext indexContext) {
32 super();
33 this.generatorContext = generatorContext;
34 this.bucketContext = bucketContext;
35 this.about = about;
36 this.indexContext = indexContext;
37 }
38
39 public HtmlGeneratorContext getGeneratorContext() {
40 return generatorContext;
41 }
42
43 public void setGeneratorContext(HtmlGeneratorContext generatorContext) {
44 this.generatorContext = generatorContext;
45 }
46
47 public BucketContext getBucketContext() {
48 return bucketContext;
49 }
50
51 public void setBucketContext(BucketContext bucketContext) {
52 this.bucketContext = bucketContext;
53 }
54
55 public IndexContext getIndexContext() {
56 return indexContext;
57 }
58
59 public void setIndexContext(IndexContext indexContext) {
60 this.indexContext = indexContext;
61 }
62
63 public String getAbout() {
64 return about;
65 }
66
67 public void setAbout(String about) {
68 this.about = about;
69 }
70
71 }