1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 }