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.sql.Timestamp;
19  
20  public class Trackback {
21  
22  	private Long id;
23  	
24  	private String pagename;
25  	
26  	private String url;
27  	
28  	private String title;
29  	
30  	private String excerpt;
31  	
32  	private String blogName;
33  	
34  	private Timestamp modificationDate;
35  	
36  	public String getBlogName() {
37  		return blogName;
38  	}
39  
40  	public void setBlogName(String blog_name) {
41  		this.blogName = blog_name;
42  	}
43  
44  	public String getExcerpt() {
45  		return excerpt;
46  	}
47  
48  	public void setExcerpt(String excerpt) {
49  		this.excerpt = excerpt;
50  	}
51  
52  	public Long getId() {
53  		return id;
54  	}
55  
56  	public void setId(Long id) {
57  		this.id = id;
58  	}
59  
60  	public Timestamp getModificationDate() {
61  		return modificationDate;
62  	}
63  
64  	public void setModificationDate(Timestamp modificationDate) {
65  		this.modificationDate = modificationDate;
66  	}
67  
68  	public String getPagename() {
69  		return pagename;
70  	}
71  
72  	public void setPagename(String pagenam) {
73  		this.pagename = pagenam;
74  	}
75  
76  	public String getTitle() {
77  		return title;
78  	}
79  
80  	public void setTitle(String title) {
81  		this.title = title;
82  	}
83  
84  	public String getUrl() {
85  		return url;
86  	}
87  
88  	public void setUrl(String url) {
89  		this.url = url;
90  	}
91  
92  	
93  }