View Javadoc
1   /**
2    * Copyright 2004-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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  }