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  public class HtmlGeneratorContext {
19  
20  	String css = CloudFrontConstants.DEFAULT_CSS;
21  	String dateDisplayFormat = CloudFrontConstants.DATE_DISPLAY_FORMAT;
22  	String dateDisplayTimeZone = CloudFrontConstants.DATE_DISPLAY_TIMEZONE;
23  	String encoding = CloudFrontConstants.ENCODING;
24  	String googleAnalyticsAccount = CloudFrontConstants.GOOGLE_ANALYTICS_ACCOUNT;
25  	String googleAnalyticsDomainName = CloudFrontConstants.GOOGLE_ANALYTICS_DOMAIN_NAME;
26  
27  	public String getCss() {
28  		return css;
29  	}
30  
31  	public void setCss(String css) {
32  		this.css = css;
33  	}
34  
35  	public String getDateDisplayFormat() {
36  		return dateDisplayFormat;
37  	}
38  
39  	public void setDateDisplayFormat(String dateDisplayFormat) {
40  		this.dateDisplayFormat = dateDisplayFormat;
41  	}
42  
43  	public String getDateDisplayTimeZone() {
44  		return dateDisplayTimeZone;
45  	}
46  
47  	public void setDateDisplayTimeZone(String dateDisplayTimeZone) {
48  		this.dateDisplayTimeZone = dateDisplayTimeZone;
49  	}
50  
51  	public String getGoogleAnalyticsAccount() {
52  		return googleAnalyticsAccount;
53  	}
54  
55  	public void setGoogleAnalyticsAccount(String googleAnalyticsAccount) {
56  		this.googleAnalyticsAccount = googleAnalyticsAccount;
57  	}
58  
59  	public String getEncoding() {
60  		return encoding;
61  	}
62  
63  	public void setEncoding(String encoding) {
64  		this.encoding = encoding;
65  	}
66  
67  	public String getGoogleAnalyticsDomainName() {
68  		return googleAnalyticsDomainName;
69  	}
70  
71  	public void setGoogleAnalyticsDomainName(String googleAnalyticsDomainName) {
72  		this.googleAnalyticsDomainName = googleAnalyticsDomainName;
73  	}
74  
75  }