View Javadoc

1   /*
2    * Copyright 2004-2006 the Seasar Foundation and the Others.
3    *
4    * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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, 
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
15   */
16  package org.seasar.tuigwaa.plugin.database;
17  
18  import java.util.Date;
19  
20  public class Counter {
21  
22  	private Long id;
23  	
24  	private Date accessdate;
25  	
26  	private String pageName;
27  	
28  	private Integer accesscount;
29  
30  	public void increment(){
31  		if(accesscount != null){
32  			int count = accesscount.intValue();
33  			count++;
34  			accesscount = new Integer(count);
35  		}else{
36  			accesscount = new Integer(1);
37  		}
38  	}
39  	
40  	public Integer getAccessCount() {
41  		return accesscount;
42  	}
43  	
44  	public void setAccessCount(Integer accesscount) {
45  		this.accesscount = accesscount;
46  	}
47  	
48  	public Date getAccessDate() {
49  		return accessdate;
50  	}
51  	
52  	public void setAccessDate(Date accessdate) {
53  		this.accessdate = accessdate;
54  	}
55  	
56  	public Long getId() {
57  		return id;
58  	}
59  
60  	public void setId(Long id) {
61  		this.id = id;
62  	}
63  
64  	public String getPageName() {
65  		return pageName;
66  	}
67  
68  	public void setPageName(String pageName) {
69  		this.pageName = pageName;
70  	}
71  }