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.s3.old;
17  
18  public class BucketContext {
19  
20  	String delimiter = BucketConstants.DEFAULT_DELIMITER;
21  	Integer maxKeys = BucketConstants.DEFAULT_MAX_KEYS;
22  	String name;
23  
24  	public BucketContext() {
25  		this(null);
26  	}
27  
28  	public BucketContext(String name) {
29  		super();
30  		this.name = name;
31  	}
32  
33  	public String getDelimiter() {
34  		return delimiter;
35  	}
36  
37  	public void setDelimiter(String delimiter) {
38  		this.delimiter = delimiter;
39  	}
40  
41  	public Integer getMaxKeys() {
42  		return maxKeys;
43  	}
44  
45  	public void setMaxKeys(Integer maxKeys) {
46  		this.maxKeys = maxKeys;
47  	}
48  
49  	public String getName() {
50  		return name;
51  	}
52  
53  	public void setName(String name) {
54  		this.name = name;
55  	}
56  }