01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/sam/tags/sakai_2-4-1/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/misc/BuildInfoBean.java $
03: * $Id: BuildInfoBean.java 9268 2006-05-10 21:27:24Z daisyf@stanford.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2004, 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the"License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.sakaiproject.tool.assessment.ui.bean.misc;
21:
22: /**
23: * Encapsulate build information
24: * formerly in org.navigoproject.ui.web.debug;
25: *
26: * @author <a href="mailto:lance@indiana.edu">Lance Speelmon</a>
27: * @version $Id: BuildInfoBean.java 9268 2006-05-10 21:27:24Z daisyf@stanford.edu $
28: */
29: public class BuildInfoBean {
30: private String buildVersion;
31: private String buildTime;
32: private String buildTag;
33:
34: /**
35: * build information
36: *
37: * @return build information
38: */
39: public String getBuildTag() {
40: return buildTag;
41: }
42:
43: /**
44: * build information
45: *
46: * @return build time
47: */
48: public String getBuildTime() {
49: return buildTime;
50: }
51:
52: /**
53: * build information
54: *
55: * @return version
56: */
57: public String getBuildVersion() {
58: return buildVersion;
59: }
60:
61: /**
62: * build information
63: *
64: * @param string
65: */
66: public void setBuildTag(String string) {
67: buildTag = string;
68: }
69:
70: /**
71: * build information
72: *
73: * @param string
74: */
75: public void setBuildTime(String string) {
76: buildTime = string;
77: }
78:
79: /**
80: * build information
81: *
82: * @param string
83: */
84: public void setBuildVersion(String string) {
85: buildVersion = string;
86: }
87: }
|